Get the create new file and folder actions working, a=chris

Chris Pollett [2016-03-04 02:Mar:th]
Get the create new file and folder actions working, a=chris
Filename
src/controllers/components/SocialComponent.php
src/library/Utility.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/nl/statistics.txt
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/models/GroupModel.php
src/views/elements/WikiElement.php
diff --git a/src/controllers/components/SocialComponent.php b/src/controllers/components/SocialComponent.php
index 6de301dd3..3e3069f09 100644
--- a/src/controllers/components/SocialComponent.php
+++ b/src/controllers/components/SocialComponent.php
@@ -1415,61 +1415,19 @@ class SocialComponent extends Component implements CrawlConstants
         $controller_name =
             (get_class($parent) == C\NS_CONTROLLERS ."AdminController") ?
                 "admin" : "group";
-        $data = [];
-        $data["CONTROLLER"] = $controller_name;
         $other_controller_name = (get_class($parent) == C\NS_CONTROLLERS .
             "AdminController") ? "group" : "admin";
-
-        $data["ELEMENT"] = "wiki";
-        $data["VIEW"] = "wiki";
-        $data["SCRIPT"] = "";
-        $data["INCLUDE_STYLES"] = ["editor"];
+        $base_url = C\BASE_URL;
+        list($data, $sub_path, $additional_substitutions, $clean_array,
+            $strings_array, $page_defaults) = $this->initCommonWikiArrays(
+                $controller_name, $base_url);
         $group_model = $parent->model("group");
-        $locale_tag = L\getLocaleTag();
-        $data['CURRENT_LOCALE_TAG'] = $locale_tag;
         if (isset($_SESSION['USER_ID'])) {
             $user_id = $_SESSION['USER_ID'];
             $data['ADMIN'] = 1;
         } else {
             $user_id = C\PUBLIC_USER_ID;
         }
-        $search_translation = tl('social_component_search');
-        $base_url = C\BASE_URL;
-        $search_form = <<<EOD
-<form method="get" action='$base_url' class="search-box $2-search-box" >
-<input type='hidden' name="its" value='$1' />
-<input type='text'  name='q'  value="" placeholder='$3'
-    title='$3' class='search-input' />
-<button type="submit" class='search-button'><img
-    src='{$base_url}resources/search-button.png'
-    alt='$search_translation'/></button>
-</form>
-EOD;
-        $additional_substitutions[] = ['/{{\s*search\s*:\s*(.+?)\s*\|'.
-            '\s*size\s*:\s*(.+?)\s*\|\s*placeholder\s*:\s*(.+?)}}/',
-            $search_form];
-        $clean_array = [
-            "group_id" => "int",
-            "page_name" => "string",
-            "page" => "string",
-            "edit_reason" => "string",
-            "filter" => 'string',
-            "limit" => 'int',
-            "num" => 'int',
-            "page_id" => 'int',
-            "show" => 'int',
-            "sort" => 'string',
-            "diff" => 'int',
-            "diff1" => 'int',
-            "diff2" => 'int',
-            "revert" => 'int',
-            "group_name" => 'string',
-        ];
-        $strings_array = [
-            "page_name" => C\TITLE_LEN,
-            "page" => C\MAX_GROUP_PAGE_LEN,
-            "edit_reason" => C\SHORT_TITLE_LEN,
-            "filter" => C\SHORT_TITLE_LEN];
         $last_care_missing = 2;
         $missing_fields = false;
         $i = 0;
