preserve previous search activity better for manage groups and manage locales

Chris Pollett [2016-09-25 04:Sep:th]
preserve previous search activity better for manage groups and manage locales
Filename
src/controllers/components/SocialComponent.php
src/controllers/components/SystemComponent.php
src/locale/ar/configure.ini
src/locale/bn/configure.ini
src/locale/de/configure.ini
src/locale/en_US/configure.ini
src/locale/es/configure.ini
src/locale/fa/configure.ini
src/locale/fr_FR/configure.ini
src/locale/he/configure.ini
src/locale/hi/configure.ini
src/locale/in_ID/configure.ini
src/locale/it/configure.ini
src/locale/ja/configure.ini
src/locale/kn/configure.ini
src/locale/ko/configure.ini
src/locale/nl/configure.ini
src/locale/pl/configure.ini
src/locale/pt/configure.ini
src/locale/ru/configure.ini
src/locale/te/configure.ini
src/locale/th/configure.ini
src/locale/tr/configure.ini
src/locale/vi_VN/configure.ini
src/locale/zh_CN/configure.ini
src/views/elements/EditlocalesElement.php
src/views/elements/ManagegroupsElement.php
src/views/elements/ManagelocalesElement.php
src/views/elements/ManageusersElement.php
src/views/helpers/PagingtableHelper.php
diff --git a/src/controllers/components/SocialComponent.php b/src/controllers/components/SocialComponent.php
index ee0c00ad2..6b50b30b5 100644
--- a/src/controllers/components/SocialComponent.php
+++ b/src/controllers/components/SocialComponent.php
@@ -200,12 +200,14 @@ class SocialComponent extends Component implements CrawlConstants
                         return $parent->redirectWithMessage(
                             tl('accountaccess_component_user_activated'),
                             ["arg", "visible_users", 'start_row',
-                            'end_row', 'num_show', 'user_filter','group_limit']);
+                            'end_row', 'num_show', 'user_filter','group_limit',
+                            'context']);
                     } else {
                         return $parent->redirectWithMessage(
                             tl('accountaccess_component_no_user_activated'),
                             ["arg", "visible_users", 'start_row',
-                            'end_row', 'num_show', 'user_filter','group_limit']);
+                            'end_row', 'num_show', 'user_filter','group_limit',
+                            'context']);
                     }
                     break;
                 case "addgroup":
@@ -223,7 +225,8 @@ class SocialComponent extends Component implements CrawlConstants
                             }
                             return $parent->redirectWithMessage(
                                 tl('social_component_joined'),
-                                ['browse', 'arg']);
+                                ['browse', 'arg', 'start_row',
+                                'end_row', 'num_show']);
                         } else {
                             return $parent->redirectWithMessage(
                                 tl('social_component_groupname_unavailable'));
@@ -240,6 +243,10 @@ class SocialComponent extends Component implements CrawlConstants
                     break;
                 case "banuser":
                     $_REQUEST['arg'] = "editgroup";
+                    if (!empty($_REQUEST['context']) &&
+                        $_REQUEST['context']=='search') {
+                        $data['context'] = 'search';
+                    }
                     $user_id = (isset($_REQUEST['user_id'])) ?
                         $parent->clean($_REQUEST['user_id'], 'int'): 0;
                     if ($user_id && $is_owner &&
@@ -251,12 +258,14 @@ class SocialComponent extends Component implements CrawlConstants
                         return $parent->redirectWithMessage(
                             tl('social_component_user_banned'),
                             ["arg", "visible_users",'start_row',
-                            'end_row', 'num_show', 'user_filter','group_limit']);
+                            'end_row', 'num_show', 'user_filter','group_limit',
+                            'context']);
                     } else {
                         return $parent->redirectWithMessage(
                             tl('social_component_no_user_banned'),
                             ["arg", "visible_users", 'start_row',
-                            'end_row', 'num_show', 'user_filter','group_limit']);
+                            'end_row', 'num_show', 'user_filter','group_limit',
+                            'context']);
                     }
                     break;
                 case "changeowner":
@@ -267,22 +276,27 @@ class SocialComponent extends Component implements CrawlConstants
                             'string'), 0, C\NAME_LEN);
                         $new_owner = $parent->model("user")->getUser(
                             $new_owner_name);
+                        if (!empty($_REQUEST['context'])) {
+                            $_REQUEST['arg'] = 'search';
+                        }
                         if (isset($new_owner['USER_ID']) ) {
                             if ($group_model->checkUserGroup(
                                 $new_owner['USER_ID'], $group_id)) {
                                 $group_model->changeOwnerGroup(
                                     $new_owner['USER_ID'], $group_id);
-                                $_REQUEST['arg'] = "none";
+                                if (empty($_REQUEST['context'])) {
+                                    $_REQUEST['arg'] = "none";
+                                }
                                 unset($_REQUEST['group_id']);
                                 return $parent->redirectWithMessage(
                                     tl('social_component_owner_changed'),
-                                    ["arg", 'start_row', 'end_row',
+                                    ['arg', 'start_row', 'end_row',
                                     'num_show', 'browse']);
                             } else {
                                 return $parent->redirectWithMessage(
                                     tl('social_component_not_in_group'),
-                                    ["arg", 'start_row', 'end_row',
-                                    'num_show']);
+                                    ['arg', 'start_row', 'end_row',
+                                    'num_show', 'browse']);
                             }
                         } else {
                             return $parent->redirectWithMessage(
@@ -331,7 +345,8 @@ class SocialComponent extends Component implements CrawlConstants
                     }
                     break;
                 case "deletegroup":
-                    $_REQUEST['arg'] = "none";
+                    $_REQUEST['arg'] = empty($_REQUEST['context']) ?
+                        'none': 'search';
                     $data['CURRENT_GROUP'] = $default_group;
                     if ( $group_id <= 0) {
                         return $parent->redirectWithMessage(
@@ -351,6 +366,10 @@ class SocialComponent extends Component implements CrawlConstants
                     break;
                 case "deleteuser":
                     $_REQUEST['arg'] = "editgroup";
+                    if (!empty($_REQUEST['context']) &&
+                        $_REQUEST['context']=='search') {
+                        $data['context'] = 'search';
+                    }
                     $user_id = (isset($_REQUEST['user_id'])) ?
                         $parent->clean($_REQUEST['user_id'], 'int'): 0;
                     if ($is_owner && $group_model->deletableUser(
@@ -359,18 +378,22 @@ class SocialComponent extends Component implements CrawlConstants
                             $user_id, $group_id);
                         return $parent->redirectWithMessage(
                             tl('social_component_user_deleted'),
-                            ["arg", "visible_users", 'start_row',
+                            ["arg", "visible_users", 'start_row', 'context',
                             'end_row', 'num_show', 'user_filter','group_limit']);
                     } else {
                         return $parent->redirectWithMessage(
                             tl('social_component_no_delete_user_group'),
-                            ["arg", "visible_users", 'start_row',
+                            ["arg", "visible_users", 'start_row', 'context',
                             'end_row', 'num_show', 'user_filter','group_limit']);
                     }
                     $this->getGroupUsersData($data, $group_id);
                     break;
                 case "editgroup":
                     if (!$group_id || !$is_owner) { break;}
+                    if (!empty($_REQUEST['context']) &&
+                        $_REQUEST['context']=='search') {
+                        $data['context'] = 'search';
+                    }
                     $data['FORM_TYPE'] = "editgroup";
                     $update_fields = [
                         ['register', 'REGISTER_TYPE','REGISTER_CODES'],
@@ -397,6 +420,10 @@ class SocialComponent extends Component implements CrawlConstants
                     break;
                 case "inviteusers":
                     $data['FORM_TYPE'] = "inviteusers";
+                    if (!empty($_REQUEST['context']) &&
+                        $_REQUEST['context']=='search') {
+                        $data['context'] = 'search';
+                    }
                     if (isset($_REQUEST['users_names']) && $is_owner) {
                         $users_string = $parent->clean($_REQUEST['users_names'],
                             "string");
@@ -420,12 +447,14 @@ class SocialComponent extends Component implements CrawlConstants
                             return $parent->redirectWithMessage(
                                 tl('social_component_users_invited'),
                                 ["arg", "visible_users", 'start_row',
-                                'end_row', 'num_show', 'user_filter']);
+                                'end_row', 'num_show', 'user_filter',
+                                'context']);
                         } else {
                             return $parent->redirectWithMessage(
                                 tl('social_component_no_users_invited'),
                                 ["arg", "visible_users", 'start_row',
-                                'end_row', 'num_show', 'user_filter']);
+                                'end_row', 'num_show', 'user_filter',
+                                'context']);
                         }
                     }
                     break;
@@ -450,30 +479,55 @@ class SocialComponent extends Component implements CrawlConstants
                 case "memberaccess":
                     $update_fields = [
                         ['memberaccess', 'MEMBER_ACCESS', 'ACCESS_CODES']];
-                    $this->updateGroup($data, $group, $update_fields);
-                    $data['CURRENT_GROUP'] = $default_group;
+                    $message =
+                        $this->updateGroup($data, $group, $update_fields);
+                    $_REQUEST['arg'] = empty($_REQUEST['context']) ?
+                        'none': 'search';
+                    unset($_REQUEST['group_id']);
+                    return $parent->redirectWithMessage($message,
+                        ['arg', 'browse', 'start_row', 'end_row',
+                        'num_show', 'visible_users', 'user_filter']);
                     break;
                 case "postlifetime":
                     $update_fields = [
                         ['postlifetime', 'POST_LIFETIME', 'POST_LIFETIMES']];
-                    $this->updateGroup($data, $group, $update_fields);
-                    $data['CURRENT_GROUP'] = $default_group;
-                    break;
+                    $message =
+                        $this->updateGroup($data, $group, $update_fields);
+                    $_REQUEST['arg'] = empty($_REQUEST['context']) ?
+                        'none': 'search';
+                    unset($_REQUEST['group_id']);
+                    return $parent->redirectWithMessage($message,
+                        ['arg', 'browse', 'start_row', 'end_row',
+                        'num_show', 'visible_users', 'user_filter']);
                 case "voteaccess":
                     $update_fields = [
                         ['voteaccess', 'VOTE_ACCESS', 'VOTING_CODES']];
-                    $this->updateGroup($data, $group, $update_fields);
-                    $data['CURRENT_GROUP'] = $default_group;
-                    break;
+                    $message =
+                        $this->updateGroup($data, $group, $update_fields);
+                    $_REQUEST['arg'] = empty($_REQUEST['context']) ?
+                        'none': 'search';
+                    unset($_REQUEST['group_id']);
+                    return $parent->redirectWithMessage($message,
+                        ['arg', 'browse', 'start_row', 'end_row',
+                        'num_show', 'visible_users', 'user_filter']);
                 case "registertype":
                     $update_fields = [
                         ['registertype', 'REGISTER_TYPE',
                             'REGISTER_CODES']];
-                    $this->updateGroup($data, $group, $update_fields);
-                    $data['CURRENT_GROUP'] = $default_group;
-                    break;
+                    $message =
+                        $this->updateGroup($data, $group, $update_fields);
+                    $_REQUEST['arg'] = empty($_REQUEST['context']) ?
+                        'none': 'search';
+                    unset($_REQUEST['group_id']);
+                    return $parent->redirectWithMessage($message,
+                        ['arg', 'browse', 'start_row', 'end_row',
+                        'num_show', 'visible_users', 'user_filter']);
                 case "reinstateuser":
                     $_REQUEST['arg'] = "editgroup";
+                    if (!empty($_REQUEST['context']) &&
+                        $_REQUEST['context']=='search') {
+                        $data['context'] = 'search';
+                    }
                     $user_id = (isset($_REQUEST['user_id'])) ?
                         $parent->clean($_REQUEST['user_id'], 'int'): 0;
                     if ($user_id && $group_id && $is_owner &&
@@ -485,12 +539,14 @@ class SocialComponent extends Component implements CrawlConstants
                         return $parent->redirectWithMessage(
                             tl('social_component_user_reinstated'),
                             ["arg", "visible_users", 'start_row',
-                            'end_row', 'num_show', 'user_filter','group_limit']);
+                            'end_row', 'num_show', 'user_filter','group_limit',
+                            'context']);
                     } else {
                         return $parent->redirectWithMessage(
                             tl('social_component_no_user_reinstated'),
                             ["arg", "visible_users", 'start_row',
-                            'end_row', 'num_show', 'user_filter','group_limit']);
+                            'end_row', 'num_show', 'user_filter','group_limit',
+                            'context']);
                     }
                     break;
                 case "search":
@@ -539,7 +595,11 @@ class SocialComponent extends Component implements CrawlConstants
                     $this->getGroupUsersData($data, $group_id);
                     break;
                 case "unsubscribe":
-                    $_REQUEST['arg'] = "none";
+                    if (!empty($_REQUEST['context'])) {
+                        $_REQUEST['arg'] = 'search';
+                    } else {
+                        $_REQUEST['arg'] = 'none';
+                    }
                     $user_id = (isset($_REQUEST['user_id'])) ?
                         $parent->clean($_REQUEST['user_id'], 'int'): 0;
                     if ($user_id && $group_id &&
@@ -870,10 +930,9 @@ class SocialComponent extends Component implements CrawlConstants
         $changed = false;
         if (!isset($group["OWNER_ID"]) ||
             $group["OWNER_ID"] != $_SESSION['USER_ID']) {
-            $data['SCRIPT'] .= "doMessage('<h1 class=\"red\" >".
-                tl('social_component_no_permission')."</h1>');";
-            return;
+            return tl('social_component_no_permission');
         }
+        $return_value = "";
         foreach ($update_fields as $row) {
             list($request_field, $group_field, $check_field) = $row;
             if (isset($_REQUEST[$request_field]) &&
@@ -883,27 +942,26 @@ class SocialComponent extends Component implements CrawlConstants
                     $group[$group_field] =
                         $_REQUEST[$request_field];
                     if (!isset($_REQUEST['change_filter'])) {
-                        $data['SCRIPT'] .= "doMessage('<h1 class=\"red\" >".
-                            tl('social_component_group_updated').
-                            "</h1>');";
+                        $return_value =
+                            tl('social_component_group_updated');
                     }
                     $changed = true;
                 }
             } else if (isset($_REQUEST[$request_field]) &&
                 $_REQUEST[$request_field] != "") {
-                $data['SCRIPT'] .= "doMessage('<h1 class=\"red\" >".
-                    tl('social_component_unknown_access')."</h1>');";
+                $return_value =
+                    tl('social_component_unknown_access');
             }
         }
         if ($changed) {
             if (!isset($_REQUEST['change_filter'])) {
                 $parent->model("group")->updateGroup($group);
             } else {
-                $data['SCRIPT'] .= "doMessage('<h1 class=\"red\" >".
-                    tl('social_component_group_filter_users').
-                    "</h1>');";
+                $return_value =
+                    tl('social_component_group_filter_users');
             }
         }