@@ -1510,7 +1468,7 @@ EOD;
             $i++;
         }
         if (!empty($group_id)) {
-        } else if (isset($page_id)) {
+        } else if (!empty($page_id)) {
             $page_info = $group_model->getPageInfoByPageId($page_id);
             if (isset($page_info["GROUP_ID"])) {
                 $group_id = $page_info["GROUP_ID"];
@@ -1521,20 +1479,7 @@ EOD;
         } else {
             $group_id = C\PUBLIC_GROUP_ID;
         }
-        $sub_path = "";
-        if (!empty($_REQUEST['sf'])) {
-            $sub_path = $parent->clean($_REQUEST['sf'], 'string');
-            $sub_path = str_replace(".", "", $sub_path);
-            $data['SUB_PATH'] = htmlentities($sub_path);
-        }
         $group = $group_model->getGroupById($group_id, $user_id);
-        $data["CAN_EDIT"] = false;
-        if ((isset($_REQUEST['c'])) && $_REQUEST['c'] == "api"){
-            $data['MODE'] = 'api';
-            $data['VIEW'] = 'api';
-        } else {
-            $data["MODE"] = "read";
-        }
         if (!$group || !isset($group["OWNER_ID"])) {
             if ($data['MODE'] !== 'api') {
                 $_REQUEST = ['c' => "admin", 'a' => '', C\CSRF_TOKEN => ''];
@@ -1553,36 +1498,6 @@ EOD;
                 $data["CAN_EDIT"] = true;
             }
         }
-        $page_defaults = [
-            'page_type' => 'standard',
-            'page_alias' => '',
-            'page_border' => 'solid',
-            'toc' => true,
-            'title' => '',
-            'author' => '',
-            'robots' => '',
-            'description' => '',
-            'alternative_path' => '',
-            'page_header' => '',
-            'page_footer' => '',
-            'sort' => 'aname'
-        ];
-        $data['page_types'] = [
-            "standard" => tl('social_component_standard_page'),
-            "page_alias" => tl('social_component_page_alias'),
-            "media_list" => tl('social_component_media_list'),
-            "presentation" => tl('social_component_presentation')
-        ];
-        $data['page_borders'] = [
-            "solid-border" => tl('social_component_solid'),
-            "dashed-border" => tl('social_component_dashed'),
-            "none" => tl('social_component_none')
-        ];
-        $data['resource_actions'] = [
-            "actions" => tl('social_component_actions'),
-            "new-folder" => tl('social_component_new_folder'),
-            "new-file" => tl('social_component_new_file')
-        ];
         if ($group_id == C\PUBLIC_GROUP_ID) {
             $read_address = "[{controller_and_page}]";
         } else {
@@ -1592,247 +1507,14 @@ EOD;
         if (isset($_REQUEST["arg"])) {
             switch ($_REQUEST["arg"]) {
                 case "edit":
-                    if (!$data["CAN_EDIT"]) { continue; }
-                    if (isset($_REQUEST['caret']) &&
-                       isset($_REQUEST['scroll_top'])
-                            && !isset($page)) {
-                        $caret = $parent->clean($_REQUEST['caret'],
-                            'int');
-                        $scroll_top= $parent->clean($_REQUEST['scroll_top'],
-                            'int');
-                        $data['SCRIPT'] .= "wiki = elt('wiki-page');".
-                            "if (wiki.setSelectionRange) { " .
-                            "   wiki.focus();" .
-                            "   wiki.setSelectionRange($caret, $caret);".
-                            "} ".
-                            "wiki.scrollTop = $scroll_top;";
-                    }
-                    if (isset($page)){
-                        $data["MODE"] = "read";
-                    } else {
-                        $data["MODE"] = "edit";
-                    }
-                    $page_info = $group_model->getPageInfoByName($group_id,
-                        $page_name, $locale_tag, 'resources');
-                    /* if page not yet created than $page_info will be null
-                       so in the below $page_info['ID'] won't be set.
-                     */
-                    $upload_allowed = true;
-                    if ($missing_fields) {
-                        return $parent->redirectWithMessage(
-                            tl("social_component_missing_fields"));
-                    } else if (!$missing_fields && (isset($page)
-                        || isset($_REQUEST['sort']))) {
-                        $action = "wikiupdate_".
-                            "group=".$group_id."&page=".$page_name;
-                        if (!$parent->checkCSRFTime(C\CSRF_TOKEN, $action)) {
-                            $data['SCRIPT'] .= "doMessage('<h1 class=\"red\" >".
-                                tl('social_component_wiki_edited_elsewhere').
-                                "</h1>');";
-                            break;
-                        }
-                        if (!empty($_REQUEST['sort'])) {
-                            $head_object =$parent->parsePageHeadVars(
-                                $page_info['PAGE']);
-                        }
-                        $write_head = false;
-                        $head_vars = [];
-                        $page_types = array_keys($data['page_types']);
-                        $page_borders = array_keys($data['page_borders']);
-                        $set_path = false;
-                        foreach ($page_defaults as $key => $default) {
-                            $head_vars[$key] = (isset($head_object[$key])) ?
-                                $head_object[$key] : $default;
-                            if (isset($_REQUEST[$key])) {
-                                $head_vars[$key] =  trim(
-                                    $parent->clean($_REQUEST[$key], "string"));
-                                switch ($key) {
-                                    case 'page_type':
-                                        if (!in_array($head_vars[$key],
-                                            $page_types)) {
-                                            $head_vars[$key] = $default;
-                                        }
-                                        break;
-                                    case 'page_borders':
-                                        if (!in_array($head_vars[$key],
-                                            $page_borders)) {
-                                            $head_vars[$key] = $default;
-                                        }
-                                        break;
-                                    case 'alternative_path':
-                                        if (!is_dir($head_vars[$key]) &&
-                                            !empty($head_vars[$key])) {
-                                            $head_vars[$key] = $default;
-                                        } else if (!empty($_SESSION['USER_ID'])
-                                            && $_SESSION['USER_ID'] ==
-                                            C\ROOT_ID) {
-                                            $set_path = true;
-                                        }
-                                        break;
-                                    case 'sort':
-                                        if (!isset($page) &&
-                                           !isset($page_info['PAGE'])) {
-                                           break;
-                                        }
-                                        if (in_array($head_vars[$key],
-                                            ['name', 'size', 'modified'])) {
-                                            if (isset($page_info['PAGE'])) {
-                                                if (!isset($page)) {
-                                                    $page_parts = explode(
-                                                        "END_HEAD_VARS",
-                                                        $page_info['PAGE']);
-                                                    $page =
-                                                        isset($page_parts[1]) ?
-                                                        $page_parts[1] :
-                                                        $page_parts[0];
-                                                }
-                                            }
-                                            $new_key = 'a' . $head_vars[$key];
-                                            if (isset($head_object['sort']) &&
-                                                $head_object['sort'] ==
-                                                $new_key) {
-                                                $new_key = 'r'.$head_vars[$key];
-                                            }
-                                            $head_vars[$key] = $new_key;
-                                            $edit_reason =
-                                                "Change resource sort";
-                                            $write_head = true;
-                                        } else {
-                                            $head_vars[$key] = $default;
-                                        }
-                                        break;
-                                    default:
-                                        $head_vars[$key] =
-                                            trim(preg_replace("/\n+/", "\n",
-                                            $head_vars[$key]));
-                                }
-                                if ($head_vars[$key] != $default) {
-                                    $write_head = true;
-                                }
-                            } else if ($key == 'toc') {
-                                if (isset($_REQUEST['title'])) {
-                                    $head_vars[$key] = false;
-                                } else {
-                                    $head_vars[$key] == true;
-                                }
-                            }
-                        }
-                        if ($write_head) {
-                            $head_string = "";
-                            foreach ($page_defaults as $key => $default) {
-                                $head_string .= $key . "=" . $head_vars[$key].
-                                    "\n\n";
-                            }
-                            $page = $head_string . "END_HEAD_VARS" . $page;
-                        }
-                        $page_info['ID'] = $group_model->setPageName($user_id,
-                            $group_id, $page_name, $page,
-                            $locale_tag, $edit_reason,
-                            tl('social_component_page_created', $page_name),
-                            tl('social_component_page_discuss_here'),
-                            $read_address, $additional_substitutions);
-                        if ($set_path && !empty($page_info['ID'])) {
-                            $tmp = $group_model->getGroupPageResourcesFolders(
-                                $group_id, $page_info['ID'], "", true, false);
-                            if (isset($tmp[1])) {
-                                list($resource_path, $thumb_path) = $tmp;
-                                if (!empty($head_vars['alternative_path'])) {
-                                    file_put_contents(
-                                        "$resource_path/redirect.txt",
-                                        $head_vars['alternative_path']);
-                                } else if (file_exists(
-                                    "$resource_path/redirect.txt") ) {
-                                    unlink("$resource_path/redirect.txt");
-                                }
-                            }
-                        }
-                        if (!isset($_FILES['page_resource']['name']) ||
-                            $_FILES['page_resource']['name'] == "") {
-                            return $parent->redirectWithMessage(
-                                tl("social_component_page_saved"),
-                                ['arg', 'page_name', 'settings',
-                                'caret', 'scroll_top','back_params', 'sf']);
-                        }
-                    } else if (!$missing_fields && isset($_REQUEST['delete'])) {
-                        $resource_name = $parent->clean($_REQUEST['delete'],
-                            "string");
-                        $upload_allowed = false;
-                        if (isset($page_info['ID']) &&
-                            $group_model->deleteResource($resource_name,
-                            $group_id, $page_info['ID'], $sub_path)) {
-                            return $parent->redirectWithMessage(
-                                tl('social_component_resource_deleted'),
-                                ['arg', 'page_name', 'settings',
-                                'caret', 'scroll_top', 'sf']);
-                        } else {
-                            return $parent->redirectWithMessage(
-                                tl('social_component_resource_not_deleted'),
-                                ['arg', 'page_name', 'settings',
-                                'caret', 'scroll_top', 'sf']);
-                        }
-                    } else if (!$missing_fields &&
-                        !empty($_REQUEST['new_resource_name']) &&
-                        !empty($_REQUEST['old_resource_name'])) {
-                        $upload_allowed = false;
-                        $old_resource_name = $parent->clean(
-                            $_REQUEST['old_resource_name'], "string");
-                        $new_resource_name = $parent->clean(
-                            $_REQUEST['new_resource_name'], "string");
-                        if (isset($page_info['ID']) &&
-                            $group_model->renameResource($old_resource_name,
-                                $new_resource_name, $group_id,
-                                $page_info['ID'], $sub_path)) {
-                            return $parent->redirectWithMessage(
-                                tl('social_component_resource_renamed'),
-                                ['arg', 'page_name', 'settings',
-                                'caret', 'scroll_top', 'sf']);
-                        } else {
-                            return $parent->redirectWithMessage(
-                                tl('social_component_resource_not_renamed'),
-                                ['arg', 'page_name', 'settings',
-                                'caret', 'scroll_top', 'sf']);
-                        }
-                    }
-                    if ($upload_allowed && !$missing_fields &&
-                        isset($_FILES['page_resource']['name']) &&
-                        $_FILES['page_resource']['name'] != "") {
-                        if (!isset($page_info['ID'])) {
-                            return $parent->redirectWithMessage(
-                                tl('social_component_resource_save_first'),
-                                ['arg', 'page_name', 'settings',
-                                'caret', 'scroll_top', 'sf']);
-                        }
-                        $result = $this->handleResourceUploads(
-                            $group_id, $page_info['ID'], $sub_path);
-                        if ($result == self::UPLOAD_SUCCESS) {
-                            //we re-parse page so resources parsed
-                            if (isset($page) && isset($edit_reason)) {
-                                $group_model->setPageName($user_id,
-                                    $group_id, $page_name, $page,
-                                    $locale_tag, $edit_reason,
-                                    tl('social_component_page_created',
-                                    $page_name),
-                                    tl('social_component_page_discuss_here'),
-                                    $read_address, $additional_substitutions);
-                            }
-                            return $parent->redirectWithMessage(
-                                tl('social_component_resource_uploaded'),
-                                ['arg', 'page_name', 'settings',
-                                'caret', 'scroll_top', 'sf']);
-                        } else {
-                            return $parent->redirectWithMessage(
-                                tl('social_component_upload_error'),
-                                ['arg', 'page_name', 'settings',
-                                'caret', 'scroll_top', 'sf']);
-                        }
-                    }
-                    if (isset($page_info['ID'])) {
-                        $data['RESOURCES_INFO'] =
-                            $group_model->getGroupPageResourceUrls($group_id,
-                            $page_info['ID'], $sub_path);
-                    } else {
-                        $data['RESOURCES_INFO'] = [];
-                    }
+                    $page_id = isset($page_id) ? $page_id : null;
+                    $page_name = isset($page_name) ? $page_name : null;
+                    $page = isset($page) ? $page : null;
+                    $edit_reason = isset($edit_reason) ? $edit_reason: null;
+                    $this->editWiki($data, $user_id, $group_id, $group,
+                        $page_id, $page_name, $page, $page_defaults, $sub_path,
+                        $edit_reason, $missing_fields, $read_address,
+                        $additional_substitutions);
                     break;
                 case "history":
                     if (!isset($page_id) || !$page_id) {
@@ -1926,7 +1608,7 @@ EOD;
                             $group_model->setPageName($user_id,
                                 $group_id, $page_info["PAGE_NAME"],
                                 $page_info["PAGE"],
-                                $locale_tag,
+                                $data['CURRENT_LOCALE_TAG'],
                                 tl('social_component_page_revert_to',
                                 date('c', $revert)), "", "", $read_address,
                                 $additional_substitutions);
@@ -1973,7 +1655,8 @@ EOD;
                     }
                     $page_string .= "</div>";
                     $data["PAGE"] = $group_model->insertResourcesParsePage(
-                        $group_id, $page_id, $locale_tag, $page_string);
+                        $group_id, $page_id, $data['CURRENT_LOCALE_TAG'],
+                        $page_string);
                     $data["PAGE_ID"] = $page_id;
                     break;
                 case "pages":
@@ -1994,13 +1677,14 @@ EOD;
                     $search_page_info = false;
                     if ($filter != "") {
                         $search_page_info = $group_model->getPageInfoByName(
-                            $group_id, $filter, $locale_tag, "read");
+                            $group_id, $filter, $data['CURRENT_LOCALE_TAG'],
+                            "read");
                     }
                     if (!$search_page_info) {
                         list($data["TOTAL_ROWS"], $data["PAGES"]) =
                             $group_model->getPageList(
-                            $group_id, $locale_tag, $filter, $limit,
-                            $num);
+                            $group_id, $data['CURRENT_LOCALE_TAG'], $filter,
+                            $limit, $num);
                         if ($data["TOTAL_ROWS"] == 0 && $filter != "") {
                             $data["MODE"] = "read";
                             $page_name = $filter;
@@ -2031,7 +1715,7 @@ EOD;
                         $data["MODE"] = "source";
                     }
                     $page_info = $group_model->getPageInfoByName($group_id,
-                        $page_name, $locale_tag, 'resources');
+                        $page_name, $data['CURRENT_LOCALE_TAG'], 'resources');
                     /* if page not yet created than $page_info will be null
                        so in the below $page_info['ID'] won't be set.
                      */
@@ -2057,13 +1741,14 @@ EOD;
                     $page_info = $search_page_info;
                 } else {
                     $page_info = $group_model->getPageInfoByName($group_id,
-                        $page_name, $locale_tag, $data["MODE"]);
+                        $page_name, $data['CURRENT_LOCALE_TAG'], $data["MODE"]);
                 }
                 $data["PAGE"] = $page_info["PAGE"];
                 $data["PAGE_ID"] = $page_info["ID"];
                 $data["DISCUSS_THREAD"] = $page_info["DISCUSS_THREAD"];
             }
-            if (empty($data["PAGE"]) && $locale_tag != C\DEFAULT_LOCALE) {
+            if (empty($data["PAGE"]) &&
+                $data['CURRENT_LOCALE_TAG'] != C\DEFAULT_LOCALE) {
                 //fallback to default locale for translation
                 $page_info = $group_model->getPageInfoByName(
                     $group_id, $page_name, C\DEFAULT_LOCALE, $data["MODE"]);
@@ -2088,7 +1773,8 @@ EOD;
                 isset($data["HEAD"]['page_header']) &&
                 $data["HEAD"]['page_type'] != 'presentation') {
                 $page_header = $group_model->getPageInfoByName($group_id,
-                    $data["HEAD"]['page_header'], $locale_tag, $data["MODE"]);
+                    $data["HEAD"]['page_header'],
+                    $data['CURRENT_LOCALE_TAG'], $data["MODE"]);
                 if (isset($page_header['PAGE'])) {
                     $header_parts =
                         explode("END_HEAD_VARS", $page_header['PAGE']);
@@ -2102,7 +1788,8 @@ EOD;
                 isset($data["HEAD"]['page_footer']) &&
                 $data["HEAD"]['page_type'] != 'presentation') {
                 $page_footer = $group_model->getPageInfoByName($group_id,
-                    $data["HEAD"]['page_footer'], $locale_tag, $data["MODE"]);
+                    $data["HEAD"]['page_footer'], $data['CURRENT_LOCALE_TAG'],
+                    $data["MODE"]);
                 if (isset($page_footer['PAGE'])) {
                     $footer_parts =
                         explode("END_HEAD_VARS", $page_footer['PAGE']);
@@ -2173,76 +1860,359 @@ EOD;
                     $data['settings'] = "true";
                 }
                 $data['current_page_type'] = $data["page_type"];
-                $data['SCRIPT'] .= <<< EOD
-                setDisplay('page-settings', {$data['settings']});
-                mode = '{$data['MODE']}';
-                function toggleSettings()
-                {
-                    var settings = elt('p-settings');
-                    settings.value = (settings.value =='true')
-                        ? 'false' : 'true';
-                    var value = (settings.value == 'true') ? true : false;
-                    if (mode == 'edit') {
-                        elt('r-settings').value = settings.value;
+                $this->initializeWikiPageToggle($data);
+                $this->initializeWikiEditor($data);
+            }
+        }
+        return $data;
+    }
+    /**
+     *
+     */
+    private function editWiki(&$data, $user_id, $group_id, $group, $page_id,
+        $page_name, $page, $page_defaults, $sub_path, $edit_reason,
+        $missing_fields, $read_address, $additional_substitutions)
+    {
+        if (!$data["CAN_EDIT"]) { return; }
+        $parent = $this->parent;
+        $group_model = $parent->model("group");
+        if (isset($_REQUEST['caret']) &&
+           isset($_REQUEST['scroll_top'])
+                && !isset($page)) {
+            $caret = $parent->clean($_REQUEST['caret'],
+                'int');
+            $scroll_top= $parent->clean($_REQUEST['scroll_top'],
+                'int');
+            $data['SCRIPT'] .= "wiki = elt('wiki-page');".
+                "if (wiki.setSelectionRange) { " .
+                "   wiki.focus();" .
+                "   wiki.setSelectionRange($caret, $caret);".
+                "} ".
+                "wiki.scrollTop = $scroll_top;";
+        }
+        if (!empty($page)){
+            $data["MODE"] = "read";
+        } else {
+            $data["MODE"] = "edit";
+        }
+        $page_info = $group_model->getPageInfoByName($group_id,
+            $page_name, $data['CURRENT_LOCALE_TAG'], 'resources');
+        /* if page not yet created than $page_info will be null
+           so in the below $page_info['ID'] won't be set.
+         */
+        $upload_allowed = true;
+        if ($missing_fields) {
+            return $parent->redirectWithMessage(
+                tl("social_component_missing_fields"));
+        } else if ((isset($page)|| isset($_REQUEST['sort']))) {
+            $action = "wikiupdate_".
+                "group=".$group_id."&page=".$page_name;
+            if (!$parent->checkCSRFTime(C\CSRF_TOKEN, $action)) {
+                $data['SCRIPT'] .= "doMessage('<h1 class=\"red\" >".
+                    tl('social_component_wiki_edited_elsewhere').
+                    "</h1>');";
+                break;
+            }
+            if (!empty($_REQUEST['sort'])) {
+                $head_object =$parent->parsePageHeadVars(
+                    $page_info['PAGE']);
+            }
+            $write_head = false;
+            $head_vars = [];
+            $page_types = array_keys($data['page_types']);
+            $page_borders = array_keys($data['page_borders']);
+            $set_path = false;
+            foreach ($page_defaults as $key => $default) {
+                $head_vars[$key] = (isset($head_object[$key])) ?
+                    $head_object[$key] : $default;
+                if (isset($_REQUEST[$key])) {
+                    $head_vars[$key] =  trim(
+                        $parent->clean($_REQUEST[$key], "string"));
+                    switch ($key) {
+                        case 'page_type':
+                            if (!in_array($head_vars[$key], $page_types)) {
+                                $head_vars[$key] = $default;
+                            }
+                            break;
+                        case 'page_borders':
+                            if (!in_array($head_vars[$key], $page_borders)) {
+                                $head_vars[$key] = $default;
+                            }
+                            break;
+                        case 'alternative_path':
+                            if (!is_dir($head_vars[$key]) &&
+                                !empty($head_vars[$key])) {
+                                $head_vars[$key] = $default;
+                            } else if (!empty($_SESSION['USER_ID'])
+                                && $_SESSION['USER_ID'] == C\ROOT_ID) {
+                                $set_path = true;
+                            }
+                            break;
+                        case 'sort':
+                            if (empty($page) && !isset($page_info['PAGE'])) {
+                               break;
+                            }
+                            if (in_array($head_vars[$key],
+                                ['name', 'size', 'modified'])) {
+                                if (isset($page_info['PAGE'])) {
+                                    if (!isset($page)) {
+                                        $page_parts = explode("END_HEAD_VARS",
+                                            $page_info['PAGE']);
+                                        $page = isset($page_parts[1]) ?
+                                            $page_parts[1] : $page_parts[0];
+                                    }
+                                }
+                                $new_key = 'a' . $head_vars[$key];
+                                if (isset($head_object['sort']) &&
+                                    $head_object['sort'] == $new_key) {
+                                    $new_key = 'r' . $head_vars[$key];
+                                }
+                                $head_vars[$key] = $new_key;
+                                $edit_reason = "Change resource sort";
+                                $write_head = true;
+                            } else {
+                                $head_vars[$key] = $default;
+                            }
+                            break;
+                        default:
+                            $head_vars[$key] =
+                                trim(preg_replace("/\n+/", "\n",
+                                $head_vars[$key]));
                     }
-                    setDisplay('page-settings', value);
-                    var page_type = elt("page-type");
-                    var cur_type = page_type.options[
-                        page_type.selectedIndex].value;
-                    if (cur_type == "media_list" && mode == 'edit') {
-                        setDisplay('save-container', value);
+                    if ($head_vars[$key] != $default) {
+                        $write_head = true;
+                    }
+                } else if ($key == 'toc') {
+                    if (isset($_REQUEST['title'])) {
+                        $head_vars[$key] = false;
+                    } else {
+                        $head_vars[$key] == true;
                     }
                 }
-                ptype = document.getElementById("page-type");
-                is_media_list = ('media_list'=='{$data['current_page_type']}');
-                is_settings = {$data['settings']};
-                is_page_alias = ('page_alias'=='{$data['current_page_type']}');
-                setDisplay('page-settings', is_settings || is_page_alias);
-                setDisplay("media-list-page", is_media_list && !is_page_alias);
-                setDisplay("page-container", !is_media_list && !is_page_alias);
-                setDisplay("non-alias-type", !is_page_alias);
-                setDisplay("alias-type", is_page_alias);
-                if (mode == 'edit') {
-                    setDisplay('save-container', !is_media_list || is_settings);
-                    setDisplay("resource-upload-form", is_media_list);
+            }
+            if ($write_head) {
+                $head_string = "";
+                foreach ($page_defaults as $key => $default) {
+                    $head_string .= $key . "=" . $head_vars[$key].
+                        "\n\n";
                 }
-                setDisplay("toggle-settings", !is_page_alias, "inline");
-                setDisplay("page-resources", !is_page_alias);
-                ptype.onchange = function() {
-                    var cur_type = ptype.options[ptype.selectedIndex].value;
-                    if (cur_type == "media_list") {
-                        setDisplay("media-list-page", true, "inline");
-                        setDisplay("page-container", false);
-                        setDisplay("toggle-settings", true);
-                        setDisplay("non-alias-type", true);
-                        setDisplay("alias-type", false);
-                        setDisplay("page-resources", true);
-                        if (mode == 'edit') {
-                            setDisplay("resource-upload-form", true);
-                        }
-                    } else if (cur_type == "page_alias") {
-                        setDisplay("toggle-settings", false);
-                        setDisplay("media-list-page", false);
-                        setDisplay("page-container", false);
-                        setDisplay("non-alias-type", false);
-                        setDisplay("alias-type", true);
-                        setDisplay("page-resources", false);
-                    } else {
-                        setDisplay("page-container", true);
-                        setDisplay("media-list-page", false);
-                        setDisplay("toggle-settings", true, "inline");
-                        setDisplay("non-alias-type", true);
-                        setDisplay("alias-type", false);
-                        setDisplay("page-resources", true);
-                        if (mode == 'edit') {
-                            setDisplay("resource-upload-form", false);
-                        }
+                $page = $head_string . "END_HEAD_VARS" . $page;
+            }
+            $page_info['ID'] = $group_model->setPageName($user_id,
+                $group_id, $page_name, $page,
+                $data['CURRENT_LOCALE_TAG'], $edit_reason,
+                tl('social_component_page_created', $page_name),
+                tl('social_component_page_discuss_here'),
+                $read_address, $additional_substitutions);
+            if ($set_path && !empty($page_info['ID'])) {
+                $tmp = $group_model->getGroupPageResourcesFolders(
+                    $group_id, $page_info['ID'], "", true, false);
+                if (isset($tmp[1])) {
+                    list($resource_path, $thumb_path) = $tmp;
+                    if (!empty($head_vars['alternative_path'])) {
+                        file_put_contents(
+                            "$resource_path/redirect.txt",
+                            $head_vars['alternative_path']);
+                    } else if (file_exists(
+                        "$resource_path/redirect.txt") ) {
+                        unlink("$resource_path/redirect.txt");
                     }
                 }
-EOD;
-                $this->initializeWikiEditor($data);
+            }
+            if (!isset($_FILES['page_resource']['name']) ||
+                $_FILES['page_resource']['name'] == "") {
+                return $parent->redirectWithMessage(
+                    tl("social_component_page_saved"),
+                    ['arg', 'page_name', 'settings',
+                    'caret', 'scroll_top','back_params', 'sf']);
+            }
+        } else if (isset($_REQUEST['delete'])) {
+            $resource_name = $parent->clean($_REQUEST['delete'],
+                "string");
+            $upload_allowed = false;
+            if (isset($page_info['ID']) &&
+                $group_model->deleteResource($resource_name,
+                $group_id, $page_info['ID'], $sub_path)) {
+                return $parent->redirectWithMessage(
+                    tl('social_component_resource_deleted'),
+                    ['arg', 'page_name', 'settings',
+                    'caret', 'scroll_top', 'sf']);
+            } else {
+                return $parent->redirectWithMessage(
+                    tl('social_component_resource_not_deleted'),
+                    ['arg', 'page_name', 'settings',
+                    'caret', 'scroll_top', 'sf']);
+            }
+        } else if (!empty($_REQUEST['new_resource_name']) &&
+            !empty($_REQUEST['old_resource_name'])) {
+            $upload_allowed = false;
+            $old_resource_name = $parent->clean(
+                $_REQUEST['old_resource_name'], "string");
+            $new_resource_name = $parent->clean(
+                $_REQUEST['new_resource_name'], "string");
+            if (isset($page_info['ID']) &&
+                $group_model->renameResource($old_resource_name,
+                    $new_resource_name, $group_id,
+                    $page_info['ID'], $sub_path)) {
+                return $parent->redirectWithMessage(
+                    tl('social_component_resource_renamed'),
+                    ['arg', 'page_name', 'settings',
+                    'caret', 'scroll_top', 'sf']);
+            } else {
+                return $parent->redirectWithMessage(
+                    tl('social_component_resource_not_renamed'),
+                    ['arg', 'page_name', 'settings',
+                    'caret', 'scroll_top', 'sf']);
+            }
+        } else if (isset($_REQUEST['resource_actions']) &&
+            in_array($_REQUEST['resource_actions'],
+            ['new-folder', 'new-file']) && !empty($page_info['ID'])) {
+            if ($group_model->newResource($_REQUEST['resource_actions'],
+                $group_id, $page_info['ID'], $sub_path)) {
+                return $parent->redirectWithMessage(
+                    tl('social_component_resource_created'),
+                    ['arg', 'page_name', 'settings',
+                    'caret', 'scroll_top', 'sf']);
+            } else {
+                return $parent->redirectWithMessage(
+                    tl('social_component_resource_not_created'),
+                    ['arg', 'page_name', 'settings',
+                    'caret', 'scroll_top', 'sf']);
             }
         }
+        if ($upload_allowed &&  isset($_FILES['page_resource']['name']) &&
+            $_FILES['page_resource']['name'] != "") {
+            if (!isset($page_info['ID'])) {
+                return $parent->redirectWithMessage(
+                    tl('social_component_resource_save_first'),
+                    ['arg', 'page_name', 'settings',
+                    'caret', 'scroll_top', 'sf']);
+            }
+            $result = $this->handleResourceUploads(
+                $group_id, $page_info['ID'], $sub_path);
+            if ($result == self::UPLOAD_SUCCESS) {
+                //we re-parse page so resources parsed
+                if (isset($page) && isset($edit_reason)) {
+                    $group_model->setPageName($user_id,
+                        $group_id, $page_name, $page,
+                        $data['CURRENT_LOCALE_TAG'], $edit_reason,
+                        tl('social_component_page_created',
+                        $page_name),
+                        tl('social_component_page_discuss_here'),
+                        $read_address, $additional_substitutions);
+                }
+                return $parent->redirectWithMessage(
+                    tl('social_component_resource_uploaded'),
+                    ['arg', 'page_name', 'settings',
+                    'caret', 'scroll_top', 'sf']);
+            } else {
+                return $parent->redirectWithMessage(
+                    tl('social_component_upload_error'),
+                    ['arg', 'page_name', 'settings',
+                    'caret', 'scroll_top', 'sf']);
+            }
+        }
+        if (isset($page_info['ID'])) {
+            $data['RESOURCES_INFO'] =
+                $group_model->getGroupPageResourceUrls($group_id,
+                $page_info['ID'], $sub_path);
+        } else {
+            $data['RESOURCES_INFO'] = [];
+        }
+    }
+    /**
+     *
+     */
+    private function initCommonWikiArrays($controller_name, $base_url)
+    {
+        $parent = $this->parent;
+        $data = [];
+        $data["CONTROLLER"] = $controller_name;
+        $data["ELEMENT"] = "wiki";
+        $data["VIEW"] = "wiki";
+        $data["SCRIPT"] = "";
+        $data["INCLUDE_STYLES"] = ["editor"];
+        $locale_tag = L\getLocaleTag();
+        $data['CURRENT_LOCALE_TAG'] = $locale_tag;
+        $sub_path = "";
+        if (!empty($_REQUEST['sf'])) {
+            $sub_path = $parent->clean($_REQUEST['sf'], 'string');
+            $sub_path = str_replace(".", "", $sub_path);
+            $data['SUB_PATH'] = htmlentities($sub_path);
+        }
+        $data["CAN_EDIT"] = false;
+        if ((isset($_REQUEST['c'])) && $_REQUEST['c'] == "api"){
+            $data['MODE'] = 'api';
+            $data['VIEW'] = 'api';
+        } else {
+            $data["MODE"] = "read";
+        }
+        $data['page_types'] = [
+            "standard" => tl('social_component_standard_page'),
+            "page_alias" => tl('social_component_page_alias'),
+            "media_list" => tl('social_component_media_list'),
+            "presentation" => tl('social_component_presentation')
+        ];
+        $data['page_borders'] = [
+            "solid-border" => tl('social_component_solid'),
+            "dashed-border" => tl('social_component_dashed'),
+            "none" => tl('social_component_none')
+        ];
+        $data['resource_actions'] = [
+            "actions" => tl('social_component_actions'),
+            "new-folder" => tl('social_component_new_folder'),
+            "new-file" => tl('social_component_new_file')
+        ];
+        $search_translation = tl('social_component_search');
+        $search_form = <<<EOD
+<form method="get" action='$base_url' class="search-box $2-search-box" >
+<input type='hidden' name="its" value='$1' />
+<input type='text'  name='q'  value="" placeholder='$3'
+    title='$3' class='search-input' />
+<button type="submit" class='search-button'><img
+    src='{$base_url}resources/search-button.png'
+    alt='$search_translation'/></button>
+</form>
+EOD;
+        $additional_substitutions[] = ['/{{\s*search\s*:\s*(.+?)\s*\|'.
+            '\s*size\s*:\s*(.+?)\s*\|\s*placeholder\s*:\s*(.+?)}}/',
+            $search_form];
+        $clean_array = [
+            "group_id" => "int",
+            "page_name" => "string",
+            "page" => "string",
+            "edit_reason" => "string",
+            "filter" => 'string',
+            "limit" => 'int',
+            "num" => 'int',
+            "page_id" => 'int',
+            "show" => 'int',
+            "sort" => 'string',
+            "diff" => 'int',
+            "diff1" => 'int',
+            "diff2" => 'int',
+            "revert" => 'int',
+            "group_name" => 'string',
+        ];
+        $strings_array = [
+            "page_name" => C\TITLE_LEN,
+            "page" => C\MAX_GROUP_PAGE_LEN,
+            "edit_reason" => C\SHORT_TITLE_LEN,
+            "filter" => C\SHORT_TITLE_LEN];
+        $page_defaults = [
+            'page_type' => 'standard',
+            'page_alias' => '',
+            'page_border' => 'solid',
+            'toc' => true,
+            'title' => '',
+            'author' => '',
+            'robots' => '',
+            'description' => '',
+            'alternative_path' => '',
+            'page_header' => '',
+            'page_footer' => '',
+            'sort' => 'aname'
+        ];
        /* Check if back params need to be set. Set them if required.
           the back params are usually sent when the wiki action is initiated
           from within an open help article.
@@ -2265,7 +2235,81 @@ EOD;
             }
             $data['BACK_URL'] = http_build_query($back_params_cleaned);
         }
-        return $data;
+        return [$data, $sub_path, $additional_substitutions, $clean_array,
+            $strings_array, $page_defaults];
+    }
+    /**
+     *
+     */
+    private function initializeWikiPageToggle(&$data)
+    {
+        $data['SCRIPT'] .= <<< EOD
+            setDisplay('page-settings', {$data['settings']});
+            mode = '{$data['MODE']}';
+            function toggleSettings()
+            {
+                var settings = elt('p-settings');
+                settings.value = (settings.value =='true')
+                    ? 'false' : 'true';
+                var value = (settings.value == 'true') ? true : false;
+                if (mode == 'edit') {
+                    elt('r-settings').value = settings.value;
+                }
+                setDisplay('page-settings', value);
+                var page_type = elt("page-type");
+                var cur_type = page_type.options[
+                    page_type.selectedIndex].value;
+                if (cur_type == "media_list" && mode == 'edit') {
+                    setDisplay('save-container', value);
+                }
+            }
+            ptype = document.getElementById("page-type");
+            is_media_list = ('media_list'=='{$data['current_page_type']}');
+            is_settings = {$data['settings']};
+            is_page_alias = ('page_alias'=='{$data['current_page_type']}');
+            setDisplay('page-settings', is_settings || is_page_alias);
+            setDisplay("media-list-page", is_media_list && !is_page_alias);
+            setDisplay("page-container", !is_media_list && !is_page_alias);
+            setDisplay("non-alias-type", !is_page_alias);
+            setDisplay("alias-type", is_page_alias);
+            if (mode == 'edit') {
+                setDisplay('save-container', !is_media_list || is_settings);
+                setDisplay("resource-upload-form", is_media_list);
+            }
+            setDisplay("toggle-settings", !is_page_alias, "inline");
+            setDisplay("page-resources", !is_page_alias);
+            ptype.onchange = function() {
+                var cur_type = ptype.options[ptype.selectedIndex].value;
+                if (cur_type == "media_list") {
+                    setDisplay("media-list-page", true, "inline");
+                    setDisplay("page-container", false);
+                    setDisplay("toggle-settings", true);
+                    setDisplay("non-alias-type", true);
+                    setDisplay("alias-type", false);
+                    setDisplay("page-resources", true);
+                    if (mode == 'edit') {
+                        setDisplay("resource-upload-form", true);
+                    }
+                } else if (cur_type == "page_alias") {
+                    setDisplay("toggle-settings", false);
+                    setDisplay("media-list-page", false);
+                    setDisplay("page-container", false);
+                    setDisplay("non-alias-type", false);
+                    setDisplay("alias-type", true);
+                    setDisplay("page-resources", false);
+                } else {
+                    setDisplay("page-container", true);
+                    setDisplay("media-list-page", false);
+                    setDisplay("toggle-settings", true, "inline");
+                    setDisplay("non-alias-type", true);
+                    setDisplay("alias-type", false);
+                    setDisplay("page-resources", true);
+                    if (mode == 'edit') {
+                        setDisplay("resource-upload-form", false);
+                    }
+                }
+            }
+EOD;
     }
     /**
      * The controller used to display a wiki page might vary (could be
diff --git a/src/library/Utility.php b/src/library/Utility.php
index 75deeea20..99fdc7ec9 100755
--- a/src/library/Utility.php
+++ b/src/library/Utility.php
@@ -859,7 +859,7 @@ function intToMetric($num)
 {
     if (is_int($num)) {
         $metric_letters = ["", "K", "M", "G", "T", "P", "E"];
-        $power = intval(log($num, 1000));
+        $power = max(intval(log($num, 1000)), 0);
         $power = (isset($metric_letters[$power])) ? $power : 6;
         $num = round($num / pow(1000, $power)). $metric_letters[$power];
     }
diff --git a/src/locale/ar/configure.ini b/src/locale/ar/configure.ini
index c0a44e102..d4d7c6278 100755
--- a/src/locale/ar/configure.ini
+++ b/src/locale/ar/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = "إجراءات"
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = "إجراءات"
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = "حدد تتبع الارتباطات"
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = "تتبع الارتباطات الافتراضية"
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = "حدد تتبع الارتباطات"
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = "تتبع الارتباطات الافتراضية"
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = "الزحف ميكس إنشاؤها!"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = "الزحف ميكس حذف!"
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = "ميكسحذف لاتوجد لا!"
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = "إضافة عمليات تتبع الارتباطات"
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = "عدد من النتائج"
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = "الوزن"
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = "إجراءات"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = "إضافة استعلام"
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = "الزحف ميكس التغييرات المحفوظة!"
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/bn/configure.ini b/src/locale/bn/configure.ini
index 7dca2c5a0..335d35a74 100755
--- a/src/locale/bn/configure.ini
+++ b/src/locale/bn/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/de/configure.ini b/src/locale/de/configure.ini
index dfbaab68c..ccd527e40 100755
--- a/src/locale/de/configure.ini
+++ b/src/locale/de/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/en_US/configure.ini b/src/locale/en_US/configure.ini
index a13aeed07..485503935 100644
--- a/src/locale/en_US/configure.ini
+++ b/src/locale/en_US/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = "Not a member or can&#039;t read that group.
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = "No Posts Yet"
 ;
-; SocialComponent.php line: 1435
-social_component_search = "Search"
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = "Not a member or can&#039;t read that group. Switching to public group!"
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = "Not a member or can&#039;t read that group. Switching to public group!"
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = "Standard"
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = "Page Alias"
+; SocialComponent.php line: 1552
+social_component_back = "Back"
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = "Media List"
+; SocialComponent.php line: 1553
+social_component_history_page = "Historical Version of %s from %s."
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = "Presentation"
+; SocialComponent.php line: 1588
+social_component_back = "Back"
 ;
-; SocialComponent.php line: 1574
-social_component_solid = "Solid"
+; SocialComponent.php line: 1589
+social_component_diff_page = "%s line differences between %s and %s."
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = "Dashed"
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; SocialComponent.php line: 1576
-social_component_none = "None"
+; SocialComponent.php line: 1611
+social_component_page_revert_to = "Revert to %s."
 ;
-; SocialComponent.php line: 1579
-social_component_actions = "Actions"
+; SocialComponent.php line: 1615
+social_component_page_reverted = "Page Reverted!"
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = "New Folder"
+; SocialComponent.php line: 1619
+social_component_revert_error = "Error Reverting Page!"
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = "New File"
+; SocialComponent.php line: 1732
+social_component_main = "Main"
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = "Missing Fields!"
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = "%s Wiki Page Created!"
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = "Discuss the page in this thread!"
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = "Page Saved!"
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = "Resource Deleted!"
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = "Resource Not Deleted! "
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = "Resource Renamed!"
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = "Resource not Renamed!"
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = "Resource Created!"
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = "Resource Not Created!"
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = "Need to Save Page Before Using Resources!"
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = "%s Wiki Page Created!"
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = "Discuss the page in this thread!"
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = "Resource Uploaded!"
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = "Upload Error!"
 ;
-; SocialComponent.php line: 1830
-social_component_back = "Back"
+; SocialComponent.php line: 2150
+social_component_standard_page = "Standard"
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = "Historical Version of %s from %s."
+; SocialComponent.php line: 2151
+social_component_page_alias = "Page Alias"
 ;
-; SocialComponent.php line: 1866
-social_component_back = "Back"
+; SocialComponent.php line: 2152
+social_component_media_list = "Media List"
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = "%s line differences between %s and %s."
+; SocialComponent.php line: 2153
+social_component_presentation = "Presentation"
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
+; SocialComponent.php line: 2156
+social_component_solid = "Solid"
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = "Revert to %s."
+; SocialComponent.php line: 2157
+social_component_dashed = "Dashed"
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = "Page Reverted!"
+; SocialComponent.php line: 2158
+social_component_none = "None"
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = "Error Reverting Page!"
+; SocialComponent.php line: 2161
+social_component_actions = "Actions"
 ;
-; SocialComponent.php line: 2008
-social_component_main = "Main"
+; SocialComponent.php line: 2162
+social_component_new_folder = "New Folder"
+;
+; SocialComponent.php line: 2163
+social_component_new_file = "New File"
+;
+; SocialComponent.php line: 2165
+social_component_search = "Search"
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = "Small"
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = "Medium"
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = "Large"
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = "Size"
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = "Header row:"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = "Example"
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = "Table Title"
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = "Submit"
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = "Cancel"
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = "Bold text"
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = "Italic text"
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = "Underlined text"
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = "Striked text"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = "Heading"
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = "Level 1 Heading"
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = "Level 2 Heading"
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = "Level 3 Heading"
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = "Level 4 Heading"
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = "Unordered list item"
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = "Ordered list item"
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = "Insert non-formatted text here"
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = "Add Search Bar Form"
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = "Size"
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = "Add Wiki Table"
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = "Column Count:"
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = "Row Count:"
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = "Add Hyperlink"
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = "Text:"
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = "URL:"
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = "Search Placeholder Text"
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = "This text is centered."
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = "This text is right-aligned."
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = "This text is left-aligned."
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = "Item"
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = "Definition"
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = "Title"
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = "Slide Item"
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = "Resource Description for "
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = "Select Crawl"
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = "Default Crawl"
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = "Select Crawl"
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = "Default Crawl"
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = "Crawl Mix Created!"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = "Mix Name in Use or Invalid!"
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = "Invalid Timestamp!"
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = "Crawl Mix Deleted!"
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = "Mix to Delete Does not Exist!"
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = "Mix Successfully Imported!"
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = "Setting Crawl To Use as Index"
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = "Error in comment data!"
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = "Shared Mix Has An Invalid Timestamp"
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = "Try out this crawl mix!"
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = "%s is sharing the crawl mix %s!"
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = "Thread Created!"
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = "Invalid Timestamp!"
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = "Not Mix Owner!"
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = "Add Crawls"
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = "Results Shown"
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = "Remove"
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = "Weight"
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = "Name"
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = "Keywords"
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = "Actions"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = "Add Query"
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = "Delete"
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = "Too Many Search Result Fragments!"
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = "Crawl Mix Changes Saved!"
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = "Rename Failed!"
 ; WikiElement.php line: 588
 wiki_element_root_folder = "Root Folder"
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = "Name"
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = "Size"
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = "Modified"
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = "Video"
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = "Audio"
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = "Rename"
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = "Add to Page"
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = "No resources have been saved to this page yet."
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = "%s Group Wiki Page List"
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = "Search group page titles"
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = "Go"
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = "Create Page: %s"
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = "Redirects to:"
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = "This group has no pages yet for the %s locale. Search for a nonexistant page and click edit to create it."
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = "Back"
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = "Difference:"
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = "Go"
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = "First"
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = "Second"
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = "First"
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = "Second"
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = "Edited by %s. "
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = "(%s bytes)."
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = "Revert"
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = "Revert"
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = "History"
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = "Discuss"
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = "Locale: %s"
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = "Page: %s"
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = "Settings"
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = "Page Type:"
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = "Alias Page To:"
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = "Page Border:"
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = "Table of Contents:"
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = "Title:"
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = "Author:"
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = "Meta Robots:"
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = "Meta Description:"
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = "Resource Path:"
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = "Leave Blank to Use Default"
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = "Header Page Name:"
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = "Footer Page Name:"
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = "Media List Page"
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = "The uploaded items below will all appear when this page is read as a gallery or media list."
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = "Page Resources"
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = "Resources are images, videos, or files associated with this page."
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/es/configure.ini b/src/locale/es/configure.ini
index 9d97abd44..759350ed5 100755
--- a/src/locale/es/configure.ini
+++ b/src/locale/es/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = "Acciones"
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = "Acciones"
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = "Seleccionar Rastreo"
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = "Seleccionar Rastreo"
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = "Rastreo Mix creado!"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = "Rastreo Mix eliminado!"
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = "Mix para eliminar (borrar) no existe!"
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = "A&ntilde;adir Rastreos"
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = "N&uacute;mero de Resultados"
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = "Tama&ntilde;o"
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = "Acciones"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = "Agregar consulta"
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = "Guardados los Cambios del Rastreo Mix!"
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/fa/configure.ini b/src/locale/fa/configure.ini
index b88539b6c..0f17602d4 100755
--- a/src/locale/fa/configure.ini
+++ b/src/locale/fa/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = "فرمان&zwnj;ها"
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = "فرمان&zwnj;ها"
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = "یک خزش انتخاب کنید"
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = "خزش پیش&zwnj;فرض"
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = "یک خزش انتخاب کنید"
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = "خزش پیش&zwnj;فرض"
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = "ترکیب خزش ساخته شد!"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = "ترکیب خزش حذف شد!"
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = "ترکیبی که می&zwnj;خواهید حذف کنید وجود ندارد!"
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = "خزش اضافه کن"
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = "تعداد نتایج"
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = "وزن"
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = "فرمان&zwnj;ها"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = "پُرسمان اضافه کن"
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = "تغییرات ترکیب خزش ذخیره شد!"
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/fr_FR/configure.ini b/src/locale/fr_FR/configure.ini
index e4477cb87..827ef2ed5 100755
--- a/src/locale/fr_FR/configure.ini
+++ b/src/locale/fr_FR/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/he/configure.ini b/src/locale/he/configure.ini
index 8e66f39ce..9e975b0e9 100755
--- a/src/locale/he/configure.ini
+++ b/src/locale/he/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/hi/configure.ini b/src/locale/hi/configure.ini
index 59db350a0..a23f7b0ee 100755
--- a/src/locale/hi/configure.ini
+++ b/src/locale/hi/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/in_ID/configure.ini b/src/locale/in_ID/configure.ini
index d55b72435..090c28936 100755
--- a/src/locale/in_ID/configure.ini
+++ b/src/locale/in_ID/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/it/configure.ini b/src/locale/it/configure.ini
index bb739be2b..f89761984 100755
--- a/src/locale/it/configure.ini
+++ b/src/locale/it/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = "Azioni"
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = "Azioni"
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = "Seleziona Scansione"
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = "Seleziona Scansione"
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = "Unione Scansioni creata!"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = "Unione Scansioni cancellata!"
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = "Unione Scansioni da cancellare inesistente!"
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = "Aggiungi scansione"
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = "Numero di risultati"
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = "Peso"
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = "Azioni"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = "Aggiungi Ricerca"
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = "Cambiamenti Unione Scansioni effettuati!"
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/ja/configure.ini b/src/locale/ja/configure.ini
index 294afca5e..8b40665ba 100755
--- a/src/locale/ja/configure.ini
+++ b/src/locale/ja/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/kn/configure.ini b/src/locale/kn/configure.ini
index 611e1f6bc..586367f86 100755
--- a/src/locale/kn/configure.ini
+++ b/src/locale/kn/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = "ಕ್ರಿಯೆಗಳು"
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = "ಕ್ರಿಯೆಗಳು"
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = "ಕ್ರಾವ್ಲಗಳ ಮಿಶ್ರಣ ಸೃಜಿಸಲಾಯಿತು"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = "ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಳಿಸಲಾಗಿದೆ"
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = "ಅಳಿಸಬೇಕಾದ ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇಲ್ಲ"
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = "ಕ್ರಾವ್ಲಗಳನ್ನು ಸೇರಿಸಿ"
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = "ಫಲಿತಾಂಶಗಳ ಸಂಖ್ಯೆ"
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = "ಗೌರವ"
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = "ಕ್ರಿಯೆಗಳು"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = "ಪ್ರಶ್ನೆಯನ್ನು ಸೇರಿಸು"
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = "ಕ್ರಾವ್ಲ್ ಮಿಶ್ರಣದಲ್ಲಿ ಬದಲಾವಣೆಯನ್ನು ಉಳಿಸು"
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/ko/configure.ini b/src/locale/ko/configure.ini
index d61a735e4..df1ff2699 100755
--- a/src/locale/ko/configure.ini
+++ b/src/locale/ko/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/nl/configure.ini b/src/locale/nl/configure.ini
index f23bf16c1..fa0fb5a7d 100644
--- a/src/locale/nl/configure.ini
+++ b/src/locale/nl/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = "Geen lid is of kan die groep niet lezen. Ove
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = "Geen berichten Toch"
 ;
-; SocialComponent.php line: 1435
-social_component_search = "zoeken"
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = "Geen lid is of kan die groep niet lezen. Overschakelen op openbare groep!"
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = "Geen lid is of kan die groep niet lezen. Overschakelen op openbare groep!"
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = "standaard"
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = "pagina Alias"
+; SocialComponent.php line: 1552
+social_component_back = "terug"
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = "Lijst media"
+; SocialComponent.php line: 1553
+social_component_history_page = "Historische versie van %s van %s."
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = "presentatie"
+; SocialComponent.php line: 1588
+social_component_back = "terug"
 ;
-; SocialComponent.php line: 1574
-social_component_solid = "solide"
+; SocialComponent.php line: 1589
+social_component_diff_page = " %s lijn verschillen tussen %s en %s."
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = "Binnen"
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = "Wiki pagina is bewerkt Sinds Uw versie. Laden Changed versie!"
 ;
-; SocialComponent.php line: 1576
-social_component_none = "geen"
+; SocialComponent.php line: 1611
+social_component_page_revert_to = "Terugkeren naar %s."
 ;
-; SocialComponent.php line: 1579
-social_component_actions = "acties"
+; SocialComponent.php line: 1615
+social_component_page_reverted = "Pagina bekeerd!"
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = "Fout terugzet pagina!"
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = "hoofd-"
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = "Ontbrekende velden!"
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = "Wiki pagina is bewerkt Sinds Uw versie. Laden Changed versie!"
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = " %s Wiki pagina gemaakt!"
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = "Bespreek de pagina in deze thread!"
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = "Opgeslagen!"
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = "Resource Deleted!"
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = "Resource niet verwijderd!"
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = "Resource Omgedoopt!"
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = "Bron niet Omgedoopt!"
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = "Moeten Pagina opslaan Voordat gebruik van middelen!"
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = " %s Wiki pagina gemaakt!"
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = "Bespreek de pagina in deze thread!"
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = "Resource geupload!"
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = "Upload Fout!"
 ;
-; SocialComponent.php line: 1830
-social_component_back = "terug"
+; SocialComponent.php line: 2150
+social_component_standard_page = "standaard"
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = "Historische versie van %s van %s."
+; SocialComponent.php line: 2151
+social_component_page_alias = "pagina Alias"
 ;
-; SocialComponent.php line: 1866
-social_component_back = "terug"
+; SocialComponent.php line: 2152
+social_component_media_list = "Lijst media"
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = " %s lijn verschillen tussen %s en %s."
+; SocialComponent.php line: 2153
+social_component_presentation = "presentatie"
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = "Wiki pagina is bewerkt Sinds Uw versie. Laden Changed versie!"
+; SocialComponent.php line: 2156
+social_component_solid = "solide"
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = "Terugkeren naar %s."
+; SocialComponent.php line: 2157
+social_component_dashed = "Binnen"
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = "Pagina bekeerd!"
+; SocialComponent.php line: 2158
+social_component_none = "geen"
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = "Fout terugzet pagina!"
+; SocialComponent.php line: 2161
+social_component_actions = "acties"
 ;
-; SocialComponent.php line: 2008
-social_component_main = "hoofd-"
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = "zoeken"
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = "klein"
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = "medium"
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = "groot"
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = "grootte"
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = "Kopregel:"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = "voorbeeld"
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = "tabel Titel"
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = "voorleggen"
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = "annuleren"
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = "Vette tekst"
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = "cursieve tekst"
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = "onderstreepte tekst"
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = "doorgehaalde tekst"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = "titel"
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = "Rubriek 1"
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = "Rubriek 2"
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = "Rubriek 3"
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = "Rubriek 4"
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = "Ongeordende lijst object"
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = "Bestelde item in de lijst"
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = "Plaats hier de niet-opgemaakte tekst"
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = "Voeg Search Bar Vorm"
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = "grootte"
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = "Voeg Wiki Tabel"
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = "Column Count:"
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = "Rij Count:"
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = "Hyperlink toevoegen"
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = "tekst:"
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = "URL:"
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = "Zoek plaatsaanduidingstekst"
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = "Deze tekst is gecentreerd."
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = "Deze tekst is rechts uitgelijnd."
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = "Deze tekst is links uitgelijnd."
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = "item"
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = "definitie"
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = "titel"
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = "slide Item"
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = "Resource Description voor"
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = "Selecteer Crawl"
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = "standaard Crawl"
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = "Selecteer Crawl"
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = "standaard Crawl"
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = "Crawl Mix Gemaakt!"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = "Meng Naam in Use of ongeldig!"
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = "Ongeldige Timestamp!"
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = "Crawl Mix Deleted!"
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = "Mengen om te verwijderen bestaat niet!"
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = "Meng ge&iuml;mporteerd!"
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = "Instellen Crawl om te gebruiken als Index"
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = "Fout in commentaar data!"
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = "Shared Mix heeft een ongeldige tijdstempel"
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = "Probeer deze crawl mix!"
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = " %s is het delen van de crawl mix %s!"
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = "Draad Gemaakt!"
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = "Ongeldige Timestamp!"
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = "Niet Meng de eigenaar!"
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = "Voeg Crawls"
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = "resultaten getoond"
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = "verwijderen"
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = "gewicht"
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = "naam"
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = "trefwoorden"
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = "acties"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = "Zoekopdracht toevoegen"
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = "verwijderen"
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = "Too Many Zoekresultaat Fragmenten!"
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = "Crawl Mix Wijzigingen opgeslagen!"
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = "Hernoemen mislukt!"
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = "andere naam geven"
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = "Toevoegen aan pagina"
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = "Geen middelen zijn nog naar deze pagina opgeslagen."
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = " %s Groep Wiki Pagina Lijst"
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = "Zoek groep paginatitels"
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = "gaan"
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = "Pagina aanmaken: %s"
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = "Verwijst door naar:"
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = "Deze groep heeft nog geen paginas voor de %s locale. Zoeken naar een nonexistant pagina en klik op Bewerken om het te maken."
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = "terug"
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = "verschil:"
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = "gaan"
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = "eerste"
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = "tweede"
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = "eerste"
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = "tweede"
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = "Bewerkt door %s."
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = "( %s bytes)."
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = "terugkeren"
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = "terugkeren"
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = "geschiedenis"
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = "bespreken"
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = "Locale: %s"
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = "Pagina: %s"
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = "instellingen"
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = "Pagina Type:"
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = "Alias pagina Aan:"
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = "Pagina Border:"
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = "Inhoudsopgave:"
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = "Titel:"
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = "auteur:"
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = "Meta Robots:"
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = "Meta Description:"
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = "Header Pagina Naam:"
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = "Footer Pagina Naam:"
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = "Media Lijst Pagina"
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = "De ge&iuml;ploade items hieronder alle verschijnen wanneer deze pagina wordt gelezen als een galerie of media-lijst."
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = "Bronnen pagina"
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = "Middelen zijn afbeeldingen, videos of bestanden die verband houden met deze pagina."
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/nl/statistics.txt b/src/locale/nl/statistics.txt
index ef9580859..2aacda837 100644
--- a/src/locale/nl/statistics.txt
+++ b/src/locale/nl/statistics.txt
@@ -1 +1 @@
-d:88;
\ No newline at end of file
+d:87;
\ No newline at end of file
diff --git a/src/locale/pl/configure.ini b/src/locale/pl/configure.ini
index 6c2f60195..fa2071c5d 100755
--- a/src/locale/pl/configure.ini
+++ b/src/locale/pl/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/pt/configure.ini b/src/locale/pt/configure.ini
index e2a2bfe18..573263cea 100755
--- a/src/locale/pt/configure.ini
+++ b/src/locale/pt/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/ru/configure.ini b/src/locale/ru/configure.ini
index 9fef539dc..092577722 100755
--- a/src/locale/ru/configure.ini
+++ b/src/locale/ru/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/te/configure.ini b/src/locale/te/configure.ini
index 3fa905584..aa27eb7b5 100644
--- a/src/locale/te/configure.ini
+++ b/src/locale/te/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = "సభ్యుడు కాదు లేద
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = "ఇంకా పోస్ట్లు ఏవీ లేవు"
 ;
-; SocialComponent.php line: 1435
-social_component_search = "శోధన"
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = "సభ్యుడు కాదు లేదా ఆ గ్రూప్ ని చదవలేరు.పబ్లిక్ గ్రూప్ కి మార్చండి!"
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = "సభ్యుడు కాదు లేదా ఆ గ్రూప్ ని చదవలేరు.పబ్లిక్ గ్రూప్ కి మార్చండి!"
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = "సగటు"
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = "వెనుకకు"
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = "మీడియా జాబితా"
+; SocialComponent.php line: 1553
+social_component_history_page = "చారిత్రక వెర్షన్ %s నుండి %s."
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = "వెనుకకు"
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = "%s లైన్ తేడాలు%s మరియు %s మధ్"
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = " "
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!"
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = "తిరిగి వెనుకకు %s"
 ;
-; SocialComponent.php line: 1579
-social_component_actions = "యాక్సన్ లు"
+; SocialComponent.php line: 1615
+social_component_page_reverted = "పేజీ వెనుకకు మార్చబడింది!&quot;"
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = "పేజీ వెనుకకు మార్చుటలో లోపం!"
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = "ప్రధాన"
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = "కొన్ని ఫీల్డ్స్ మిస్ అయినవి!"
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!"
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = "%s వికీ పేజ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = "ఈ థ్రెడ్ లో పేజీ గురించి చర్చించండి!"
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = "పేజ్ సేవ్ చేయబడినది!"
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = "రిసోర్స్ డిలీట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = "రిసోర్స్ డిలీట్ చేయబడలేదు!"
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = "రిసోర్స్ పేరు మార్చబడింది!"
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = "రిసోర్స్ పేరు మార్చలేదు!"
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = "రిసోర్సెస్ వాడే ముందు పేజ్ సేవ్ చేయాలి!"
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = "%s వికీ పేజ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = "ఈ థ్రెడ్ లో పేజీ గురించి చర్చించండి!"
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = "రిసోర్స్ అప్ లోడ్ అయినది!"
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = "అప్ లోడ్ పొరపాటు"
 ;
-; SocialComponent.php line: 1830
-social_component_back = "వెనుకకు"
+; SocialComponent.php line: 2150
+social_component_standard_page = "సగటు"
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = "చారిత్రక వెర్షన్ %s నుండి %s."
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = "వెనుకకు"
+; SocialComponent.php line: 2152
+social_component_media_list = "మీడియా జాబితా"
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = "%s లైన్ తేడాలు%s మరియు %s మధ్"
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!"
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = "తిరిగి వెనుకకు %s"
+; SocialComponent.php line: 2157
+social_component_dashed = " "
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = "పేజీ వెనుకకు మార్చబడింది!&quot;"
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = "పేజీ వెనుకకు మార్చుటలో లోపం!"
+; SocialComponent.php line: 2161
+social_component_actions = "యాక్సన్ లు"
 ;
-; SocialComponent.php line: 2008
-social_component_main = "ప్రధాన"
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = "శోధన"
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = "చిన్న"
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = "మధ్యస్థం"
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = "పెద్ద"
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = "పరిమాణం"
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = "శీర్షిక పంక్తి:"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = "ఉదాహరణ"
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = "టేబుల్ పేరు"
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = "మనవి చేయి"
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = "రద్దు చెయ్యి"
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = "బోల్డ్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = "ఇటాలిక్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = "అండర్ లైన్డ్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = "స్ట్రైక్డ్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = "హెడ్డింగ్"
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = "లెవెల్ 1 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = "లెవెల్ 2 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = "లెవెల్ 3 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = "లెవెల్ 4 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = "క్రమం లేని జాబితా అంశం"
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = "క్రమంలో జాబితా అంశం"
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = "ఇక్కడ ఫార్మాట్ చేయని టెక్స్ట్ ఇన్సర్ట్ చేయండి"
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = "శోధన రూపం జోడించండి"
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = "పరిమాణం"
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = "వికీ టేబుల్ ఆడ్ చెయ్యండి "
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = "కాలమ్ కౌంట్:"
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = "వరుస కౌంట్:"
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = "హైపర్ లింక్ ఆడ్ చెయ్యండి"
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = "టెక్స్ట్:"
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = "యుఆర్ఎల్:"
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = "ప్లేస్ హోల్డర్ టెక్స్ట్ శోధన"
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = "ఈ టెక్స్ట్ మధ్య సమలేఖనమైంది."
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = "ఈ టెక్స్ట్ కుడి సమలేఖనమైంది. "
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = "ఈ టెక్స్ట్ ఎడమ సమలేఖనమైంది."
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = "అంశము"
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = "నిర్వచనం"
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = "శీర్షిక"
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = "స్లయిడ్ అంశము"
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = "క్రాల్ ఎంచుకోండి"
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = "డిఫాల్ట  క్రాల్"
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = "క్రాల్ ఎంచుకోండి"
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = "డిఫాల్ట  క్రాల్"
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = "క్రాల్ మిక్స్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = "మిక్స్ పేరు వాడుక లో వుంది లేదా చెల్లదు!"
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = "టైం స్టాంప్ వేలిడ్ కాదు!"
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = "క్రాల్ మిక్స్ డిలీట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = "తొలగించవలసిన మిక్స్ లేదు!"
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = "మిక్స్ విజయవంతంగా దిగుమతి చేయబడినది!"
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = "సూచికగా ఉపయోగించడానికి క్రాల్ సెట్ చేస్తోంది  "
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = "షేర్డ్ మిక్స్ టైమ్ స్టాంప్ చెల్లదు"
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = "ఈ క్రాల్ మిక్స్ ప్రయత్నించండి!"
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = "%s పంచుకుంటున్నారు  క్రాల్ మిక్స్%sని!"
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = "థ్రెడ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = "టైం స్టాంప్ వేలిడ్ కాదు!"
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = "మిక్స్ యజమాని కాదు!"
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = "క్రాల్ లు జోడించుము"
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = "ఫలితాలను చూపించాయి"
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = "తొలగించు"
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = "బరువు"
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = "పేరు "
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = "కీ పదాలు"
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = "యాక్సన్ లు"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = "క్వెరి జోడించుము"
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = "తొలగించు"
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = "చాలా శోధన ఫలిత శకలాలు!"
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = "క్రాల్ మిక్స్ మార్పులు సేవ్ చేయబడినవి!"
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = "పేరు మార్పు విఫలమై
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = "పేరుమార్చండి"
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = "పేజీకి జోడించండి"
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = "%s గ్రూప్ వికీ పేజీ జాబితా"
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = "గ్రూప్ పేజి పేర్లను శోధించు"
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = "పేజీ సృష్టించు: %s"
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = "చరిత్ర"
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = "లొకేల్: %s"
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = "పేజ్: %s"
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = "సెట్టింగ్స్"
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = "పేజ్ టైపు:"
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = "టైటిల్:"
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = "రచయిత:"
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = "మెటా రోబోట్స్:"
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = "మెటా వివరణ:"
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = "హెడర్ పేజ్ నేమ్:"
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = "ఫుటరు పేజ్ నేమ్:"
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = "మీడియా లిస్టు పేజ్"
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = "పేజ్ రిసోర్సెస్"
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/th/configure.ini b/src/locale/th/configure.ini
index aa9b11c4d..40d7cd85a 100755
--- a/src/locale/th/configure.ini
+++ b/src/locale/th/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/tr/configure.ini b/src/locale/tr/configure.ini
index fbe374ebe..3bdf1f7b6 100755
--- a/src/locale/tr/configure.ini
+++ b/src/locale/tr/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = ""
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = ""
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/vi_VN/configure.ini b/src/locale/vi_VN/configure.ini
index 061b3650a..c5c64a552 100755
--- a/src/locale/vi_VN/configure.ini
+++ b/src/locale/vi_VN/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = "H&agrave;nh động"
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = "H&agrave;nh động"
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = "Chọn thu thập th&ocirc;ng tin"
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = "Chọn thu thập th&ocirc;ng tin"
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = "Tạo ra hỗn hợp "
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = "X&oacute;a kết hợp "
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = "Kết hợp n&agrave;y kh&ocirc;ng tồn tại"
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = "Cộng th&ecirc;m thu thập"
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = "Số kết quả"
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = "Trọng lượng"
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = "H&agrave;nh động"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = "Cộng th&ecirc;m truy vấn"
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = "Kết hợp đ&atilde; được lưu dữ"
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/locale/zh_CN/configure.ini b/src/locale/zh_CN/configure.ini
index dc32dba38..5e1bc8606 100755
--- a/src/locale/zh_CN/configure.ini
+++ b/src/locale/zh_CN/configure.ini
@@ -918,316 +918,322 @@ social_component_no_group_access = ""
 ; SocialComponent.php line: 1392
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1435
-social_component_search = ""
-;
-; SocialComponent.php line: 1540
+; SocialComponent.php line: 1486
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1543
+; SocialComponent.php line: 1489
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1568
-social_component_standard_page = ""
-;
-; SocialComponent.php line: 1569
-social_component_page_alias = ""
+; SocialComponent.php line: 1552
+social_component_back = ""
 ;
-; SocialComponent.php line: 1570
-social_component_media_list = ""
+; SocialComponent.php line: 1553
+social_component_history_page = ""
 ;
-; SocialComponent.php line: 1571
-social_component_presentation = ""
+; SocialComponent.php line: 1588
+social_component_back = ""
 ;
-; SocialComponent.php line: 1574
-social_component_solid = ""
+; SocialComponent.php line: 1589
+social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1575
-social_component_dashed = ""
+; SocialComponent.php line: 1603
+social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1576
-social_component_none = ""
+; SocialComponent.php line: 1611
+social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1579
-social_component_actions = "元素活動"
+; SocialComponent.php line: 1615
+social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1580
-social_component_new_folder = ""
+; SocialComponent.php line: 1619
+social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1581
-social_component_new_file = ""
+; SocialComponent.php line: 1732
+social_component_main = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1905
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1911
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1690
+; SocialComponent.php line: 2003
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1691
+; SocialComponent.php line: 2004
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1711
+; SocialComponent.php line: 2024
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1723
+; SocialComponent.php line: 2036
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1728
+; SocialComponent.php line: 2041
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 2057
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1750
+; SocialComponent.php line: 2062
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1760
+; SocialComponent.php line: 2072
+social_component_resource_created = ""
+;
+; SocialComponent.php line: 2077
+social_component_resource_not_created = ""
+;
+; SocialComponent.php line: 2086
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1772
+; SocialComponent.php line: 2098
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1774
+; SocialComponent.php line: 2100
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1778
+; SocialComponent.php line: 2104
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1783
+; SocialComponent.php line: 2109
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1830
-social_component_back = ""
+; SocialComponent.php line: 2150
+social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1831
-social_component_history_page = ""
+; SocialComponent.php line: 2151
+social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1866
-social_component_back = ""
+; SocialComponent.php line: 2152
+social_component_media_list = ""
 ;
-; SocialComponent.php line: 1867
-social_component_diff_page = ""
+; SocialComponent.php line: 2153
+social_component_presentation = ""
 ;
-; SocialComponent.php line: 1881
-social_component_wiki_edited_elsewhere = ""
+; SocialComponent.php line: 2156
+social_component_solid = ""
 ;
-; SocialComponent.php line: 1889
-social_component_page_revert_to = ""
+; SocialComponent.php line: 2157
+social_component_dashed = ""
 ;
-; SocialComponent.php line: 1893
-social_component_page_reverted = ""
+; SocialComponent.php line: 2158
+social_component_none = ""
 ;
-; SocialComponent.php line: 1897
-social_component_revert_error = ""
+; SocialComponent.php line: 2161
+social_component_actions = "元素活動"
 ;
-; SocialComponent.php line: 2008
-social_component_main = ""
+; SocialComponent.php line: 2162
+social_component_new_folder = ""
+;
+; SocialComponent.php line: 2163
+social_component_new_file = ""
+;
+; SocialComponent.php line: 2165
+social_component_search = ""
 ;
-; SocialComponent.php line: 2271
+; SocialComponent.php line: 2383
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2272
+; SocialComponent.php line: 2384
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2273
+; SocialComponent.php line: 2385
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2274
+; SocialComponent.php line: 2386
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2275
+; SocialComponent.php line: 2387
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2388
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2277
+; SocialComponent.php line: 2389
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2278
+; SocialComponent.php line: 2390
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2279
+; SocialComponent.php line: 2391
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2280
+; SocialComponent.php line: 2392
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2281
+; SocialComponent.php line: 2393
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2282
+; SocialComponent.php line: 2394
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2283
+; SocialComponent.php line: 2395
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2396
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2285
+; SocialComponent.php line: 2397
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2286
+; SocialComponent.php line: 2398
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2287
+; SocialComponent.php line: 2399
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2288
+; SocialComponent.php line: 2400
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2289
+; SocialComponent.php line: 2401
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2290
+; SocialComponent.php line: 2402
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2291
+; SocialComponent.php line: 2403
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2292
+; SocialComponent.php line: 2404
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2293
+; SocialComponent.php line: 2405
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2294
+; SocialComponent.php line: 2406
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2295
+; SocialComponent.php line: 2407
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2296
+; SocialComponent.php line: 2408
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2297
+; SocialComponent.php line: 2409
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2410
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2299
+; SocialComponent.php line: 2411
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2300
+; SocialComponent.php line: 2412
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2301
+; SocialComponent.php line: 2413
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2302
+; SocialComponent.php line: 2414
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2303
+; SocialComponent.php line: 2415
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2305
+; SocialComponent.php line: 2417
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2419
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2309
+; SocialComponent.php line: 2421
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2311
+; SocialComponent.php line: 2423
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2425
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2351
+; SocialComponent.php line: 2463
 social_component_select_crawl = "搜尋選擇"
 ;
-; SocialComponent.php line: 2352
+; SocialComponent.php line: 2464
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2354
+; SocialComponent.php line: 2466
 social_component_select_crawl = "搜尋選擇"
 ;
-; SocialComponent.php line: 2356
+; SocialComponent.php line: 2468
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2386
+; SocialComponent.php line: 2498
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2389
+; SocialComponent.php line: 2501
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2397
+; SocialComponent.php line: 2509
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2401
+; SocialComponent.php line: 2513
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2420
+; SocialComponent.php line: 2532
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2428
+; SocialComponent.php line: 2540
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2442
+; SocialComponent.php line: 2554
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2451
+; SocialComponent.php line: 2563
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2457
+; SocialComponent.php line: 2569
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2475
+; SocialComponent.php line: 2587
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2479
+; SocialComponent.php line: 2591
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2481
+; SocialComponent.php line: 2593
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2486
+; SocialComponent.php line: 2598
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2537
+; SocialComponent.php line: 2649
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2542
+; SocialComponent.php line: 2654
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2552
+; SocialComponent.php line: 2664
 social_component_add_crawls = "增加索引"
 ;
-; SocialComponent.php line: 2554
+; SocialComponent.php line: 2666
 social_component_num_results = "結果數量"
 ;
-; SocialComponent.php line: 2556
+; SocialComponent.php line: 2668
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2558
+; SocialComponent.php line: 2670
 social_component_weight = "元素重量"
 ;
-; SocialComponent.php line: 2559
+; SocialComponent.php line: 2671
 social_component_name = ""
 ;
-; SocialComponent.php line: 2561
+; SocialComponent.php line: 2673
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2563
+; SocialComponent.php line: 2675
 social_component_actions = "元素活動"
 ;
-; SocialComponent.php line: 2565
+; SocialComponent.php line: 2677
 social_component_add_query = "增加查詢"
 ;
-; SocialComponent.php line: 2566
+; SocialComponent.php line: 2678
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2616
+; SocialComponent.php line: 2728
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2627
+; SocialComponent.php line: 2739
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -3826,142 +3832,142 @@ wiki_element_rename_failed = ""
 ; WikiElement.php line: 588
 wiki_element_root_folder = ""
 ;
-; WikiElement.php line: 612
+; WikiElement.php line: 613
 wiki_element_name = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 628
 wiki_element_size = ""
 ;
-; WikiElement.php line: 622
+; WikiElement.php line: 631
 wiki_element_modified = ""
 ;
-; WikiElement.php line: 636
+; WikiElement.php line: 645
 wiki_element_video = ""
 ;
-; WikiElement.php line: 640
+; WikiElement.php line: 649
 wiki_element_audio = ""
 ;
-; WikiElement.php line: 695
+; WikiElement.php line: 704
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 701
+; WikiElement.php line: 710
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 744
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 757
+; WikiElement.php line: 766
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 770
+; WikiElement.php line: 779
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 772
+; WikiElement.php line: 781
 wiki_element_go = ""
 ;
-; WikiElement.php line: 777
+; WikiElement.php line: 786
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 788
+; WikiElement.php line: 797
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 810
+; WikiElement.php line: 819
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 834
+; WikiElement.php line: 843
 wiki_view_back = ""
 ;
-; WikiElement.php line: 850
+; WikiElement.php line: 859
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 856
+; WikiElement.php line: 865
 wiki_view_go = ""
 ;
-; WikiElement.php line: 875
+; WikiElement.php line: 884
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 877
+; WikiElement.php line: 886
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 881
+; WikiElement.php line: 890
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 882
+; WikiElement.php line: 891
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 888
+; WikiElement.php line: 897
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 892
+; WikiElement.php line: 901
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 895
+; WikiElement.php line: 904
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 898
+; WikiElement.php line: 907
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 944
+; WikiElement.php line: 953
 wiki_element_history = ""
 ;
-; WikiElement.php line: 948
+; WikiElement.php line: 957
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 982
+; WikiElement.php line: 991
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 986
+; WikiElement.php line: 995
 wiki_element_page = ""
 ;
-; WikiElement.php line: 989
+; WikiElement.php line: 998
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 993
+; WikiElement.php line: 1002
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 1002
+; WikiElement.php line: 1011
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 1010
+; WikiElement.php line: 1019
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 1018
+; WikiElement.php line: 1027
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 1027
+; WikiElement.php line: 1036
 wiki_element_title = ""
 ;
-; WikiElement.php line: 1034
+; WikiElement.php line: 1043
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 1041
+; WikiElement.php line: 1050
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 1049
+; WikiElement.php line: 1058
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 1059
+; WikiElement.php line: 1068
 wiki_element_alternative_path = ""
 ;
-; WikiElement.php line: 1061
+; WikiElement.php line: 1070
 wiki_element_empty_use_default = ""
 ;
-; WikiElement.php line: 1071
+; WikiElement.php line: 1080
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 1078
+; WikiElement.php line: 1087
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 1093
+; WikiElement.php line: 1102
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 1094
+; WikiElement.php line: 1103
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 1097
+; WikiElement.php line: 1106
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 1098
+; WikiElement.php line: 1107
 wiki_element_resources_info = ""
 ;
 ; GroupView.php line: 82
diff --git a/src/models/GroupModel.php b/src/models/GroupModel.php
index cf3ef8dc4..c760da1cd 100644
--- a/src/models/GroupModel.php
+++ b/src/models/GroupModel.php
@@ -1390,7 +1390,7 @@ class GroupModel extends Model implements MediaConstants
         $file_name = "$folder/$resource_name";
         $thumb_name = "$thumb_folder/$resource_name.jpg";
         if (file_exists($file_name)) {
-            unlink($file_name);
+            $this->db->unlinkRecursive($file_name, true);
         }
         if (file_exists($thumb_name)) {
             unlink($thumb_name);
@@ -1423,6 +1423,41 @@ class GroupModel extends Model implements MediaConstants
         }
         return true;
     }
+    /**
+     * Create a new resource in the given group and page's
+     * resource folder/sub_path of the type requests.
+     *
+     * @param string $resource_type either new-file or new-folder
+     * @param int $group_id group identifier of group wiki page belongs to
+     * @param int $page_id identifier for page want to delete resource from
+     * @param string $sub_path path to a subfolder of default resource folder
+     *      if desired
+     * @return bool whether the deletion was successful
+     */
+    public function newResource($resource_type, $group_id, $page_id,
+        $sub_path = "")
+    {
+        $folders = $this->getGroupPageResourcesFolders($group_id,
+            $page_id, $sub_path);
+        if (!$folders) {
+            return false;
+        }
+        list($folder, $thumb_folder) = $folders;
+        if (!file_exists($folder)) {
+            return false;
+        }
+        $i = 0;
+        $base_name = ($resource_type == 'new-file') ? "untitled%d.txt" :
+            "untitled_folder%d";
+        do {
+            $file_name = sprintf($folder."/".$base_name, $i);
+            $i++;
+        } while (file_exists($file_name));
+        if ($resource_type == 'new-file') {
+            return file_put_contents($file_name, "");
+        }
+        return mkdir($file_name);
+    }
     /**
      * Renames a resource (image, video, etc) associated with a wiki page
      * belonging to a group.
@@ -1543,7 +1578,11 @@ class GroupModel extends Model implements MediaConstants
             $file_string = file_get_contents("$folder/$file_name");
             $image = @imagecreatefromstring($file_string);
             if (function_exists("exif_read_data")) {
-                $exif = @exif_read_data("$folder/$file_name");
+                try {
+                    $exif = exif_read_data("$folder/$file_name");
+                } catch(Exception $e) {
+                    $exif = null;
+                }
                 if(!empty($exif['Orientation'])) {
                     switch($exif['Orientation']) {
                         case 8:
diff --git a/src/views/elements/WikiElement.php b/src/views/elements/WikiElement.php
index 622e5ee33..46e0ff03c 100644
--- a/src/views/elements/WikiElement.php
+++ b/src/views/elements/WikiElement.php
@@ -609,12 +609,21 @@ class WikiElement extends Element implements CrawlConstants
             if (count($data['RESOURCES_INFO']['resources']) > 0) {
                 e('<table >');
                 if (!$read_mode) {
-                    e("<tr><th></th><th><a href='$folder_prefix&amp;sort=name'".
-                        ">".tl('wiki_element_name').'</a></th>'.
-                        '<th colspan="2">');
+                    ?><tr><th></th><th><a href='<?=
+                        $folder_prefix?>&amp;sort=name'><?=
+                        tl('wiki_element_name')
+                    ?></a></th><th colspan="2"><form>
+                    <input type="hidden" name='<?=C\CSRF_TOKEN?>'
+                        value='<?=$data[C\CSRF_TOKEN]?>' />
+                    <input type="hidden" name='arg' value='edit' />
+                    <input type="hidden" name='a' value='wiki' />
+                    <input type="hidden" name='page_name'
+                        value='<?=$data['PAGE_NAME']?>' />
+                    <?php
                     $this->view->helper("options")->render("resource-actions",
                         "resource_actions", $data['resource_actions'],
                         'actions', true);
+                    ?></form><?php
                     if (!C\MOBILE) {
                         e("</th><th><a href='$folder_prefix&amp;sort=size'>".
                             tl('wiki_element_size').'</a></th>');
@@ -719,9 +728,9 @@ class WikiElement extends Element implements CrawlConstants
                             e("<td></td>");
                         }
                         if (!C\MOBILE) {
-                            e("<td>".L\intToMetric($resource['size']).
+                            e("<td>" . L\intToMetric($resource['size']) .
                                 "B</td>");
-                            e("<td>".date("r", $resource['modified']).
+                            e("<td>" . date("r", $resource['modified']) .
                                 "</td>");
                         }
                     }
ViewGit