+        return $return_value;
     }
     /**
      * Used to support requests related to posting, editing, modifying,
diff --git a/src/controllers/components/SystemComponent.php b/src/controllers/components/SystemComponent.php
index 52ae8fcf8..ec5a780c9 100755
--- a/src/controllers/components/SystemComponent.php
+++ b/src/controllers/components/SystemComponent.php
@@ -321,8 +321,9 @@ class SystemComponent extends Component
                 'selectlocale', 'active'];
             $edit_preserve_fields = ["selectlocale", "arg",
                 "start_row", "end_row", "num_show", "previous_activity",
-                "filter", "show"];
-            $preserve_fields = ["start_row", "end_row", "num_show"];
+                "filter", "show", "context"];
+            $preserve_fields = ["start_row", "end_row", "num_show",
+                 "context"];
             $incomplete = false;
             $required = ['localename', 'localetag'];
             foreach ($clean_fields as $field) {
@@ -376,6 +377,10 @@ class SystemComponent extends Component
                             tl('system_component_localename_doesnt_exists'),
                             $preserve_fields);
                     }
+                    if (!empty($_REQUEST['context']) &&
+                        $_REQUEST['context']=='search') {
+                        $data['context'] = 'search';
+                    }
                     $data['FORM_TYPE'] = "editlocale";
                     $info = $locale_model->getLocaleInfo($selectlocale);
                     $change = false;
@@ -390,7 +395,7 @@ class SystemComponent extends Component
                     if (isset($_REQUEST['update']) &&
                         $active != $info['ACTIVE']) {
                         $info['ACTIVE'] =  $active;
-                        $change=true;
+                        $change = true;
                     }
                     $data['CURRENT_LOCALE']['active'] = $info['ACTIVE'];
                     $data['CURRENT_LOCALE']['localename'] =
@@ -408,6 +413,10 @@ class SystemComponent extends Component
                     break;
                 case "editstrings":
                     if (!isset($selectlocale)) { break; }
+                    if (!empty($_REQUEST['context']) &&
+                        $_REQUEST['context']=='search') {
+                        $data['context'] = 'search';
+                    }
                     $paging = false;
                     $data["leftorright"] =
                         (L\getLocaleDirection() == 'ltr') ? "right": "left";
diff --git a/src/locale/ar/configure.ini b/src/locale/ar/configure.ini
index 3d996ec39..90e5ef2f3 100755
--- a/src/locale/ar/configure.ini
+++ b/src/locale/ar/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = "إجراءات"
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = "حدد تتبع الارتباطات"
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = "تتبع الارتباطات الافتراضية"
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = "حدد تتبع الارتباطات"
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = "تتبع الارتباطات الافتراضية"
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = "الزحف ميكس إنشاؤها!"
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = "الزحف ميكس حذف!"
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = "ميكسحذف لاتوجد لا!"
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = "إضافة عمليات تتبع الارتباطات"
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = "عدد من النتائج"
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = "الوزن"
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = "إجراءات"
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = "إضافة استعلام"
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = "الزحف ميكس التغييرات المحفوظة!"
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = "غير قادر على تنفيذ الإج
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "وأضاف لغة!"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "الإعدادات المحلية غير موجود!"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "حذف الإعدادات المحلية"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "الإعدادات المحلية غير موجود!"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "سلاسل لغة تحديث!"
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = "مشكلة في تحديث قاعدة البيانات!"
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "تحديث الشخصية!"
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "كان هناك ملفتعريف تحديث المشكلة!"
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "تحديث الشخصية!"
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "كان هناك ملفتعريف تحديث المشكلة!"
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "كان هناك ملفتعريف تحديث المشكلة!"
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = "يجب استخدام مسار مطلق لدليل العمل"
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "تعيين دليل العمل! قد تحتاج إلى إعادة تسجيل الدخول! "
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "الرجاء تسمية الروبوت الخاص بك"
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "يعمل الدليل والشخصية التي تم إنشاؤها!"
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "تعذر التحديث config.php الملف!"
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "غير قادر على إنشاء الشخصية!"
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = "دليل العمل هو صالح! لا يمكن إنشاء الشخصية! "
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = "دليل العمل هو صالح! لا يمكن إنشاء الشخصية! "
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "تحديث الشخصية!"
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "كان هناك ملفتعريف تحديث المشكلة!"
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = "يرجى وصف الروبوت الخاص بك"
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = "بي إتش بي 4لإصدار 5.3 أو أحدث"
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = "configs/config.php ليس ملقم ويب للكتابة."
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = "دليل العمل يجب أن يكون قابل للكتابة من قبل ملقم ويب."
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = "pnp.ini ملف post_max_size متغيرينبغي أن يكون مالا يقل عن 32 م"
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = "مطلوب ما يلي العناصر في عداد المفقودين:  %s"
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = "كانت العناصر الاختيارية التالية مفقودة:  %s"
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = "تمرير الاختيار."
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = "استخدام configs/local_config.php حتى تغيير دليل العمل أعلاه قد لا تعمل."
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = "مرة أخرى"
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = "تحرير الإعدادات المحلية:  %s"
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = "قائمة الإعدادات المحلية"
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = "اسم الإعدادات المحلية"
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = "العلامة لغة"
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = "وضعالكتابة"
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = "ترجمت في المائة"
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = "إضافة الإعدادات المحلية"
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = "اسم الإعدادات المحلية:"
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = "العلامة لغة:"
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = "وضع كتابة:"
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = "تقديم"
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = "اسم الإعدادات المحلية"
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = "العلامة لغة"
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = "وضعالكتابة"
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "القادم"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/bn/configure.ini b/src/locale/bn/configure.ini
index 57c0587dd..2364f9f17 100755
--- a/src/locale/bn/configure.ini
+++ b/src/locale/bn/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = ""
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = ""
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = ""
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/de/configure.ini b/src/locale/de/configure.ini
index e53984cb0..59c75c056 100755
--- a/src/locale/de/configure.ini
+++ b/src/locale/de/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = ""
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = ""
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = ""
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/en_US/configure.ini b/src/locale/en_US/configure.ini
index 35a851efb..2edac7c83 100644
--- a/src/locale/en_US/configure.ini
+++ b/src/locale/en_US/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = "One Month"
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = "User activated!"
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = "User was not activated!"
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = "Group Joined!"
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = "Group name unavailable!"
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = "Group name available!"
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = "User banned!"
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = "User was not banned!"
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = "Owner Changed!"
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = "User not in group!"
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = "Username does not exist!"
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = "Group Name Exists"
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = "Group Name Added"
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = "Group Name does not exists"
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = "Group Deleted"
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = "Cannot Delete Group"
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = "User Deleted"
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = "Cannot Delete User from Group."
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = "Users Invited!"
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = "No Users Invited!!"
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = "Group Joined!"
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = "Could not Unsubscribe!"
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = "User reinstated!"
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = "User was not reinstated!"
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = "Request Join"
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = "Invited"
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = "Banned"
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = "Successfully Unsubscribed!"
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = "Could not Unsubscribe!"
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = "Originally Posted By: %s"
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = "Original Date: %s"
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = "Group joined!"
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = "Join Group Request Made!"
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = "Yioop Group %s Activation Request"
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = "The user %s has requested to join group %s."
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = "Best regards,"
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = "Insufficient Access!"
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = "Group updated!"
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = "Attempt to change access to unknown value!"
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = "Filtering Users!"
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = "Error in comment data!"
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = "Cannot post blank comment!"
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = "%s joined %s!"
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = "On %s, you joined the group  %s."
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = "Upload Error!"
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = "New Post to Thread: %s"
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = "We thought you would be interested in a new post to the thread:"
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = "Best regards,"
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = "Dear %s,"
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = "Comment Added!"
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = "Cannot add selected group!"
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = "Error Deleting Item"
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = "Item Deleted!"
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = "No Item Deleted!"
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = "Voting Error!"
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = "No vote access to that post! "
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = "Already Voted!"
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = "Vote Recorded!"
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = "Error in comment data!"
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = "Need both title and description!"
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = "Upload Error!"
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = "New Thread in Group %s"
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = "As the owner of %s we thought you would like to know of the following thread recently created in your group:"
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = "Best regards,"
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = "Dear %s,"
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = "Thread Created!"
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = "Error in comment data!"
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = "Need both title and description!"
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = "Post was just edited elsewhere (another tab?)"
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = "Cannot Update Post!"
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = "Cannot Update Post!"
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = "Upload Error!"
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = "Post Updated!"
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = "Voting Error!"
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = "No vote access to that post! "
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = "Already Voted!"
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = "Vote Recorded!"
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = "%s joined %s!"
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = "On %s, you joined the group  %s."
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = "Not a member or can&#039;t read that group. Switching to public group!"
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = "No Posts Yet"
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = "Please log in to an account with access to this group!"
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = "Please log in to an account with access to this group!"
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = "Back"
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = "Historical Version of %s from %s."
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = "Back"
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = "%s line differences between %s and %s."
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = "Revert to %s."
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = "Page Reverted!"
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = "Error Reverting Page!"
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = "Main"
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = "Missing Fields!"
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = "Resource Saved!"
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = "Resource Not Saved!"
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = "%s Wiki Page Created!"
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = "Discuss the page in this thread!"
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = "Page Saved!"
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = "Resource Deleted!"
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = "Resource Not Deleted! "
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = "Resource Extracted!"
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = "Resource Not Extracted!"
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = "Clip Folder Set!"
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = "Clip Folder Copy Failed!"
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = "Clip Folder Copy Succeeded!"
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = "Resource Renamed!"
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = "Resource not Renamed!"
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = "Resource Created!"
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = "Resource Not Created!"
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = "Need to Save Page Before Using Resources!"
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = "%s Wiki Page Created!"
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = "Discuss the page in this thread!"
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = "Resource Uploaded!"
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = "Upload Error!"
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = "Doc Sections"
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = "Doc Sections"
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = "Standard"
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = "Page Alias"
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = "Media List"
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = "Presentation"
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = "Solid"
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = "Dashed"
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = "None"
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = "Actions"
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = "New Folder"
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = "New File"
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = "Search"
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = "Small"
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = "Medium"
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = "Large"
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = "Size"
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = "Header row:"
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = "Example"
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = "Table Title"
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = "Submit"
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = "Cancel"
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = "Bold text"
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = "Italic text"
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = "Underlined text"
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = "Striked text"
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = "Heading"
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = "Level 1 Heading"
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = "Level 2 Heading"
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = "Level 3 Heading"
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = "Level 4 Heading"
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = "Unordered list item"
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = "Ordered list item"
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = "Insert non-formatted text here"
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = "Add Search Bar Form"
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = "Size"
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = "Add Wiki Table"
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = "Column Count:"
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = "Row Count:"
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = "Add Hyperlink"
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = "Text:"
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = "URL:"
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = "Search Placeholder Text"
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = "This text is centered."
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = "This text is right-aligned."
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = "This text is left-aligned."
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = "Item"
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = "Definition"
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = "Title"
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = "Slide Item"
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = "Resource Description for "
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = "Select Crawl"
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = "Default Crawl"
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = "Select Crawl"
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = "Default Crawl"
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = "Crawl Mix Created!"
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = "Mix Name in Use or Invalid!"
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = "Invalid Timestamp!"
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = "Crawl Mix Deleted!"
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = "Mix to Delete Does not Exist!"
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = "Mix Successfully Imported!"
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = "Setting Crawl To Use as Index"
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = "Error in comment data!"
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = "Shared Mix Has An Invalid Timestamp"
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = "Try out this crawl mix!"
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = "%s is sharing the crawl mix %s!"
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = "Thread Created!"
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = "Invalid Timestamp!"
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = "Not Mix Owner!"
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = "Add Crawls"
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = "Results Shown"
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = "Remove"
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = "Weight"
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = "Name"
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = "Keywords"
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = "Actions"
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = "Add Query"
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = "Delete"
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = "Too Many Search Result Fragments!"
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = "Crawl Mix Changes Saved!"
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = "Unable to Perform Action!"
 ; SystemComponent.php line: 309
 system_component_select_mode = "Select Mode"
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = "Field values missing or invalid!"
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "Locale Added!"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "Locale Does Not Exist!"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "Locale Deleted"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "Locale Does Not Exist!"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = "Locale Information Updated!"
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "Locale Strings Updated!"
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = "All Strings"
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = "Missing Strings"
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = "Problem Updating Database!"
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "Profile Updated!"
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "There was a Problem Updating Profile!"
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = "Disable Registration"
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = "No Activation"
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = "Email Activation"
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = "Admin Activation"
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = "No Advertisements"
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = "Keyword Advertisements"
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = "External Ad Server"
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = "Text Captcha"
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = "Hash Captcha"
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = "Image Captcha"
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = "No User Password Recovery Link"
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = "Email Link Password Recovery"
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = "Email Link and Check Questions Recovery"
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = "Normal Authentication"
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = "ZKP Authentication"
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = "Normal Authentication"
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = "Settings Updated!"
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = "No Settings Were Changed!"
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = "No Resource Folder!"
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = "Invalid File Type!"
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = "File Too Big!"
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "Profile Updated!"
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "There was a Problem Updating Profile!"
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = "Reset Completed"
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "There was a Problem Updating Profile!"
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = "Must use an Absolute path for Work Directory"
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = "Work Directory cannot be contained in Yioop folder!"
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "Work Directory Set! You may need to re-login!"
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "Please Name Your robot"
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "Working Directory and Profile Created!"
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "Unable to Update config.php File!"
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "Unable to Create Profile!"
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = "Work Directory is Invalid! Cannot Create Profile!"
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = "Work Directory is Invalid! Cannot Create Profile!"
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "Profile Updated!"
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "There was a Problem Updating Profile!"
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = "Please Describe Your Robot"
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = "PHP Version 5.4 or Newer"
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = "configs/config.php not web server writable."
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = "Work directory needs to be writable by web server. "
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = "php.ini file variable post_max_size should be at least 2M"
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = "The following required items were missing:"
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = "The following optional items were missing:"
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = "Check Passed."
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = "Using configs/LocalConfig.php so changing work directory above may not work."
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = "Finalize"
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = "No Documents"
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = "Back"
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = "Edit Locale: %s"
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = "Show:"
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = "Filter:"
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = "Go"
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = "No Matching Strings Left To Translate!"
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = "Save"
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = "Post Lifetime"
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = "Actions"
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = "%s users"
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = "%s users"
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = "Statistics"
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = "Wiki"
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = "Join"
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = "Edit"
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = "Edit"
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = "Delete"
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = "Join"
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = "Join"
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = "Decline"
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = "Unsubscribe"
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = "Are you sure you want to delete?"
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = "Delete"
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = "Create/Join Group"
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = "Edit Group"
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = "Create Group"
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = "Create/Join Group"
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = "Name"
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = "Browse"
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = "Register"
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = "Access"
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = "Voting"
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = "Post Lifetime"
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = "Feed"
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = "Import Discussions"
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = "Members"
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = "%s users"
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = "Owner"
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = "Delete"
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = "Activate"
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = "Ban"
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = "Reinstate"
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = "Delete"
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = "Filter:"
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = "Invite More Users"
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = "Save"
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = "Edit Group"
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = "Invite Users to Group"
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = "Name"
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = "Usernames (space/comma delimited)"
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = "Invite More Users"
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = "Create/Join Group"
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = "Transfer Group Owner"
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = "Name"
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = "New Owner"
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = "Change Owner"
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = "Create/Join Group"
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = "%s Group Statistics"
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = "Filter:"
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = "Go"
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = "Group Views"
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = "Thread Views"
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = "Wiki Views"
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = "Last Hour"
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = "Last Day"
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = "Last Month"
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = "Last Year"
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = "All Time"
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = "No Activity"
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = "No Activity"
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = "Discover Groups"
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = "Search Subscribed Groups"
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = "Create/Join Group"
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = "Name"
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = "Owner"
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = "Register"
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = "Access"
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = "Post Lifetime"
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = "Locale List"
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = "Name"
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = "Tag"
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = "Mode"
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = "Enabled"
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = "Percent"
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = "Actions"
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = "true"
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = "false"
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = "Edit"
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = "Are you sure you want to delete?"
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = "Delete"
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = "Add Locale Form"
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = "Edit Locale"
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = "Add Locale"
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = "Locale Name:"
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = "Locale Tag:"
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = "Writing Mode:"
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = "Locale Enabled:"
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = "Submit"
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = "Search Locales"
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = "Add Locale Form"
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = "Name"
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = "Tag"
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = "Mode"
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = "Enabled"
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = "true"
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = "false"
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "Next"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = "Search"
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = "Show"
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = "Row %s to %s of %s"
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = "Row %s to %s of %s"
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = "Show"
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = "Search"
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/es/configure.ini b/src/locale/es/configure.ini
index 6be2c8c13..980da1fdd 100755
--- a/src/locale/es/configure.ini
+++ b/src/locale/es/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = "Acciones"
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = "Seleccionar Rastreo"
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = "Seleccionar Rastreo"
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = "Rastreo Mix creado!"
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = "Rastreo Mix eliminado!"
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = "Mix para eliminar (borrar) no existe!"
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = "A&ntilde;adir Rastreos"
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = "N&uacute;mero de Resultados"
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = "Tama&ntilde;o"
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = "Acciones"
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = "Agregar consulta"
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = "Guardados los Cambios del Rastreo Mix!"
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = "No se Puede Realizar la Acci&oacute;n!"
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "Configuraci&oacute;n Regional Agregada!"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "Configuraci&oacute;n Regional No Existe"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "Configuraci&oacute;n Regional Eliminada"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "Configuraci&oacute;n Regional No Existe"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "Cadenas de Configuraci&oacute;n Regional Actualizada!"
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = "Problema al actualizar la base de datos!"
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "Perfil actualizado!"
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "Hubo un problema al actualizar el perfil!"
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "Perfil actualizado!"
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "Hubo un problema al actualizar el perfil!"
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "Hubo un problema al actualizar el perfil!"
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = "Debe utilizar una ruta absoluta para el directorio de trabajo"
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "El trabajo conjunto de Directorio! Puede que tenga que volver a entrar!"
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "Por favor, Nombre tu Robot"
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "Directorio de Trabajo y Perfil creados!"
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "No se puede actualizar el archivo config.php!"
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "No se puede crear el perfil!"
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = "Directorio de trabajo es inv&aacute;lido! No se puede crear el perfil!"
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = "Directorio de trabajo es inv&aacute;lido! No se puede crear el perfil!"
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "Perfil actualizado!"
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "Hubo un problema al actualizar el perfil!"
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = "Por favor describa su robot"
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = "PHP Version 5.4 o la M&aacute;s Reciente"
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = "configs/config.php el servidor web no es escribible."
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = "Directorio de trabajo tiene que ser escribible por el servidor web"
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = "La variable post_max_size del archivo php.ini deber�a ser de al menos 32M"
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = "Los siguientes elementos necesarios (requeridos), no estaban: %s"
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = "Los siguientes elementos opcionales, no estaban: %s"
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = "Entrada Aprobada"
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = ""
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/fa/configure.ini b/src/locale/fa/configure.ini
index 730641f4b..689d3a580 100755
--- a/src/locale/fa/configure.ini
+++ b/src/locale/fa/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = "فرمان&zwnj;ها"
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = "یک خزش انتخاب کنید"
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = "خزش پیش&zwnj;فرض"
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = "یک خزش انتخاب کنید"
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = "خزش پیش&zwnj;فرض"
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = "ترکیب خزش ساخته شد!"
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = "ترکیب خزش حذف شد!"
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = "ترکیبی که می&zwnj;خواهید حذف کنید وجود ندارد!"
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = "خزش اضافه کن"
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = "تعداد نتایج"
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = "وزن"
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = "فرمان&zwnj;ها"
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = "پُرسمان اضافه کن"
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = "تغییرات ترکیب خزش ذخیره شد!"
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = "نمی&zwnj;توان این فرمان ر
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "زبان اضافه شد!"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "این زبان وجود ندارد!"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "زبان حذف شد"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "این زبان وجود ندارد!"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "رشته&zwnj;های زبان به روز شد!"
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = "در به روز رسانی پایگاه داده مشکلی پیش آمده است! "
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "پروفایل به روز شد!"
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "در به روز رسانی پروفایل مشکلی پیش آمده است!"
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "پروفایل به روز شد!"
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "در به روز رسانی پروفایل مشکلی پیش آمده است!"
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "در به روز رسانی پروفایل مشکلی پیش آمده است!"
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = "باید از مسیر مطلق برای پوشهٔ کار استفاده کرد"
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = "پوشهٔ کار نمی&zwnj;تواند در پوشهٔ Yioop باشد."
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "پوشهٔ کار تنظیم شد! احتمالن لازم است دوباره وارد شوید.!"
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "لطفن برای رباتتان نامی بگذارید"
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "پوشهٔ کار و پروفایل ساخته شدند!"
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "نمی&zwnj;توان فایل config.php را به روز کرد!"
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "نمی&zwnj;توان پروفایل را ساخت!"
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = "پوشهٔ کار معتبر نیست! نمی&zwnj;توان پروفایل را ساخت!"
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = "پوشهٔ کار معتبر نیست! نمی&zwnj;توان پروفایل را ساخت!"
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "پروفایل به روز شد!"
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "در به روز رسانی پروفایل مشکلی پیش آمده است!"
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = "لطفن رباتتان را توصیف کنید"
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = "PHP نسخهٔ ۳.۵ یا جدیدتر"
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = "وب سرور نمی&zwnj;تواند در configs/config.php بنویسد."
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = "وب سرور باید بتواند در پوشهٔ کار بنویسد."
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = "متغیر post_max_size در php.ini باید حداقل ۲ مگابایت باشد. "
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = "موارد لازم زیر خالی هستند: %s"
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = "موارد اختیاری زیر خالی هستند: %s"
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = "در بررسی مشکلی پیدا نشد."
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = "از configs/local_config.php استفاده می&zwnj;شود، بنابراین ممکن است تغییر بالا عمل نکند."
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = "قبل"
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = "ویرایش زبان: %s"
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = "لیست زبان&zwnj;ها"
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = "نام زبان"
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = "برچسب زبان"
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = "حالت نوشتار"
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = "درصد ترجمه شده"
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = "زبان اضافه کن"
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = "نام زبان:"
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = "برچسب زبان:"
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = "حالت نوشتار:"
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = "ارسال"
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = "نام زبان"
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = "برچسب زبان"
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = "حالت نوشتار"
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "بعد"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/fr_FR/configure.ini b/src/locale/fr_FR/configure.ini
index 69f740374..e2c4ae2d4 100755
--- a/src/locale/fr_FR/configure.ini
+++ b/src/locale/fr_FR/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = ""
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = ""
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "Proch."
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/he/configure.ini b/src/locale/he/configure.ini
index 82aeb9216..75e6f1cb7 100755
--- a/src/locale/he/configure.ini
+++ b/src/locale/he/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = ""
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = ""
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "פרופייל עודכן"
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "בעיה עם עדכון הפרופייל"
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "פרופייל עודכן"
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "בעיה עם עדכון הפרופייל"
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "בעיה עם עדכון הפרופייל"
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "פרופייל עודכן"
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "בעיה עם עדכון הפרופייל"
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = "הגש"
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = ""
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/hi/configure.ini b/src/locale/hi/configure.ini
index 47b6008f5..ddde5285c 100755
--- a/src/locale/hi/configure.ini
+++ b/src/locale/hi/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = ""
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = ""
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = ""
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/in_ID/configure.ini b/src/locale/in_ID/configure.ini
index 982003eca..99431cfa3 100755
--- a/src/locale/in_ID/configure.ini
+++ b/src/locale/in_ID/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "Locale telah ditambah"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "Locale tidak ditemukan"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "Locale telah dihapus"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "Locale tidak ditemukan"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "Sesudah"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/it/configure.ini b/src/locale/it/configure.ini
index ca9fcaaaa..1832a9a78 100755
--- a/src/locale/it/configure.ini
+++ b/src/locale/it/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = "Azioni"
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = "Seleziona Scansione"
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = "Seleziona Scansione"
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = "Unione Scansioni creata!"
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = "Unione Scansioni cancellata!"
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = "Unione Scansioni da cancellare inesistente!"
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = "Aggiungi scansione"
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = "Numero di risultati"
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = "Peso"
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = "Azioni"
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = "Aggiungi Ricerca"
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = "Cambiamenti Unione Scansioni effettuati!"
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = "Impossibile svolgere azione!"
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "Lingua aggiunta!"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "Lingua inesistente!"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "Lingua cancellata"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "Lingua inesistente!"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "Stringa Lingua aggiornata!"
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = "Problema aggiornamento database!"
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "Profilo aggiornato!"
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "C&#039;&egrave; stato un problema nell&#039;aggiornamento Profilo!"
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "Profilo aggiornato!"
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "C&#039;&egrave; stato un problema nell&#039;aggiornamento Profilo!"
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "C&#039;&egrave; stato un problema nell&#039;aggiornamento Profilo!"
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = "Devi usare un percorso assoluto per la Cartella di Lavoro"
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "Cartella di Lavoro creata! Potrebbe essere necessario ri-accedere!"
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "Dai un nome al tuo Robot"
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "Cartella di Lavoro e Profilo creati!"
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "Impossibile aggiornare il file config.php!"
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "Impossibile creare Profilo!"
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = "Cartella di Lavoro non valida! Impossibile creare Profilo!"
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = "Cartella di Lavoro non valida! Impossibile creare Profilo!"
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "Profilo aggiornato!"
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "C&#039;&egrave; stato un problema nell&#039;aggiornamento Profilo!"
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = "Descrivi il tuo Robot"
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = "PHP Versione 5.4 o maggiore"
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = "File configs/config.php non scrivibile dal web server."
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = "La Cartella di Lavoro deve essere scrivibile dal web server. "
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = "La variabile post_max_size nel file php.ini dovrebbe essere minimo 32M"
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = "I seguenti oggetti richiesti sono mancanti: %s"
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = "I seguenti oggetti opzionali sono mancanti: %s"
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = "Controllo passato."
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = "Usando configs/local_config.php la Cartella di Lavoro sopra potrebbe non funzionare."
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = "Indietro"
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = "Modifica Lingua: %s"
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = "Lista Lingue"
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = "Nome Lingua"
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = "TAG Lingua"
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = "Modo scrittura"
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = "Percentuale tradotta"
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = "Aggiungi Lingua"
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = "Nome Lingua:"
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = "TAG Lingua:"
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = "Modo scrittura:"
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = "Invia"
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = "Nome Lingua"
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = "TAG Lingua"
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = "Modo scrittura"
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "Prossimo"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/ja/configure.ini b/src/locale/ja/configure.ini
index 1e716a68d..d517d115d 100755
--- a/src/locale/ja/configure.ini
+++ b/src/locale/ja/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "ローケルが追加しました"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "ローケルは存在しません"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "ローケルを削除しました"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "ローケルは存在しません"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "ローケルストリングを編集しました"
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = "ディータベースの更新ない"
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "プロフィールの変更できました。"
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "プロフィールの変更できない。"
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "プロフィールの変更できました。"
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "プロフィールの変更できない。"
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "プロフィールの変更できない。"
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "作業ディレクトリの設定しました。もう一度ログインしてください。"
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "ボット名を入力してください。"
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "作業ディレクトリとプロフィールの作成しました。"
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "config.phpファイルのできない。更新"
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "プロフィールを作成できない。"
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = "無効な作業ディレクト。プロフィールを作成できない。"
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = "無効な作業ディレクト。プロフィールを作成できない。"
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "プロフィールの変更できました。"
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "プロフィールの変更できない。"
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = "ロボットの説明してください。"
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = "戻る"
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = "ローケルの編集:%s"
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = "ローケルリスト"
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = "ローケル名"
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = "ローケルのタッグ"
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = "書き込みモード"
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = "翻訳%"
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = "ローケルの追加"
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = "ローケル名"
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = "ローケルタッグ"
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = "書き込みモード"
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = "サブミット"
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = "ローケル名"
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = "ローケルのタッグ"
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = "書き込みモード"
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "次の"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/kn/configure.ini b/src/locale/kn/configure.ini
index 6b7584bb6..838bc3acf 100755
--- a/src/locale/kn/configure.ini
+++ b/src/locale/kn/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = "ಕ್ರಿಯೆಗಳು"
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = "ಕ್ರಾವ್ಲಗಳ ಮಿಶ್ರಣ ಸೃಜಿಸಲಾಯಿತು"
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = "ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಳಿಸಲಾಗಿದೆ"
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = "ಅಳಿಸಬೇಕಾದ ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇಲ್ಲ"
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = "ಕ್ರಾವ್ಲಗಳನ್ನು ಸೇರಿಸಿ"
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = "ಫಲಿತಾಂಶಗಳ ಸಂಖ್ಯೆ"
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = "ಗೌರವ"
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = "ಕ್ರಿಯೆಗಳು"
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = "ಪ್ರಶ್ನೆಯನ್ನು ಸೇರಿಸು"
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = "ಕ್ರಾವ್ಲ್ ಮಿಶ್ರಣದಲ್ಲಿ ಬದಲಾವಣೆಯನ್ನು ಉಳಿಸು"
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "ಪ್ರದೇಶದ ಶಿಷ್ಟತೆ ಸೇರಿಸಲಾಗಿದೆ"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "ಈ ಪ್ರದೇಶದ ಶಿಷ್ಟತೆ ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇಲ್ಲ"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "ಪ್ರದೇಶದ ಶಿಷ್ಟತೆ ಅಳಿಸಲಾಗಿದೆ "
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "ಈ ಪ್ರದೇಶದ ಶಿಷ್ಟತೆ ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇಲ್ಲ"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "ಪ್ರದೇಶ ಶಿಷ್ಟತೆಯ ಅಕ್ಷರ ಸಮೂಹವನ್ನು ಪರಿಷ್ಕರಿಸಲಾಯಿತು"
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "ಕಾರ್ಯ ನಿರ್ದೇಶಿಕೆಯನ್ನು ನಿಗದಿಪಡಿಸಲಾಗಿದೆ!  ನೀವು ಮರು ಪ್ರವೇಶಿಸಬೇಕಾಗಬಹುದು"
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = "configs/config.php ವೆಬ್ ಸರ್ವರ್ ನಿಂದ ಬರೆಯಲು ಸಶಕ್ತವಲ್ಲ"
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = "ಕಾರ್ಯ ನಿರ್ದೇಶಿಕೆ ವೆಬ್ ಸರ್ವರ್ ನಿಂದ ಬರೆಯಲು ಸಶಕ್ತವಾಗಿರಬೇಕು"
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = "php.ini ಕಡಿತದ ಚರಾಂಶ post_max_size ಕನಿಷ್ಠ ಪಕ್ಷ ೧೬ ಎಂ.ಬಿ. ಇರಬೇಕು"
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = "ಬರುವ ಅವಶ್ಯಕವಸ್ತುಗಳು ತಪ್ಪಿಹೋಗಿದ್ದಾವೆ:"
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = "ಬರುವ ಕಡ್ಡಾಯವಲ್ಲದ ವಸ್ತುಗಳು ತಪ್ಪಿಹೋಗಿದ್ದಾವೆ:"
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = "ಪರಿಶೀಲನೆ ತೇರ್ಗಡೆಯಾಗಿದೆ"
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = "configs/local_config.php ಉಪಯೋಗದಲ್ಲಿದೆ, ಅದರಿಂದ ಮೇಲಿನ ಕಾರ್ಯ ನಿರ್ದೇಶಿಕೆಯನ್ನು ಬದಲಾವಣೆ ನಿಷ್ಕ್ರಿಯವಾಗಬಹುದು "
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "ಮುಂದಿನ"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/ko/configure.ini b/src/locale/ko/configure.ini
index ada180b4e..2124ec648 100755
--- a/src/locale/ko/configure.ini
+++ b/src/locale/ko/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "로케일 추가!!"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "로케일이 존재하지 않습니다."
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "로케일을 삭제 하였습니다."
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "로케일이 존재하지 않습니다."
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "로케일 지정 문자열을 업데이트 하였습니다."
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = "데이터베이스를 업데이트하는데 문제가 발생했습니다."
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "프로필을 업데이트 했습니다."
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "프로필을 업데이트하는데 문제가 발생했습니다."
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "프로필을 업데이트 했습니다."
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "프로필을 업데이트하는데 문제가 발생했습니다."
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "프로필을 업데이트하는데 문제가 발생했습니다."
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "작업 디렉토리가 지정 됐습니다. 다시 로그인이 필요할수 있습니다."
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "로봇 이름을 정해 주십시요."
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "작업 디렉토리와 프로필이 생성됐습니다."
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "config.php 파일을  업데이트 실패했습니다."
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "프로필을 생성할수 없습니다."
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = "작업 디렉토리가 올바르지 않습니다. 프로필을 생성할수 없습니다."
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = "작업 디렉토리가 올바르지 않습니다. 프로필을 생성할수 없습니다."
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "프로필을 업데이트 했습니다."
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "프로필을 업데이트하는데 문제가 발생했습니다."
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = "당신의 로봇을 기술해 주십시요."
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = "뒤"
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = "로케일 편집: %s"
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = "로케일 리스트"
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = "로케일 이름"
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = "로케일 태그"
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = "쓰기 모드"
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = "번역됀 퍼센트"
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = "로케일 추가"
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = "로케일 이름:"
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = "로케일 태그:"
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = "쓰기 모드:"
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = "제출"
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = "로케일 이름"
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = "로케일 태그"
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = "쓰기 모드"
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "다음"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/nl/configure.ini b/src/locale/nl/configure.ini
index 0869c699e..089eb38e7 100644
--- a/src/locale/nl/configure.ini
+++ b/src/locale/nl/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = "een Maand"
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = "Gebruiker geactiveerd!"
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = "Gebruiker is niet geactiveerd!"
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = "Groep geworden!"
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = "Groepsnaam niet beschikbaar!"
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = "Groepsnaam beschikbaar!"
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = "Gebruiker verboden!"
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = "Gebruiker is niet verboden!"
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = "Eigenaar veranderd!"
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = "Gebruiker niet in groep!"
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = "Gebruikersnaam bestaat niet!"
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = "Groep naam bestaat"
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = "Groep Naam Toegevoegd"
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = "Groep Naam bestaat niet"
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = "groep Deleted"
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = "Kan niet Groep verwijderen"
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = "gebruiker Verwijderde"
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = "Kan gebruiker niet verwijderen uit Groep."
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = "Gebruikers uitgenodigd!"
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = "Geen Gebruikers Uitgenodigd!!"
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = "Groep geworden!"
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = "Kon niet Uitschrijven!"
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = "Gebruiker hersteld!"
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = "Gebruiker is niet hersteld!"
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = "verzoek wil aansluiten"
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = "uitgenodigd"
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = "Banned"
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = "Succes Uitgeschreven!"
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = "Kon niet Uitschrijven!"
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = "Groep geworden!"
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = "Lid worden van groep verzoek!"
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = "Yioop Groep %s Activation Request"
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = "De gebruiker %s heeft verzocht om de groep %s aan te sluiten. De onderstaande verbinding kan worden gebruikt om deze gebruiker te beheren."
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = "Vriendelijke groeten,"
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = "Onvoldoende toegang!"
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = "Groep op de hoogte!"
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = "Poging om toegang te veranderen om onbekende waarde!"
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = "Filteren van gebruikers!"
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = "Fout in commentaar data!"
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = "Kan niet posten leeg reactie!"
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = " %s toegetreden tot %s!"
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = "Op %s, die u bij de groep %s."
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = "Upload Fout!"
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = "Nieuwe Post naar Discussie: %s"
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = "We dachten dat je ge&iuml;nteresseerd bent in een nieuwe post aan de draad zou zijn:"
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = "Vriendelijke groeten,"
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = "Beste %s,"
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = "Reactie toegevoegd!"
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = "Kunt geselecteerde groep niet toe te voegen!"
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = "Fout bij het verwijderen Item"
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = "Item Deleted!"
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = "Nee Item Deleted!"
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = "Stemming Fout!"
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = "Geen stem toegang tot die post!"
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = "Al gestemd!"
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = "Stem Opgenomen!"
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = "Fout in commentaar data!"
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = "Moeten zowel titel en beschrijving!"
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = "Upload Fout!"
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = "Nieuwe thread in groep %s"
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = "Als eigenaar van %s we dachten dat je zou willen weten van de volgende thread onlangs in uw groep:"
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = "Vriendelijke groeten,"
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = "Beste %s,"
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = "Draad Gemaakt!"
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = "Fout in commentaar data!"
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = "Moeten zowel titel en beschrijving!"
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = "Bericht was gewoon elders bewerkt (een ander tabblad?)"
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = "Kan niet bijwerken Post!"
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = "Kan niet bijwerken Post!"
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = "Upload Fout!"
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = "Bericht Bijgewerkt!"
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = "Stemming Fout!"
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = "Geen stem toegang tot die post!"
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = "Al gestemd!"
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = "Stem Opgenomen!"
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = " %s toegetreden tot %s!"
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = "Op %s, die u bij de groep %s."
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = "Geen lid is of kan die groep niet lezen. Overschakelen op openbare groep!"
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = "Geen berichten Toch"
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = "terug"
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = "Historische versie van %s van %s."
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = "terug"
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = " %s lijn verschillen tussen %s en %s."
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = "Wiki pagina is bewerkt Sinds Uw versie. Laden Changed versie!"
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = "Terugkeren naar %s."
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = "Pagina bekeerd!"
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = "Fout terugzet pagina!"
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = "hoofd-"
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = "Ontbrekende velden!"
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = "Wiki pagina is bewerkt Sinds Uw versie. Laden Changed versie!"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = "Wiki pagina is bewerkt Sinds Uw versie. Laden Changed versie!"
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = " %s Wiki pagina gemaakt!"
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = "Bespreek de pagina in deze thread!"
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = "Opgeslagen!"
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = "Resource Deleted!"
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = "Resource niet verwijderd!"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = "Resource Omgedoopt!"
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = "Bron niet Omgedoopt!"
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = "Moeten Pagina opslaan Voordat gebruik van middelen!"
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = " %s Wiki pagina gemaakt!"
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = "Bespreek de pagina in deze thread!"
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = "Resource geupload!"
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = "Upload Fout!"
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = "standaard"
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = "pagina Alias"
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = "Lijst media"
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = "presentatie"
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = "solide"
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = "Binnen"
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = "geen"
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = "acties"
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = "zoeken"
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = "klein"
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = "medium"
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = "groot"
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = "grootte"
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = "Kopregel:"
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = "voorbeeld"
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = "tabel Titel"
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = "voorleggen"
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = "annuleren"
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = "Vette tekst"
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = "cursieve tekst"
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = "onderstreepte tekst"
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = "doorgehaalde tekst"
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = "titel"
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = "Rubriek 1"
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = "Rubriek 2"
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = "Rubriek 3"
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = "Rubriek 4"
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = "Ongeordende lijst object"
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = "Bestelde item in de lijst"
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = "Plaats hier de niet-opgemaakte tekst"
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = "Voeg Search Bar Vorm"
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = "grootte"
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = "Voeg Wiki Tabel"
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = "Column Count:"
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = "Rij Count:"
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = "Hyperlink toevoegen"
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = "tekst:"
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = "URL:"
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = "Zoek plaatsaanduidingstekst"
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = "Deze tekst is gecentreerd."
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = "Deze tekst is rechts uitgelijnd."
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = "Deze tekst is links uitgelijnd."
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = "item"
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = "definitie"
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = "titel"
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = "slide Item"
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = "Resource Description voor"
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = "Selecteer Crawl"
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = "standaard Crawl"
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = "Selecteer Crawl"
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = "standaard Crawl"
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = "Crawl Mix Gemaakt!"
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = "Meng Naam in Use of ongeldig!"
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = "Ongeldige Timestamp!"
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = "Crawl Mix Deleted!"
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = "Mengen om te verwijderen bestaat niet!"
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = "Meng ge&iuml;mporteerd!"
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = "Instellen Crawl om te gebruiken als Index"
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = "Fout in commentaar data!"
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = "Shared Mix heeft een ongeldige tijdstempel"
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = "Probeer deze crawl mix!"
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = " %s is het delen van de crawl mix %s!"
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = "Draad Gemaakt!"
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = "Ongeldige Timestamp!"
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = "Niet Meng de eigenaar!"
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = "Voeg Crawls"
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = "resultaten getoond"
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = "verwijderen"
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = "gewicht"
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = "naam"
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = "trefwoorden"
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = "acties"
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = "Zoekopdracht toevoegen"
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = "verwijderen"
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = "Too Many Zoekresultaat Fragmenten!"
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = "Crawl Mix Wijzigingen opgeslagen!"
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = "Niet in staat om actie uit te voeren!"
 ; SystemComponent.php line: 309
 system_component_select_mode = "Select Mode"
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = "Veldwaarden ontbrekende of ongeldige!"
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "Locale toegevoegd!"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "Locale bestaat niet!"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "locale Deleted"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "Locale bestaat niet!"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = "Locale Informatie Bijgewerkt!"
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "Locale Strings Bijgewerkt!"
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = "All Strings"
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = "Ontbrekende Strings"
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = "Probleem bijwerken Database!"
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "Profiel ge&iuml;pdatet!"
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "Er was een probleem updaten profiel!"
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = "Uitschakelen Registratie"
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = "geen Activering"
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = "e-mail Activering"
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = "admin Activering"
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = "tekst Captcha"
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = "hash Captcha"
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = "Captcha image"
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = "normale Authenticatie"
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = "ZKP Authenticatie"
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = "normale Authenticatie"
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = "Instellingen Bijgewerkt!"
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = "Geen instellingen werden veranderd!"
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = "Geen Resource Folder!"
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = "Ongeldige File Type!"
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = "Bestand te groot!"
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "Profiel ge&iuml;pdatet!"
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "Er was een probleem updaten profiel!"
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = "Reset voltooid"
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "Er was een probleem updaten profiel!"
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = "Moet een absoluut pad voor Werk Directory te gebruiken"
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = "Werk Directory kan niet worden opgenomen in Yioop folder!"
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "Werken Directory Set! Het kan nodig zijn om opnieuw in te loggen!"
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "Gelieve Naam Je robot"
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "Working Directory en Profile Gemaakt!"
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "Niet in staat om config.php bestand bij te werken!"
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "Kan geen profiel maak!"
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = "Werk is ongeldig! Kan profiel niet maken!"
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = "Werk is ongeldig! Kan profiel niet maken!"
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "Profiel ge&iuml;pdatet!"
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "Er was een probleem updaten profiel!"
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = "Beschrijf uw Robot"
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = "PHP versie 5.4 of nieuwer"
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = "configs / config.php niet webserver beschrijfbaar."
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = "Werk map moet beschrijfbaar door web-server te zijn."
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = "php.ini bestand variabele post_max_size moet minstens 2M"
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = "De volgende benodigde onderdelen ontbraken: %s"
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = "De volgende optionele onderdelen ontbraken: %s"
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = "Controleer Geslaagd."
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = "Met behulp van configs / local_config.php dus veranderende werk directory hierboven kan niet werken."
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = "afronden"
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = "geen documenten"
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = "terug"
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = "Bewerken Landinstelling: %s"
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = "Toon:"
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = "filter:"
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = "gaan"
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = "Geen Matching Strings Left To Translate!"
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = "bericht Lifetime"
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = "acties"
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = " %s gebruikers"
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = " %s gebruikers"
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = "wiki"
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = "toetreden"
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = "uitgeven"
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = "uitgeven"
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = "verwijderen"
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = "toetreden"
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = "toetreden"
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = "achteruitgang"
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = "Uitschrijven"
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = "verwijderen"
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = "Groep bewerken"
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = "Groep maken"
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = "Cre&iuml;er / Lid worden van groep"
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = "naam"
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = "Blader"
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = "Registreer"
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = "toegang"
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = "stemming"
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = "bericht Lifetime"
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = "leden"
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = " %s gebruikers"
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = "eigenaar"
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = "verwijderen"
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = "activeren"
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = "ban"
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = "herstellen"
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = "verwijderen"
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = "filter"
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = "Nodigen Meer Gebruikers"
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = "Opslaan"
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = "Groep bewerken"
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = "Nodig Gebruikers Groep"
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = "naam"
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = "Gebruikersnamen (spatie / kommas gescheiden)"
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = "Nodigen Meer Gebruikers"
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = "Transfer Group eigenaar"
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = "naam"
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = "nieuwe eigenaar"
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = "eigenaar wijzigen"
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = "filter"
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = "Ontdek Groepen"
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = "Zoeken Geplaatst Groepen"
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = "naam"
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = "eigenaar"
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = "Registreer"
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = "toegang"
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = "bericht Lifetime"
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = "locale Lijst"
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = "naam"
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = "label"
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = "mode"
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = "ingeschakeld"
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = "procent"
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = "acties"
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = "TRUE"
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = "VALSE"
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = "uitgeven"
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = "verwijderen"
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = "Voeg Locale Form"
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = "bewerk Locale"
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = "Voeg Locale"
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = "Locale Naam:"
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = "Locale tag:"
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = "Schrijven Mode:"
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = "Locale Ingeschakeld:"
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = "voorleggen"
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = "Zoek varianten"
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = "Voeg Locale Form"
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = "naam"
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = "label"
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = "mode"
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = "ingeschakeld"
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = "TRUE"
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = "VALSE"
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "volgende"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = "zoeken"
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = "tonen"
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = "Rij %s naar %s van %s"
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = "Rij %s naar %s van %s"
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = "tonen"
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = "zoeken"
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/pl/configure.ini b/src/locale/pl/configure.ini
index 069bfd36c..aba54cdca 100755
--- a/src/locale/pl/configure.ini
+++ b/src/locale/pl/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = ""
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = ""
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = ""
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/pt/configure.ini b/src/locale/pt/configure.ini
index f75bacb75..fe64d9149 100755
--- a/src/locale/pt/configure.ini
+++ b/src/locale/pt/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = ""
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = ""
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = ""
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/ru/configure.ini b/src/locale/ru/configure.ini
index 532595c8c..3c215a364 100755
--- a/src/locale/ru/configure.ini
+++ b/src/locale/ru/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = ""
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = ""
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = ""
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/te/configure.ini b/src/locale/te/configure.ini
index cb924a3bd..dda6f9b7d 100644
--- a/src/locale/te/configure.ini
+++ b/src/locale/te/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = "ఒక నెల"
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = "యూజర్ యాక్టివేట్ చేయబడినది! "
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = "యూజర్ యాక్టివేట్ చేసిలేదు!"
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = "గ్రూప్ లో చేరారు!"
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = "గ్రూప్ పేరు అందుబాటులో లేదు!"
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = "గ్రూప్ పేరు అందుబాటులో వున్నది!"
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = "యూజర్ నిషేధించబడెను! "
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = "యూజర్ నిషేధించబడలేదు!"
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = "ఓనర్ మార్చబడింది!"
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = "ఈ యూజర్ గ్రూప్ లో లేరు"
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = "ఈ యూజర్ పేరు లేదు!"
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = "గ్రూప్ పేరు వున్నది"
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = "గ్రూప్ పేరు ఆడ్ చేయబడినది"
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = "ఈ గ్రూప్ పేరు లేదు"
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = "గ్రూప్ డిలీట్ చేయబడినది "
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = "గ్రూప్ డిలీట్ చేయబడుటలేదు"
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = "యూజర్ డిలీట్ చేయబడినది "
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = "ఈ యూజర్ గ్రూప్ నుంచి డిలీట్ చేయబడుటలేదు"
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = "యూజర్స్ ఆహ్వానించబడ్డారు!"
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = "ఏ యూజర్స్ ఆహ్వానించబడలేదు! "
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = "గ్రూప్ లో చేరారు!"
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = "తొలిగించుట సాధ్యపడలేదు!"
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = "యూజర్ పునరుద్ధరించబడెను!"
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = "యూజర్ పునరుద్ధరించబడలేదు!"
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = "చేరడానికి అభ్యర్థన"
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = "ఆహ్వానించబడ్డారు"
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = "నిషేధించబడినది "
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = "విజయవంతంగా తొలిగించబడినది!"
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = "తొలిగించుట సాధ్యపడలేదు!"
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = "గ్రూప్ లో చేరారు!"
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = "గ్రూప్ లో చేరడానికి అభ్యర్థన చేయబడినది!"
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = "yioop గ్రూప్ %s యాక్టివేషన్ అభ్యర్థన"
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = "యూజర్ %s గ్రూప్%s లో చేరడానికి అభ్యర్థన చేసారు. ఈ యూజర్ నిర్వహణకు క్రింది లింక్ ను వాడవచ్చు.  "
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = "ధన్యవాదములు,"
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్"
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = "చాలని యాక్సెస్!"
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = "గ్రూప్ అప్డేట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = "తెలియని విలువ యాక్సెస్ మార్చడానికి ప్రయత్నం!"
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = "యూజర్స్ వడపోత!"
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = " ఖాళీ వ్యాఖ్య పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = "%s చేరారు %s!"
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = "ఈ తేదిన %s, మీరు %s గ్రూప్ లో చేరారు."
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = "అప్ లోడ్ పొరపాటు"
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = "థ్రెడ్ లో క్రొత్త పోస్ట్: %s"
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = "ధన్యవాదములు,"
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్"
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = "డియర్ %s, "
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = "కామెంట్ ఆడ్ చేయడమైనది!"
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = "ఎంపిక చేసిన గ్రూప్ జోడించడము కుదరదు!"
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = "ఐటెం తొలగించడం లో పొరపాటు వచ్చినది"
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = "ఐటెం డిలీట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = "ఐటెం ఎదీ డిలీట్ చేయబడలేదు!"
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = "వోటింగ్ పొరపాటు!"
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = "ఈ పోస్ట్ కి వోటింగ్ సదుపాయము లేదు!"
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = "వోటింగ్ అయిపోయినది!"
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = "వోటింగ్ నమోదు చేయబడినది!"
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = "టైటిల్ మరియు వివరణ రెండూ అవసరం!"
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = "అప్ లోడ్ పొరపాటు"
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = "గ్రూప్ %s లో క్రొత్త థ్రెడ్"
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = "ధన్యవాదములు,"
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్"
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = "డియర్ %s, "
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = "థ్రెడ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = "టైటిల్ మరియు వివరణ రెండూ అవసరం!"
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = "పోస్ట్ వేరే చోట ఇప్పుడే సవరించారు (వేరే టేబ్?)"
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = "పోస్ట్ ని అప్డేట్ చేయలేరు!"
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = "పోస్ట్ ని అప్డేట్ చేయలేరు!"
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = "అప్ లోడ్ పొరపాటు"
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = "పోస్ట్ అప్డేట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = "వోటింగ్ పొరపాటు!"
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = "ఈ పోస్ట్ కి వోటింగ్ సదుపాయము లేదు!"
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = "వోటింగ్ అయిపోయినది!"
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = "వోటింగ్ నమోదు చేయబడినది!"
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = "%s చేరారు %s!"
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = "ఈ తేదిన %s, మీరు %s గ్రూప్ లో చేరారు."
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = "సభ్యుడు కాదు లేదా ఆ గ్రూప్ ని చదవలేరు.పబ్లిక్ గ్రూప్ కి మార్చండి!"
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = "ఇంకా పోస్ట్లు ఏవీ లేవు"
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = "వెనుకకు"
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = "చారిత్రక వెర్షన్ %s నుండి %s."
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = "వెనుకకు"
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = "%s లైన్ తేడాలు%s మరియు %s మధ్"
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!"
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = "తిరిగి వెనుకకు %s"
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = "పేజీ వెనుకకు మార్చబడింది!&quot;"
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = "పేజీ వెనుకకు మార్చుటలో లోపం!"
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = "ప్రధాన"
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = "కొన్ని ఫీల్డ్స్ మిస్ అయినవి!"
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!"
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = "%s వికీ పేజ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = "ఈ థ్రెడ్ లో పేజీ గురించి చర్చించండి!"
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = "పేజ్ సేవ్ చేయబడినది!"
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = "రిసోర్స్ డిలీట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = "రిసోర్స్ డిలీట్ చేయబడలేదు!"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = "రిసోర్స్ పేరు మార్చబడింది!"
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = "రిసోర్స్ పేరు మార్చలేదు!"
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = "రిసోర్సెస్ వాడే ముందు పేజ్ సేవ్ చేయాలి!"
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = "%s వికీ పేజ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = "ఈ థ్రెడ్ లో పేజీ గురించి చర్చించండి!"
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = "రిసోర్స్ అప్ లోడ్ అయినది!"
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = "అప్ లోడ్ పొరపాటు"
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = "సగటు"
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = "మీడియా జాబితా"
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = " "
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = "యాక్సన్ లు"
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = "శోధన"
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = "చిన్న"
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = "మధ్యస్థం"
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = "పెద్ద"
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = "పరిమాణం"
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = "శీర్షిక పంక్తి:"
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = "ఉదాహరణ"
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = "టేబుల్ పేరు"
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = "మనవి చేయి"
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = "రద్దు చెయ్యి"
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = "బోల్డ్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = "ఇటాలిక్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = "అండర్ లైన్డ్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = "స్ట్రైక్డ్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = "హెడ్డింగ్"
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = "లెవెల్ 1 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = "లెవెల్ 2 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = "లెవెల్ 3 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = "లెవెల్ 4 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = "క్రమం లేని జాబితా అంశం"
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = "క్రమంలో జాబితా అంశం"
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = "ఇక్కడ ఫార్మాట్ చేయని టెక్స్ట్ ఇన్సర్ట్ చేయండి"
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = "శోధన రూపం జోడించండి"
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = "పరిమాణం"
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = "వికీ టేబుల్ ఆడ్ చెయ్యండి "
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = "కాలమ్ కౌంట్:"
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = "వరుస కౌంట్:"
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = "హైపర్ లింక్ ఆడ్ చెయ్యండి"
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = "టెక్స్ట్:"
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = "యుఆర్ఎల్:"
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = "ప్లేస్ హోల్డర్ టెక్స్ట్ శోధన"
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = "ఈ టెక్స్ట్ మధ్య సమలేఖనమైంది."
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = "ఈ టెక్స్ట్ కుడి సమలేఖనమైంది. "
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = "ఈ టెక్స్ట్ ఎడమ సమలేఖనమైంది."
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = "అంశము"
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = "నిర్వచనం"
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = "శీర్షిక"
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = "స్లయిడ్ అంశము"
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = "క్రాల్ ఎంచుకోండి"
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = "డిఫాల్ట  క్రాల్"
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = "క్రాల్ ఎంచుకోండి"
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = "డిఫాల్ట  క్రాల్"
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = "క్రాల్ మిక్స్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = "మిక్స్ పేరు వాడుక లో వుంది లేదా చెల్లదు!"
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = "టైం స్టాంప్ వేలిడ్ కాదు!"
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = "క్రాల్ మిక్స్ డిలీట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = "తొలగించవలసిన మిక్స్ లేదు!"
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = "మిక్స్ విజయవంతంగా దిగుమతి చేయబడినది!"
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = "సూచికగా ఉపయోగించడానికి క్రాల్ సెట్ చేస్తోంది  "
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = "షేర్డ్ మిక్స్ టైమ్ స్టాంప్ చెల్లదు"
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = "ఈ క్రాల్ మిక్స్ ప్రయత్నించండి!"
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = "%s పంచుకుంటున్నారు  క్రాల్ మిక్స్%sని!"
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = "థ్రెడ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = "టైం స్టాంప్ వేలిడ్ కాదు!"
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = "మిక్స్ యజమాని కాదు!"
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = "క్రాల్ లు జోడించుము"
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = "ఫలితాలను చూపించాయి"
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = "తొలగించు"
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = "బరువు"
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = "పేరు "
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = "కీ పదాలు"
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = "యాక్సన్ లు"
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = "క్వెరి జోడించుము"
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = "తొలగించు"
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = "చాలా శోధన ఫలిత శకలాలు!"
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = "క్రాల్ మిక్స్ మార్పులు సేవ్ చేయబడినవి!"
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = "ఏ ఏక్సన్ చేయుట క
 ; SystemComponent.php line: 309
 system_component_select_mode = "మోడ్ ఎంచుకోండి"
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = "ఫీల్డ్  వేల్యూస్ మిస్సింగ్ లేదా చెల్లదు!"
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "లొకేల్ ఆడ్ చేయబడినది!"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "లొకేల్ పేరు లేదు!"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "లొకేల్ డిలీట్ చేయబడినది"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "లొకేల్ పేరు లేదు!"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = "లొకేల్ సమాచారం అప్డేట్ చేయబడినది!"
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "లొకేల్ స్ట్రింగ్స్ అప్డేట్ చేయబడినవి!  "
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = "అన్ని స్ట్రింగ్లు "
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = "మిస్సింగ్ స్ట్రింగ్స్"
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = "డేటాబేస్ నవీకరణలో సమస్య!"
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "ప్రొఫైల్ అప్డేట్ చేయబడినది!"
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "ప్రొఫైల్ నవీకరణలో సమస్య వున్నది! "
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = "రిజిస్ట్రేషన్ డిసేబుల్"
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = "నో ఏక్టివేషన్"
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = "ఇమెయిల్ ఏక్టివేషన్"
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = "అడ్మిన్  ఏక్టివేషన్"
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = "కేప్త్చపదం"
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = "హాష్ కేప్త్చ"
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = "కేప్త్చ చిత్రం"
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = "సాధారణ ఆతేంటికేషణ్"
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = "ZKP ఆతేంటికేషణ్"
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = "సాధారణ ఆతేంటికేషణ్"
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = "సెట్టింగ్స్ అప్డేట్ చెయ్యబడినవి!"
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = "ఏ సెట్టింగులు మార్చబడలేదు!"
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = "రిసోర్స్ ఫోల్డర్ లేదు!"
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = "చెల్లని ఫైల్ రకం!"
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = "చాలా పెద్ద ఫైలు!"
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "ప్రొఫైల్ అప్డేట్ చేయబడినది!"
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "ప్రొఫైల్ నవీకరణలో సమస్య వున్నది! "
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = "రీసెట్ పూర్తి అయినది"
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "ప్రొఫైల్ నవీకరణలో సమస్య వున్నది! "
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = "వర్క్ డైరెక్టరీ కోసం సరైన పాత్ ఉపయోగించాలి"
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = "వర్క్ డైరెక్టరీ yioop ఫోల్డర్ లో ఉండకూడదు!"
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "వర్క్ డైరెక్టరీ సెట్  చేయండి! మీరు తిరిగి లాగిన్ చేయాలి!"
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "దయచేసి మీ రోబోట్ కి పేరు పెట్టండి"
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "వర్కింగ్ డైరెక్టరీ మరియు ప్రొఫైల్ క్రియేట్ చేయబడినది!"
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "config.php ఫైల్ అప్డేట్ చేయుట సాధ్యపడలేదు!"
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "ప్రొఫైల్ తయారు చేయుట సాధ్యపడలేదు!"
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = "వర్క్ డైరెక్టరీ చెల్లదు! ప్రొఫైల్ సృష్టించలేరు!"
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = "వర్క్ డైరెక్టరీ చెల్లదు! ప్రొఫైల్ సృష్టించలేరు!"
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "ప్రొఫైల్ అప్డేట్ చేయబడినది!"
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "ప్రొఫైల్ నవీకరణలో సమస్య వున్నది! "
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = "మీ రోబోట్ ని దయచేసి వివరించండి"
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = "PHP వెర్షన్ 5.4 లేదా ఇంకా క్రొత్తది"
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = "క్రింది అవసరమైన అంశాలు మిస్ అయినవి: %s"
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = "క్రింది ఆప్షనల్ అంశాలు మిస్ అయినవి: %s"
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = "ఫైనలైజ్"
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = "డాక్యుమెంట్స్ లేవు"
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = "వెనుకకు"
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = "ఎడిట్ లొకేల్: %s"
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = "ఫిల్టర్:"
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = "అనువదించడానికి మాచింగ్ స్ట్రింగ్స్ ఏమి లేవు!"
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = "వికీ"
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = "జాయిన్"
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = "ఎడిట్"
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = "ఎడిట్"
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = "డిలీట్"
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = "జాయిన్"
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = "జాయిన్"
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = "డిలీట్"
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = "ఎడిట్ గ్రూప్"
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = "గ్రూప్ సృష్టించు"
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = "గ్రూప్ సృష్టించు/చేరు "
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = "పేరు"
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = "బ్రౌజ్"
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = "నమోదు చేయి"
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = "డిలీట్"
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = "డిలీట్"
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = "మరిన్నియూజర్స్ ని ఆహ్వానించండి"
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = "సేవ్"
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = "ఎడిట్ గ్రూప్"
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = "యూజర్స్ ని గ్రూప్ కి  ఆహ్వానించండి"
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = "పేరు"
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = "యూజర్ పేర్లు(కామా లేదా ఖాళీ)"
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = "మరిన్నియూజర్స్ ని ఆహ్వానించండి"
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = "పేరు"
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = "పేరు"
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = "లొకేల్ లిస్టు "
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = "పేరు "
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = "ట్యాగు"
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = "మోడ్"
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = "ఎనేబుల్డ్"
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = "శాతం"
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = "చర్యలు"
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = "అవును"
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = "కాదు"
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = "ఎడిట్ "
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = "డిలీట్"
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = "ఎడిట్ లోకేల్"
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = "లోకేల్ జోడించు"
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = "లోకేల్ పేరు:"
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = "లోకేల్ ట్యాగ్:"
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = "సబ్మిట్"
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = "లోకేల్స్ శోధన"
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = "పేరు "
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = "ట్యాగు"
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = "మోడ్"
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = "ఎనేబుల్డ్"
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = "అవును"
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = "కాదు"
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "తర్వాత"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/th/configure.ini b/src/locale/th/configure.ini
index 1bd25f706..ef83b0c4e 100755
--- a/src/locale/th/configure.ini
+++ b/src/locale/th/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = ""
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = ""
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = ""
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/tr/configure.ini b/src/locale/tr/configure.ini
index bae5b6f25..fcc1da407 100755
--- a/src/locale/tr/configure.ini
+++ b/src/locale/tr/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = ""
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = ""
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = ""
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = ""
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = ""
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = ""
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = ""
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = ""
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = ""
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = ""
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = ""
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = ""
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = ""
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = ""
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/vi_VN/configure.ini b/src/locale/vi_VN/configure.ini
index 3599d96a6..80a21c9b2 100755
--- a/src/locale/vi_VN/configure.ini
+++ b/src/locale/vi_VN/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = "H&agrave;nh động"
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = "Chọn thu thập th&ocirc;ng tin"
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = "Chọn thu thập th&ocirc;ng tin"
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = "Tạo ra hỗn hợp "
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = "X&oacute;a kết hợp "
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = "Kết hợp n&agrave;y kh&ocirc;ng tồn tại"
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = "Cộng th&ecirc;m thu thập"
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = "Số kết quả"
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = "Trọng lượng"
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = "H&agrave;nh động"
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = "Cộng th&ecirc;m truy vấn"
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = "Kết hợp đ&atilde; được lưu dữ"
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = ""
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "Miền địa phương th&ecirc;m v&agrave;o"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "Miền địa phương kh&ocirc;ng tồn tại"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "X&oacute;a miền địa phương"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "Miền địa phương kh&ocirc;ng tồn tại"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "Chuỗi Địa phương được cập nhật"
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = "Vấn đề cập nhật cơ sở dữ liệu"
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = "Hồ sơ được cập nhật"
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = "C&oacute; sự trở ngaị về việc cập nhật hồ sơ "
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = "Hồ sơ được cập nhật"
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = "C&oacute; sự trở ngaị về việc cập nhật hồ sơ "
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = "C&oacute; sự trở ngaị về việc cập nhật hồ sơ "
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = ""
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "C&ocirc;ng việc thiết lập thư mục bị đ&ocirc;ng cứng (Bạn c&oacute; thể cần phải đăng nhập)"
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "Đặt t&ecirc;n cho r&ocirc; b&ocirc; của bạn"
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "Thư mục l&agrave;m việc v&agrave; hồ sơ được tạo ra"
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "Kh&ocirc;ng thể cập nhật hồ sơ config.php"
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "Kh&ocirc;ng thể tạo hồ sơ"
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = "C&ocirc;ng t&aacute;c thư mục kh&ocirc;ng hợp lệ"
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = "C&ocirc;ng t&aacute;c thư mục kh&ocirc;ng hợp lệ"
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = "Hồ sơ được cập nhật"
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = "C&oacute; sự trở ngaị về việc cập nhật hồ sơ "
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = "Diễn tả r&ocirc; b&ocirc; của bạn"
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = ""
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = ""
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = ""
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = ""
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = ""
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = ""
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = "Kiểm tra được th&ocirc;ng qua"
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = ""
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = "Trở lại"
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = "C&aacute;ch thức viết"
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = "Phần trăm đ&atilde; được phi&ecirc;n dịch"
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = "C&aacute;ch thức viết:"
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = ""
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = "C&aacute;ch thức viết"
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "Trang kế tiếp"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/locale/zh_CN/configure.ini b/src/locale/zh_CN/configure.ini
index 64a941804..6fe07f748 100755
--- a/src/locale/zh_CN/configure.ini
+++ b/src/locale/zh_CN/configure.ini
@@ -678,613 +678,613 @@ social_component_one_month = ""
 ; SocialComponent.php line: 200
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 205
+; SocialComponent.php line: 206
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 224
+; SocialComponent.php line: 226
 social_component_joined = ""
 ;
-; SocialComponent.php line: 228
+; SocialComponent.php line: 231
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 234
+; SocialComponent.php line: 237
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 251
+; SocialComponent.php line: 258
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 256
+; SocialComponent.php line: 264
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 277
+; SocialComponent.php line: 291
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 282
+; SocialComponent.php line: 296
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 288
+; SocialComponent.php line: 302
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 304
+; SocialComponent.php line: 318
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 342
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 337
+; SocialComponent.php line: 352
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 344
+; SocialComponent.php line: 359
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 347
+; SocialComponent.php line: 362
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 360
+; SocialComponent.php line: 379
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 365
+; SocialComponent.php line: 384
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 420
+; SocialComponent.php line: 447
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 425
+; SocialComponent.php line: 453
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 441
+; SocialComponent.php line: 470
 social_component_joined = ""
 ;
-; SocialComponent.php line: 444
+; SocialComponent.php line: 473
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 485
+; SocialComponent.php line: 539
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 490
+; SocialComponent.php line: 545
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 497
+; SocialComponent.php line: 553
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 499
+; SocialComponent.php line: 555
 social_component_invited = ""
 ;
-; SocialComponent.php line: 501
+; SocialComponent.php line: 557
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 550
+; SocialComponent.php line: 610
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 554
+; SocialComponent.php line: 614
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 734
+; SocialComponent.php line: 794
 social_component_originally_posted = ""
 ;
-; SocialComponent.php line: 740
+; SocialComponent.php line: 800
 social_component_originally_dated = ""
 ;
-; SocialComponent.php line: 773
+; SocialComponent.php line: 833
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 835
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 790
+; SocialComponent.php line: 850
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 857
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 861
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 802
+; SocialComponent.php line: 862
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 873
+; SocialComponent.php line: 932
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 886
+; SocialComponent.php line: 945
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 894
+; SocialComponent.php line: 952
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 902
+; SocialComponent.php line: 960
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 1052
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 998
+; SocialComponent.php line: 1056
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 1010
+; SocialComponent.php line: 1068
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1016
+; SocialComponent.php line: 1074
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1020
+; SocialComponent.php line: 1078
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1023
+; SocialComponent.php line: 1081
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1038
+; SocialComponent.php line: 1096
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1051
+; SocialComponent.php line: 1109
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 1053
+; SocialComponent.php line: 1111
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 1056
+; SocialComponent.php line: 1114
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1057
+; SocialComponent.php line: 1115
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1059
+; SocialComponent.php line: 1117
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1066
+; SocialComponent.php line: 1124
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 1077
+; SocialComponent.php line: 1135
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 1083
+; SocialComponent.php line: 1141
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 1103
+; SocialComponent.php line: 1161
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 1106
+; SocialComponent.php line: 1164
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 1114
+; SocialComponent.php line: 1172
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1123
+; SocialComponent.php line: 1181
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1128
+; SocialComponent.php line: 1186
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1132
+; SocialComponent.php line: 1190
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1136
+; SocialComponent.php line: 1194
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1142
+; SocialComponent.php line: 1200
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1147
+; SocialComponent.php line: 1205
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1158
+; SocialComponent.php line: 1216
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1166
+; SocialComponent.php line: 1224
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1179
+; SocialComponent.php line: 1237
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 1183
+; SocialComponent.php line: 1241
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 1187
+; SocialComponent.php line: 1245
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 1188
+; SocialComponent.php line: 1246
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 1193
+; SocialComponent.php line: 1251
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 1201
+; SocialComponent.php line: 1259
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 1209
+; SocialComponent.php line: 1267
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 1213
+; SocialComponent.php line: 1271
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1219
+; SocialComponent.php line: 1277
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1227
+; SocialComponent.php line: 1285
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1240
+; SocialComponent.php line: 1298
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1249
+; SocialComponent.php line: 1307
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1252
+; SocialComponent.php line: 1310
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1259
+; SocialComponent.php line: 1317
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1268
+; SocialComponent.php line: 1326
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1273
+; SocialComponent.php line: 1331
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1277
+; SocialComponent.php line: 1335
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1281
+; SocialComponent.php line: 1339
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1313
+; SocialComponent.php line: 1371
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1316
+; SocialComponent.php line: 1374
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1465
+; SocialComponent.php line: 1523
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1670
+; SocialComponent.php line: 1728
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 1836
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1839
 social_component_signin_to_access = ""
 ;
-; SocialComponent.php line: 1845
+; SocialComponent.php line: 1903
 social_component_back = ""
 ;
-; SocialComponent.php line: 1846
+; SocialComponent.php line: 1904
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1881
+; SocialComponent.php line: 1939
 social_component_back = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1940
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1896
+; SocialComponent.php line: 1954
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1904
+; SocialComponent.php line: 1962
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1908
+; SocialComponent.php line: 1966
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1912
+; SocialComponent.php line: 1970
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 2011
+; SocialComponent.php line: 2069
 social_component_main = ""
 ;
-; SocialComponent.php line: 2368
+; SocialComponent.php line: 2426
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 2380
+; SocialComponent.php line: 2438
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2447
 social_component_resource_saved = ""
 ;
-; SocialComponent.php line: 2394
+; SocialComponent.php line: 2452
 social_component_resource_not_saved = ""
 ;
-; SocialComponent.php line: 2407
+; SocialComponent.php line: 2465
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 2515
+; SocialComponent.php line: 2573
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2516
+; SocialComponent.php line: 2574
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2536
+; SocialComponent.php line: 2594
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 2548
+; SocialComponent.php line: 2606
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 2553
+; SocialComponent.php line: 2611
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2623
 social_component_resource_extracted = ""
 ;
-; SocialComponent.php line: 2570
+; SocialComponent.php line: 2628
 social_component_resource_not_extracted = ""
 ;
-; SocialComponent.php line: 2581
+; SocialComponent.php line: 2639
 social_component_clip_folder_set = ""
 ;
-; SocialComponent.php line: 2592
+; SocialComponent.php line: 2650
 social_component_copy_fail = ""
 ;
-; SocialComponent.php line: 2597
+; SocialComponent.php line: 2655
 social_component_copy_success = ""
 ;
-; SocialComponent.php line: 2612
+; SocialComponent.php line: 2670
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 2617
+; SocialComponent.php line: 2675
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2685
 social_component_resource_created = ""
 ;
-; SocialComponent.php line: 2632
+; SocialComponent.php line: 2690
 social_component_resource_not_created = ""
 ;
-; SocialComponent.php line: 2641
+; SocialComponent.php line: 2699
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 2653
+; SocialComponent.php line: 2711
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 2655
+; SocialComponent.php line: 2713
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 2659
+; SocialComponent.php line: 2717
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 2664
+; SocialComponent.php line: 2722
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 2806
+; SocialComponent.php line: 2864
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2892
+; SocialComponent.php line: 2950
 social_component_doc_sections = ""
 ;
-; SocialComponent.php line: 2994
+; SocialComponent.php line: 3052
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 2995
+; SocialComponent.php line: 3053
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 2996
+; SocialComponent.php line: 3054
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 2997
+; SocialComponent.php line: 3055
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 3000
+; SocialComponent.php line: 3058
 social_component_solid = ""
 ;
-; SocialComponent.php line: 3001
+; SocialComponent.php line: 3059
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 3002
+; SocialComponent.php line: 3060
 social_component_none = ""
 ;
-; SocialComponent.php line: 3005
+; SocialComponent.php line: 3063
 social_component_actions = "元素活動"
 ;
-; SocialComponent.php line: 3006
+; SocialComponent.php line: 3064
 social_component_new_folder = ""
 ;
-; SocialComponent.php line: 3007
+; SocialComponent.php line: 3065
 social_component_new_file = ""
 ;
-; SocialComponent.php line: 3009
+; SocialComponent.php line: 3067
 social_component_search = ""
 ;
-; SocialComponent.php line: 3198
+; SocialComponent.php line: 3256
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 3199
+; SocialComponent.php line: 3257
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 3200
+; SocialComponent.php line: 3258
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 3201
+; SocialComponent.php line: 3259
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3202
+; SocialComponent.php line: 3260
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 3203
+; SocialComponent.php line: 3261
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 3204
+; SocialComponent.php line: 3262
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 3205
+; SocialComponent.php line: 3263
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 3206
+; SocialComponent.php line: 3264
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 3207
+; SocialComponent.php line: 3265
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 3208
+; SocialComponent.php line: 3266
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 3209
+; SocialComponent.php line: 3267
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 3210
+; SocialComponent.php line: 3268
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 3211
+; SocialComponent.php line: 3269
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 3212
+; SocialComponent.php line: 3270
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 3213
+; SocialComponent.php line: 3271
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 3214
+; SocialComponent.php line: 3272
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 3215
+; SocialComponent.php line: 3273
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 3216
+; SocialComponent.php line: 3274
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 3217
+; SocialComponent.php line: 3275
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 3218
+; SocialComponent.php line: 3276
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 3219
+; SocialComponent.php line: 3277
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 3220
+; SocialComponent.php line: 3278
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 3221
+; SocialComponent.php line: 3279
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 3222
+; SocialComponent.php line: 3280
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 3223
+; SocialComponent.php line: 3281
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 3224
+; SocialComponent.php line: 3282
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 3225
+; SocialComponent.php line: 3283
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 3226
+; SocialComponent.php line: 3284
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 3227
+; SocialComponent.php line: 3285
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 3228
+; SocialComponent.php line: 3286
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 3229
+; SocialComponent.php line: 3287
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 3230
+; SocialComponent.php line: 3288
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 3232
+; SocialComponent.php line: 3290
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 3234
+; SocialComponent.php line: 3292
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 3236
+; SocialComponent.php line: 3294
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 3238
+; SocialComponent.php line: 3296
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 3240
+; SocialComponent.php line: 3298
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 3278
+; SocialComponent.php line: 3336
 social_component_select_crawl = "搜尋選擇"
 ;
-; SocialComponent.php line: 3279
+; SocialComponent.php line: 3337
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3281
+; SocialComponent.php line: 3339
 social_component_select_crawl = "搜尋選擇"
 ;
-; SocialComponent.php line: 3283
+; SocialComponent.php line: 3341
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 3313
+; SocialComponent.php line: 3371
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 3316
+; SocialComponent.php line: 3374
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 3324
+; SocialComponent.php line: 3382
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3333
+; SocialComponent.php line: 3391
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 3354
+; SocialComponent.php line: 3412
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 3362
+; SocialComponent.php line: 3420
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 3380
+; SocialComponent.php line: 3438
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 3397
+; SocialComponent.php line: 3455
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 3403
+; SocialComponent.php line: 3461
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3421
+; SocialComponent.php line: 3479
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 3425
+; SocialComponent.php line: 3483
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 3427
+; SocialComponent.php line: 3485
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 3432
+; SocialComponent.php line: 3490
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 3496
+; SocialComponent.php line: 3554
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 3501
+; SocialComponent.php line: 3559
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 3511
+; SocialComponent.php line: 3569
 social_component_add_crawls = "增加索引"
 ;
-; SocialComponent.php line: 3513
+; SocialComponent.php line: 3571
 social_component_num_results = "結果數量"
 ;
-; SocialComponent.php line: 3515
+; SocialComponent.php line: 3573
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 3517
+; SocialComponent.php line: 3575
 social_component_weight = "元素重量"
 ;
-; SocialComponent.php line: 3518
+; SocialComponent.php line: 3576
 social_component_name = ""
 ;
-; SocialComponent.php line: 3520
+; SocialComponent.php line: 3578
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 3522
+; SocialComponent.php line: 3580
 social_component_actions = "元素活動"
 ;
-; SocialComponent.php line: 3524
+; SocialComponent.php line: 3582
 social_component_add_query = "增加查詢"
 ;
-; SocialComponent.php line: 3525
+; SocialComponent.php line: 3583
 social_component_delete = ""
 ;
-; SocialComponent.php line: 3575
+; SocialComponent.php line: 3633
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 3592
+; SocialComponent.php line: 3650
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -1323,175 +1323,175 @@ system_component_machine_no_action = "無動作"
 ; SystemComponent.php line: 309
 system_component_select_mode = ""
 ;
-; SystemComponent.php line: 350
+; SystemComponent.php line: 351
 system_component_locale_missing_info = ""
 ;
-; SystemComponent.php line: 357
+; SystemComponent.php line: 358
 system_component_locale_added = "增加語言"
 ;
-; SystemComponent.php line: 364
+; SystemComponent.php line: 365
 system_component_localename_doesnt_exists = "語言不存在"
 ;
-; SystemComponent.php line: 369
+; SystemComponent.php line: 370
 system_component_localename_deleted = "刪除語言"
 ;
-; SystemComponent.php line: 375
+; SystemComponent.php line: 376
 system_component_localename_doesnt_exists = "語言不存在"
 ;
-; SystemComponent.php line: 404
+; SystemComponent.php line: 409
 system_component_locale_updated = ""
 ;
-; SystemComponent.php line: 434
+; SystemComponent.php line: 443
 system_component_localestrings_updated = "語言更新"
 ;
-; SystemComponent.php line: 445
+; SystemComponent.php line: 454
 system_component_all_strings = ""
 ;
-; SystemComponent.php line: 446
+; SystemComponent.php line: 455
 system_component_missing_strings = ""
 ;
-; SystemComponent.php line: 591
+; SystemComponent.php line: 600
 system_component_configure_no_change_db = ""
 ;
-; SystemComponent.php line: 596
+; SystemComponent.php line: 605
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 599
+; SystemComponent.php line: 608
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 632
+; SystemComponent.php line: 641
 system_component_configure_disable_registration = ""
 ;
-; SystemComponent.php line: 634
+; SystemComponent.php line: 643
 system_component_configure_no_activation = ""
 ;
-; SystemComponent.php line: 636
+; SystemComponent.php line: 645
 system_component_configure_email_activation = ""
 ;
-; SystemComponent.php line: 638
+; SystemComponent.php line: 647
 system_component_configure_admin_activation = ""
 ;
-; SystemComponent.php line: 642
+; SystemComponent.php line: 651
 system_component_configure_no_advertisements = ""
 ;
-; SystemComponent.php line: 644
+; SystemComponent.php line: 653
 system_component_configure_keyword_advertisements = ""
 ;
-; SystemComponent.php line: 646
+; SystemComponent.php line: 655
 system_component_configure_external_advertisements = ""
 ;
-; SystemComponent.php line: 729
+; SystemComponent.php line: 738
 captchasettings_element_text_captcha = ""
 ;
-; SystemComponent.php line: 731
+; SystemComponent.php line: 740
 captchasettings_element_hash_captcha = ""
 ;
-; SystemComponent.php line: 733
+; SystemComponent.php line: 742
 captchasettings_element_image_captcha = ""
 ;
-; SystemComponent.php line: 737
+; SystemComponent.php line: 746
 captchasettings_element_no_recovery = ""
 ;
-; SystemComponent.php line: 739
+; SystemComponent.php line: 748
 captchasettings_element_email_recovery = ""
 ;
-; SystemComponent.php line: 741
+; SystemComponent.php line: 750
 captchasettings_element_email_questions = ""
 ;
-; SystemComponent.php line: 746
+; SystemComponent.php line: 755
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 748
+; SystemComponent.php line: 757
 serversettings_element_zkp_authentication = ""
 ;
-; SystemComponent.php line: 753
+; SystemComponent.php line: 762
 serversettings_element_normal_authentication = ""
 ;
-; SystemComponent.php line: 782
+; SystemComponent.php line: 791
 system_component_settings_updated = ""
 ;
-; SystemComponent.php line: 785
+; SystemComponent.php line: 794
 system_component_no_update_settings = ""
 ;
-; SystemComponent.php line: 827
+; SystemComponent.php line: 836
 system_component_no_resource_folder = ""
 ;
-; SystemComponent.php line: 841
+; SystemComponent.php line: 850
 system_component_invalid_filetype = ""
 ;
-; SystemComponent.php line: 846
+; SystemComponent.php line: 855
 system_component_file_too_big = ""
 ;
-; SystemComponent.php line: 861
+; SystemComponent.php line: 870
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 865
+; SystemComponent.php line: 874
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 914
+; SystemComponent.php line: 923
 system_component_configure_reset_completed = ""
 ;
-; SystemComponent.php line: 917
+; SystemComponent.php line: 926
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 996
+; SystemComponent.php line: 1005
 system_component_configure_use_absolute_path = "使用絕對路徑"
 ;
-; SystemComponent.php line: 1001
+; SystemComponent.php line: 1010
 system_component_configure_configure_diff_base_dir = ""
 ;
-; SystemComponent.php line: 1032
+; SystemComponent.php line: 1041
 system_component_configure_work_dir_set = "工作目錄配置"
 ;
-; SystemComponent.php line: 1043
+; SystemComponent.php line: 1052
 system_component_name_your_bot = "取名"
 ;
-; SystemComponent.php line: 1064
+; SystemComponent.php line: 1073
 system_component_configure_work_profile_made = "工作設置已建立"
 ;
-; SystemComponent.php line: 1068
+; SystemComponent.php line: 1077
 system_component_configure_no_set_config = "無設置"
 ;
-; SystemComponent.php line: 1075
+; SystemComponent.php line: 1084
 system_component_configure_no_create_profile = "未建立簡歷"
 ;
-; SystemComponent.php line: 1082
+; SystemComponent.php line: 1091
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1089
+; SystemComponent.php line: 1098
 system_component_configure_work_dir_invalid = ""
 ;
-; SystemComponent.php line: 1118
+; SystemComponent.php line: 1127
 system_component_configure_profile_change = ""
 ;
-; SystemComponent.php line: 1122
+; SystemComponent.php line: 1131
 system_component_configure_no_change_profile = ""
 ;
-; SystemComponent.php line: 1142
+; SystemComponent.php line: 1151
 system_component_describe_robot = ""
 ;
-; SystemComponent.php line: 1196
+; SystemComponent.php line: 1205
 system_component_php_version = "PHP版本"
 ;
-; SystemComponent.php line: 1204
+; SystemComponent.php line: 1213
 system_component_no_write_config_php = "PHP未寫入"
 ;
-; SystemComponent.php line: 1209
+; SystemComponent.php line: 1218
 system_component_no_write_work_dir = "未寫入目錄"
 ;
-; SystemComponent.php line: 1214
+; SystemComponent.php line: 1223
 system_component_post_size_small = "張貼小容量"
 ;
-; SystemComponent.php line: 1220
+; SystemComponent.php line: 1229
 system_component_missing_required = "缺少必要項目"
 ;
-; SystemComponent.php line: 1244
+; SystemComponent.php line: 1253
 system_component_missing_optional = "缺少選擇項目"
 ;
-; SystemComponent.php line: 1250
+; SystemComponent.php line: 1259
 system_component_check_passed = "通過檢查"
 ;
-; SystemComponent.php line: 1255
+; SystemComponent.php line: 1264
 system_component_using_local_config = "使用當地語言"
 ;
 ; Controller.php line: 127
@@ -2155,25 +2155,25 @@ editclassifier_finalize = ""
 ; EditclassifierElement.php line: 159
 editclassifier_no_documents = ""
 ;
-; EditlocalesElement.php line: 62
+; EditlocalesElement.php line: 69
 editlocales_element_back_to_manage = "回到管理頁面"
 ;
-; EditlocalesElement.php line: 64
+; EditlocalesElement.php line: 71
 editlocales_element_edit_locale = ""
 ;
-; EditlocalesElement.php line: 78
+; EditlocalesElement.php line: 85
 editlocales_element_show = ""
 ;
-; EditlocalesElement.php line: 82
+; EditlocalesElement.php line: 89
 editlocales_element_filter = ""
 ;
-; EditlocalesElement.php line: 87
+; EditlocalesElement.php line: 94
 editlocales_element_go = ""
 ;
-; EditlocalesElement.php line: 91
+; EditlocalesElement.php line: 98
 editlocales_element_no_matching = ""
 ;
-; EditlocalesElement.php line: 127
+; EditlocalesElement.php line: 134
 editlocales_element_save = ""
 ;
 ; EditmixElement.php line: 61
@@ -2821,295 +2821,295 @@ managegroups_element_post_lifetime = ""
 ; ManagegroupsElement.php line: 107
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 213
+; ManagegroupsElement.php line: 220
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 217
+; ManagegroupsElement.php line: 224
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 226
+; ManagegroupsElement.php line: 233
 managegroups_element_statistics = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 251
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 259
+; ManagegroupsElement.php line: 266
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 263
+; ManagegroupsElement.php line: 270
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 275
 managegroups_element_edit = ""
 ;
-; ManagegroupsElement.php line: 273
+; ManagegroupsElement.php line: 280
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 279
+; ManagegroupsElement.php line: 286
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 284
+; ManagegroupsElement.php line: 291
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 293
+; ManagegroupsElement.php line: 300
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 295
+; ManagegroupsElement.php line: 302
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 307
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 303
+; ManagegroupsElement.php line: 310
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 333
+; ManagegroupsElement.php line: 340
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 334
+; ManagegroupsElement.php line: 341
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 336
+; ManagegroupsElement.php line: 343
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 340
+; ManagegroupsElement.php line: 347
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 357
+; ManagegroupsElement.php line: 364
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 368
+; ManagegroupsElement.php line: 375
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 378
+; ManagegroupsElement.php line: 385
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 385
+; ManagegroupsElement.php line: 392
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 392
+; ManagegroupsElement.php line: 399
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 399
+; ManagegroupsElement.php line: 406
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 412
+; ManagegroupsElement.php line: 419
 managegroups_element_feed = ""
 ;
-; ManagegroupsElement.php line: 416
+; ManagegroupsElement.php line: 423
 managegroups_element_import_discussions = ""
 ;
-; ManagegroupsElement.php line: 432
+; ManagegroupsElement.php line: 439
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 436
+; ManagegroupsElement.php line: 443
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 463
+; ManagegroupsElement.php line: 474
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 476
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 483
+; ManagegroupsElement.php line: 494
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 489
+; ManagegroupsElement.php line: 500
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 495
+; ManagegroupsElement.php line: 506
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 504
+; ManagegroupsElement.php line: 515
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 532
+; ManagegroupsElement.php line: 543
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 553
+; ManagegroupsElement.php line: 564
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 564
+; ManagegroupsElement.php line: 575
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 594
+; ManagegroupsElement.php line: 610
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 595
+; ManagegroupsElement.php line: 611
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 607
+; ManagegroupsElement.php line: 630
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 615
+; ManagegroupsElement.php line: 638
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 622
+; ManagegroupsElement.php line: 645
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 641
+; ManagegroupsElement.php line: 664
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 642
+; ManagegroupsElement.php line: 665
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 654
+; ManagegroupsElement.php line: 677
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 662
+; ManagegroupsElement.php line: 685
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 669
+; ManagegroupsElement.php line: 692
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 691
+; ManagegroupsElement.php line: 714
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 692
+; ManagegroupsElement.php line: 715
 managegroups_element_group_statistics = ""
 ;
-; ManagegroupsElement.php line: 697
+; ManagegroupsElement.php line: 720
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 708
+; ManagegroupsElement.php line: 731
 managegroups_element_go = ""
 ;
-; ManagegroupsElement.php line: 712
+; ManagegroupsElement.php line: 735
 managegroup_element_group_views = ""
 ;
-; ManagegroupsElement.php line: 713
+; ManagegroupsElement.php line: 736
 managegroup_element_thread_views = ""
 ;
-; ManagegroupsElement.php line: 714
+; ManagegroupsElement.php line: 737
 managegroup_element_wiki_views = ""
 ;
-; ManagegroupsElement.php line: 717
+; ManagegroupsElement.php line: 740
 managegroup_element_last_hour = ""
 ;
-; ManagegroupsElement.php line: 718
+; ManagegroupsElement.php line: 741
 managegroup_element_last_day = ""
 ;
-; ManagegroupsElement.php line: 719
+; ManagegroupsElement.php line: 742
 managegroup_element_last_month = ""
 ;
-; ManagegroupsElement.php line: 720
+; ManagegroupsElement.php line: 743
 managegroup_element_last_year = ""
 ;
-; ManagegroupsElement.php line: 721
+; ManagegroupsElement.php line: 744
 managegroup_element_all_time = ""
 ;
-; ManagegroupsElement.php line: 730
+; ManagegroupsElement.php line: 753
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 748
+; ManagegroupsElement.php line: 771
 managegroup_element_no_activity = ""
 ;
-; ManagegroupsElement.php line: 767
+; ManagegroupsElement.php line: 790
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 771
+; ManagegroupsElement.php line: 794
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 773
+; ManagegroupsElement.php line: 796
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 775
+; ManagegroupsElement.php line: 798
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 776
+; ManagegroupsElement.php line: 799
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 777
+; ManagegroupsElement.php line: 800
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 779
+; ManagegroupsElement.php line: 802
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 781
+; ManagegroupsElement.php line: 804
 managegroups_element_post_lifetime = ""
 ;
-; ManagelocalesElement.php line: 62
+; ManagelocalesElement.php line: 67
 managelocales_element_locale_list = ""
 ;
-; ManagelocalesElement.php line: 72
+; ManagelocalesElement.php line: 77
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 75
+; ManagelocalesElement.php line: 80
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 76
+; ManagelocalesElement.php line: 81
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 77
+; ManagelocalesElement.php line: 82
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 81
+; ManagelocalesElement.php line: 86
 managelocales_element_percenttranslated = ""
 ;
-; ManagelocalesElement.php line: 82
+; ManagelocalesElement.php line: 87
 managelocales_element_actions = ""
 ;
-; ManagelocalesElement.php line: 102
+; ManagelocalesElement.php line: 107
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 103
+; ManagelocalesElement.php line: 108
 managelocales_element_false = ""
 ;
-; ManagelocalesElement.php line: 110
+; ManagelocalesElement.php line: 115
 managelocales_element_edit = ""
 ;
-; ManagelocalesElement.php line: 115
+; ManagelocalesElement.php line: 120
 confirm_delete_operation = ""
 ;
-; ManagelocalesElement.php line: 116
+; ManagelocalesElement.php line: 121
 managelocales_element_delete = ""
 ;
-; ManagelocalesElement.php line: 137
+; ManagelocalesElement.php line: 142
 manageloecales_element_add_locale_form = ""
 ;
-; ManagelocalesElement.php line: 138
+; ManagelocalesElement.php line: 143
 managelocales_element_locale_info = ""
 ;
-; ManagelocalesElement.php line: 140
+; ManagelocalesElement.php line: 145
 managelocales_element_add_locale = ""
 ;
-; ManagelocalesElement.php line: 161
+; ManagelocalesElement.php line: 166
 managelocales_element_localenamelabel = ""
 ;
-; ManagelocalesElement.php line: 174
+; ManagelocalesElement.php line: 179
 managelocales_element_localetaglabel = ""
 ;
-; ManagelocalesElement.php line: 180
+; ManagelocalesElement.php line: 185
 managelocales_element_writingmodelabel = ""
 ;
-; ManagelocalesElement.php line: 190
+; ManagelocalesElement.php line: 195
 managelocales_element_localeenabled = ""
 ;
-; ManagelocalesElement.php line: 201
+; ManagelocalesElement.php line: 206
 managelocales_element_submit = "完成"
 ;
-; ManagelocalesElement.php line: 219
+; ManagelocalesElement.php line: 224
 managelocales_element_search_locales = ""
 ;
-; ManagelocalesElement.php line: 220
+; ManagelocalesElement.php line: 225
 managelocales_element_addlocale_form = ""
 ;
-; ManagelocalesElement.php line: 222
+; ManagelocalesElement.php line: 227
 managelocales_element_localename = ""
 ;
-; ManagelocalesElement.php line: 223
+; ManagelocalesElement.php line: 228
 managelocales_element_localetag = ""
 ;
-; ManagelocalesElement.php line: 224
+; ManagelocalesElement.php line: 229
 managelocales_element_writingmode = ""
 ;
-; ManagelocalesElement.php line: 225
+; ManagelocalesElement.php line: 230
 managelocales_element_enabled = ""
 ;
-; ManagelocalesElement.php line: 231
+; ManagelocalesElement.php line: 236
 managelocales_element_true = ""
 ;
-; ManagelocalesElement.php line: 232
+; ManagelocalesElement.php line: 237
 managelocales_element_false = ""
 ;
 ; ManagemachinesElement.php line: 56
@@ -4371,19 +4371,19 @@ pagination_helper_next = "下一页"
 ; PagingtableHelper.php line: 103
 pagingtable_helper_search = ""
 ;
-; PagingtableHelper.php line: 130
+; PagingtableHelper.php line: 135
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 143
+; PagingtableHelper.php line: 148
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 220
+; PagingtableHelper.php line: 225
 pagingtable_helper_row_range = ""
 ;
-; PagingtableHelper.php line: 243
+; PagingtableHelper.php line: 253
 pagingtable_helper_show = ""
 ;
-; PagingtableHelper.php line: 251
+; PagingtableHelper.php line: 261
 pagingtable_helper_search = ""
 ;
 ; SearchformHelper.php line: 119
diff --git a/src/views/elements/EditlocalesElement.php b/src/views/elements/EditlocalesElement.php
index dbd3cd96d..8361ef5b5 100644
--- a/src/views/elements/EditlocalesElement.php
+++ b/src/views/elements/EditlocalesElement.php
@@ -51,14 +51,21 @@ class EditlocalesElement extends Element
     public function render($data)
     {
         $admin_url = htmlentities(B\controllerUrl('admin', true));
+        $context = "";
+        if ($data['FORM_TYPE'] == 'search' ||
+            !empty($data['context']) && $data['context'] == 'search') {
+            $context = 'arg=search&amp;';
+        }
         $base_url = $admin_url ."a=manageLocales&amp;arg=editstrings&amp;" .
             C\CSRF_TOKEN . "=" . $data[C\CSRF_TOKEN] . "&amp;selectlocale=" .
-            $data['CURRENT_LOCALE_TAG'] . "&amp;show={$data['show']}&amp;" .
+            $data['CURRENT_LOCALE_TAG'] .
+            "$context&amp;show={$data['show']}&amp;" .
             "filter={$data['filter']}";
         ?>
         <div class="current-activity">
         <div class="<?=$data['leftorright'] ?>">
-        <a href="<?=$admin_url . 'a='.$data['PREVIOUS_ACTIVITY'].'&amp;'.
+        <a href="<?=$admin_url . 'a='.$data['PREVIOUS_ACTIVITY'].
+            "&amp;$context".
             C\CSRF_TOKEN.'='.$data[C\CSRF_TOKEN] ?>"
         ><?= tl('editlocales_element_back_to_manage')?></a>
         </div>
diff --git a/src/views/elements/ManagegroupsElement.php b/src/views/elements/ManagegroupsElement.php
index ab72bfee3..724e93703 100755
--- a/src/views/elements/ManagegroupsElement.php
+++ b/src/views/elements/ManagegroupsElement.php
@@ -114,10 +114,10 @@ class ManagegroupsElement extends Element
             if (isset($data['browse'])) {
                 $base_url .= "&amp;browse=".$data['browse'];
             }
-            if (isset($data['START_ROW'])) {
-                $base_url .= "&amp;start_row=".$data['START_ROW'].
-                    "&amp;end_row=".$data['END_ROW'].
-                    "&amp;num_show=".$data['NUM_SHOW'];
+            foreach (['START_ROW', 'END_ROW', 'NUM_SHOW'] as $limit) {
+                if (!empty($data[$limit])) {
+                    $base_url .= "&amp;".strtolower($limit)."=".$data[$limit];
+                }
             }
             $is_root = ($_SESSION['USER_ID'] == C\ROOT_ID);
             $delete_url = $base_url . "&amp;arg=deletegroup&amp;";
@@ -174,7 +174,6 @@ class ManagegroupsElement extends Element
                         <?php
                         $choice_array = $choice_arrays[$col_name][0];
                         $arg_name = $choice_arrays[$col_name][1];
-
                         if ($group['GROUP_ID'] == C\PUBLIC_GROUP_ID ||
                             $group["OWNER_ID"] != $_SESSION['USER_ID']) {
                             ?><span class='gray'><?=
@@ -190,6 +189,14 @@ class ManagegroupsElement extends Element
                             />
                             <input type="hidden" name="arg" value="<?=
                                 $arg_name ?>" />
+                            <?php
+                            if (!empty($context)) {
+                                ?>
+                                <input type="hidden" name="context"
+                                    value="search" />
+                                <?php
+                            }
+                            ?>
                             <input type="hidden" name="group_id" value="<?=
                                 $group['GROUP_ID'] ?>" />
                             <?php
@@ -206,7 +213,7 @@ class ManagegroupsElement extends Element
                         <?php
                     } else if ($col_name == 'OWNER') {
                         if ($group['GROUP_ID'] != C\PUBLIC_GROUP_ID &&
-                            ($is_root ||
+                            (($is_root && empty($data['browse'])) ||
                             $group["OWNER_ID"] == $_SESSION['USER_ID'])) {
                             e("<td><b><a href='".$transfer_url."group_id=".
                                 $group['GROUP_ID']."'>$group_column".
@@ -442,9 +449,13 @@ class ManagegroupsElement extends Element
                 ?>
                     <table><?php
                     $stretch = (C\MOBILE) ? 1 :2;
+                    $context = "";
+                    if (!empty($data['context'])) {
+                        $context = '&amp;context=search';
+                    }
                     foreach ($data['GROUP_USERS'] as $user_array) {
                         $action_url = $base_url."&amp;user_id=" .
-                            $user_array['USER_ID'] . "&amp;group_id=".
+                            $user_array['USER_ID'] . "$context&amp;group_id=".
                             $data['CURRENT_GROUP']['id'].
                             "&amp;user_filter=".$data['USER_FILTER'];
                         $out_name = $user_array['USER_NAME'];
@@ -586,10 +597,15 @@ class ManagegroupsElement extends Element
      */
     public function renderInviteUsersForm($data)
     {
+        $context = "";
+        if (!empty($data['context'])) {
+            $context = '&amp;context=search';
+        }
         $admin_url = htmlentities(B\controllerUrl('admin', true));
         $base_url = $admin_url . C\CSRF_TOKEN."=".$data[C\CSRF_TOKEN].
-            "&amp;a=manageGroups&amp;arg=editgroup&amp;group_id=".
-            $data['CURRENT_GROUP']['id'];
+            "&amp;a=manageGroups&amp;visible_users=true$context".
+            "&amp;arg=editgroup&amp;".
+            "group_id=" . $data['CURRENT_GROUP']['id'];
         ?>
         <div class='float-opposite'><a href='<?= $base_url ?>'><?=
             tl('managegroups_element_group_info') ?></a></div>
@@ -601,6 +617,13 @@ class ManagegroupsElement extends Element
         <input type="hidden" name="a" value="manageGroups" />
         <input type="hidden" name="arg" value="<?=
             $data['FORM_TYPE']?>" />
+        <?php
+            if (!empty($data['context'])) {
+                ?>
+                <input type="hidden" name="context" value="search" />
+                <?php
+            }
+        ?>
         <input type="hidden" name="group_id" value="<?=
             $data['CURRENT_GROUP']['id'] ?>" />
         <div>
@@ -622,8 +645,8 @@ class ManagegroupsElement extends Element
         <button class="button-box"
             type="submit"><?=tl('managegroups_element_invite')
             ?></button>
-        </form>
         </div>
+        </form>
         <?php
     }
     /**
diff --git a/src/views/elements/ManagelocalesElement.php b/src/views/elements/ManagelocalesElement.php
index df513fa02..98f77a32d 100644
--- a/src/views/elements/ManagelocalesElement.php
+++ b/src/views/elements/ManagelocalesElement.php
@@ -52,6 +52,11 @@ class ManagelocalesElement extends Element
     public function render($data)
     {
         $admin_url = htmlentities(B\controllerUrl('admin', true));
+        $context = "";
+        if ($data['FORM_TYPE'] == 'search' ||
+            !empty($data['context']) && $data['context'] == 'search') {
+            $context = 'context=search&amp;';
+        }
         ?>
         <div class="current-activity">
         <?php
@@ -83,8 +88,8 @@ class ManagelocalesElement extends Element
             <th colspan="2"><?= tl('managelocales_element_actions') ?></th>
             </tr>
         <?php
-        $base_url = $admin_url . 'a=manageLocales&amp;' . C\CSRF_TOKEN . "=".
-            $data[C\CSRF_TOKEN];
+        $base_url = $admin_url . 'a=manageLocales&amp;'. $context .
+            C\CSRF_TOKEN . "=".  $data[C\CSRF_TOKEN];
         if (isset($data['START_ROW'])) {
             $base_url .= "&amp;start_row=".$data['START_ROW'].
                 "&amp;end_row=".$data['END_ROW'].
diff --git a/src/views/elements/ManageusersElement.php b/src/views/elements/ManageusersElement.php
index 1ab5f72fb..d87ac492e 100644
--- a/src/views/elements/ManageusersElement.php
+++ b/src/views/elements/ManageusersElement.php
@@ -84,7 +84,7 @@ class ManageusersElement extends Element
                     "&amp;num_show=".$data['NUM_SHOW'];
             }
             $context = "";
-            if ($data['FORM_TYPE'] == 'search' ||
+            if ($data['FORM_TYPE'] == 'search' ||
                 !empty($data['context']) && $data['context'] == 'search') {
                 $context = 'context=search&amp;';
             }
diff --git a/src/views/helpers/PagingtableHelper.php b/src/views/helpers/PagingtableHelper.php
index fa3e2c573..564632eef 100644
--- a/src/views/helpers/PagingtableHelper.php
+++ b/src/views/helpers/PagingtableHelper.php
@@ -128,6 +128,11 @@ class PagingtableHelper extends Helper
                 <input type="hidden" name="arg" value="search" />
                 <?php
             }
+            if (!empty($data['browse'])) {
+                ?>
+                <input type="hidden" name="browse" value="true" />
+                <?php
+            }
             e("<b>".tl('pagingtable_helper_show')."</b>");
             $data['VIEW']->helper("options")->render(
                 "{$var_prefix}num-show", "{$var_prefix}num_show",
@@ -241,6 +246,11 @@ class PagingtableHelper extends Helper
                     <input type="hidden" name="arg" value="search" />
                     <?php
                 }
+                if (!empty($data['browse'])) {
+                    ?>
+                    <input type="hidden" name="browse" value="true" />
+                    <?php
+                }
                 e("<b>".tl('pagingtable_helper_show')."</b>");
                 $data['VIEW']->helper("options")->render(
                     "{$var_prefix}num-show", "{$var_prefix}num_show",
ViewGit