First pass at adding support for resources to feeds, a=chris

Chris Pollett [2015-01-02 18:Jan:nd]
First pass at adding support for resources to feeds, a=chris
Filename
controllers/components/social_component.php
controllers/resource_controller.php
locale/ar/configure.ini
locale/bn/configure.ini
locale/de/configure.ini
locale/en-US/configure.ini
locale/es/configure.ini
locale/fa/configure.ini
locale/fr-FR/configure.ini
locale/he/configure.ini
locale/hi/configure.ini
locale/in-ID/configure.ini
locale/it/configure.ini
locale/ja/configure.ini
locale/kn/configure.ini
locale/ko/configure.ini
locale/pl/configure.ini
locale/pt/configure.ini
locale/ru/configure.ini
locale/te/configure.ini
locale/th/configure.ini
locale/tr/configure.ini
locale/vi-VN/configure.ini
locale/zh-CN/configure.ini
scripts/basic.js
views/helpers/fileupload_helper.php
diff --git a/controllers/components/social_component.php b/controllers/components/social_component.php
index 8b84dbf07..2d109dd56 100644
--- a/controllers/components/social_component.php
+++ b/controllers/components/social_component.php
@@ -46,6 +46,21 @@ require_once BASE_DIR."/lib/mail_server.php";
  */
 class SocialComponent extends Component implements CrawlConstants
 {
+    /**
+     *  Constant for when attempt to handle file uploads and no files were
+     *  uploaded
+     */
+    const UPLOAD_NO_FILES = -1;
+    /**
+     *  Constant for when attempt to handle file uploads and not all of the
+     *  file upload information was present
+     */
+    const UPLOAD_FAILED = 0;
+    /**
+     *  Constant for when attempt to handle file uploads and file were
+     *  successfully uploaded
+     */
+    const UPLOAD_SUCCESS = 1;
     /**
      * Used to handle the manage group activity.
      *
@@ -785,6 +800,12 @@ class SocialComponent extends Component implements CrawlConstants
                     $title = "-- ".$parent_item['TITLE'];
                     $id = $group_model->addGroupItem($parent_item["ID"],
                         $group_id, $user_id, $title, $description);
+                    $result = $this->handleResourceUploads(
+                            $group_id, "thread".$id);
+                    if($result == self::UPLOAD_FAILED) {
+                        $parent->redirectWithMessage(
+                            tl('social_component_upload_error'));
+                    }
                     $followers = $group_model->getThreadFollowers(
                         $parent_item["ID"], $group['OWNER_ID'], $user_id);
                     $server = new MailServer(MAIL_SENDER, MAIL_SERVER,
@@ -899,6 +920,12 @@ class SocialComponent extends Component implements CrawlConstants
                     }
                     $thread_id = $group_model->addGroupItem(0,
                         $group_id, $user_id, $title, $description);
+                    $result = $this->handleResourceUploads(
+                            $group_id, "thread".$thread_id);
+                    if($result == self::UPLOAD_FAILED) {
+                        $parent->redirectWithMessage(
+                            tl('social_component_upload_error'));
+                    }
                     if($user_id != $group['OWNER_ID']) {
                         $server = new MailServer(MAIL_SENDER, MAIL_SERVER,
                             MAIL_SERVERPORT, MAIL_USERNAME, MAIL_PASSWORD,
@@ -967,6 +994,12 @@ class SocialComponent extends Component implements CrawlConstants
                     }
                     $group_model->updateGroupItem($post_id, $title,
                         $description);
+                    $result = $this->handleResourceUploads(
+                        $group_id, "thread".$post_id);
+                    if($result == self::UPLOAD_FAILED) {
+                        $parent->redirectWithMessage(
+                            tl('social_component_upload_error'));
+                    }
                     $parent->redirectWithMessage(
                         tl('social_component_post_updated'));
                 break;
@@ -1115,7 +1148,8 @@ class SocialComponent extends Component implements CrawlConstants
             //end code for sharing crawl mixes
             $page[self::DESCRIPTION] = $parser->parse($description);
             $page[self::DESCRIPTION] =
-                $group_model->insertResourcesParsePage($item['GROUP_ID'], -1,
+                $group_model->insertResourcesParsePage($item['GROUP_ID'],
+                 "thread".$item['ID'],
                 $locale_tag, $page[self::DESCRIPTION]);
             if(!$math && strpos($page[self::DESCRIPTION], "`") !== false) {
                 $math = true;
@@ -1194,6 +1228,65 @@ class SocialComponent extends Component implements CrawlConstants
         $this->initializeWikiEditor($data, -1);
         return $data;
     }
+    /**
+     *
+     *
+     */
+    function handleResourceUploads($group_id, $store_id)
+    {
+        if(!isset($_FILES) || !is_array($_FILES)) {
+            return self::UPLOAD_NO_FILES;
+        }
+        $keys = array_keys($_FILES);
+        if(!isset($keys[0])) {
+            return self::UPLOAD_NO_FILES;
+        }
+        $upload_field = $keys[0];
+        $parent = $this->parent;
+        $group_model = $parent->model("group");
+        if(!isset($_FILES[$upload_field]['name'])) {
+            return self::UPLOAD_NO_FILES;
+        }
+        $upload_parts = array('name', 'type', 'tmp_name');
+        $is_file_array = false;
+        $num_files = 1;
+        if(is_array($_FILES[$upload_field]['name'])) {
+            $num_files =
+                count($_FILES[$upload_field]['name']);
+            $is_file_array = true;
+        }
+        $files = array();
+        $upload_okay = true;
+        for($i = 0; $i < $num_files; $i ++) {
+            foreach($upload_parts as $part) {
+                $file_part = ($is_file_array && isset(
+                    $_FILES[$upload_field][$part][$i])) ?
+                    $_FILES[$upload_field][$part][$i] :
+                    ((!$is_file_array && isset(
+                    $_FILES[$upload_field][$part])) ?
+                    $_FILES[$upload_field][$part] :
+                    false );
+                if($file_part) {
+                    $files[$i][$part] = $parent->clean(
+                        $file_part, 'string');
+                } else {
+                    $upload_okay = false;
+                    break 2;
+                }
+            }
+        }
+        if($upload_okay) {
+            foreach($files as $file) {
+                $group_model->copyFileToGroupPageResource(
+                    $file['tmp_name'], $file['name'],
+                    $file['type'], $group_id, $store_id);
+            }
+        }
+        if(!$upload_okay) {
+            return self::UPLOAD_FAILED;
+        }
+        return self::UPLOAD_SUCCESS;
+    }
     /**
      * Used to set up GroupfeedView to draw a users group feeds grouped
      * by group names as opposed to as a linear list of thread and post
@@ -1550,42 +1643,10 @@ EOD;
                                 tl('social_component_resource_save_first'),
                                 array('arg', 'page_name', 'settings',
                                 'caret', 'scroll_top'));
-                        } else {
-                            $upload_parts = array('name', 'type', 'tmp_name');
-                            $is_file_array = false;
-                            $num_files = 1;
-                            if(is_array($_FILES['page_resource']['name'])) {
-                                $num_files =
-                                    count($_FILES['page_resource']['name']);
-                                $is_file_array = true;
-                            }
-                            $files = array();
-                            $upload_okay = true;
-                            for($i = 0; $i < $num_files; $i ++) {
-                                foreach($upload_parts as $part) {
-                                    $file_part = ($is_file_array && isset(
-                                        $_FILES['page_resource'][$part][$i])) ?
-                                        $_FILES['page_resource'][$part][$i] :
-                                        ((!$is_file_array && isset(
-                                        $_FILES['page_resource'][$part])) ?
-                                        $_FILES['page_resource'][$part] :
-                                        false );
-                                    if($file_part) {
-                                        $files[$i][$part] = $parent->clean(
-                                            $file_part, 'string');
-                                    } else {
-                                        $upload_okay = false;
-                                        break 2;
-                                    }
-                                }
-                            }
                         }
-                        if($upload_okay) {
-                            foreach($files as $file) {
-                                $group_model->copyFileToGroupPageResource(
-                                    $file['tmp_name'], $file['name'],
-                                    $file['type'], $group_id, $page_info['ID']);
-                            }
+                        $result = $this->handleResourceUploads(
+                            $group_id, $page_info['ID']);
+                        if($result == self::UPLOAD_SUCCESS) {
                             $parent->redirectWithMessage(
                                 tl('social_component_resource_uploaded'),
                                 array('arg', 'page_name', 'settings',
diff --git a/controllers/resource_controller.php b/controllers/resource_controller.php
index e7996d227..6929e902f 100644
--- a/controllers/resource_controller.php
+++ b/controllers/resource_controller.php
@@ -157,7 +157,7 @@ class ResourceController extends Controller implements CrawlConstants
             $user_id = isset($_SESSION['USER_ID']) ? $_SESSION['USER_ID'] :
                 PUBLIC_USER_ID;
             if(isset($_REQUEST['p'])) {
-                $page_id = $this->clean($_REQUEST['p'], 'int');
+                $page_id = $this->clean($_REQUEST['p'], 'string');
             }
             $group_id = $this->clean($_REQUEST['g'], "int");
             $group_model = $this->model('group');
diff --git a/locale/ar/configure.ini b/locale/ar/configure.ini
index 22662f67a..7a0030698 100755
--- a/locale/ar/configure.ini
+++ b/locale/ar/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = "حدد تتبع الارتباطات"
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = "تتبع الارتباطات الافتراضية"
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = "حدد تتبع الارتباطات"
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = "تتبع الارتباطات الافتراضية"
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = "الزحف ميكس إنشاؤها!"
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = "الزحف ميكس حذف!"
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = "ميكسحذف لاتوجد لا!"
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = "إضافة عمليات تتبع الارتباطات"
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = "عدد من النتائج"
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = "الوزن"
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = "إجراءات"
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = "إضافة استعلام"
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = "الزحف ميكس التغييرات المحفوظة!"
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "تسجيل الخروج الناجحة!!"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = "استخدام مزيج الزحف:  %s"
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = "ويب الوثيقة: %s. الحجم: %s صفحات وعناوين URL %s"
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = "البحث"
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = "لا يوجد مؤشر مجموعة البحث للاستخدام!"
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = "لا يوجد مؤشر مجموعة البحث للاستخدام!"
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = "موقع على شبكة الإنترنت قد طلبت هذه الصفحة لم تتم أرشفة."
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = "هذه الصورة التي ظهرت على الصفحة:"
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = "عنوان المستخرجة"
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = "وصف استخراج"
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = "الروابط المستخرجة"
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = "استخراج يسمح لمسارات تتبع الارتباطات"
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = "استخراج غير مسموح لمسارات تتبع الارتباطات"
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = "تأخير الزحف ييوببوت"
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = "يوب ذاكرة التخزين المؤقت الصفحة... هذه الصفحة قد تم تعديل لإضافة توجيه الروبوتات، وجعل ارتباطات مطلقة، إضافة ملخصات المستخرجة، وتسليط الضوء على مصطلحات الاستعلام."
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = "تم الحصول على هذه النسخة المخزنة مؤقتاً من  %s الزاحف يوب على  %s."
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/bn/configure.ini b/locale/bn/configure.ini
index 1b4b6530a..423fb75d6 100755
--- a/locale/bn/configure.ini
+++ b/locale/bn/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = ""
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/de/configure.ini b/locale/de/configure.ini
index b4f23bd30..d929660a8 100755
--- a/locale/de/configure.ini
+++ b/locale/de/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = ""
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/en-US/configure.ini b/locale/en-US/configure.ini
index 25fd82993..3736920f7 100755
--- a/locale/en-US/configure.ini
+++ b/locale/en-US/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = "Subsearch Updated!"
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = "Media Source Updated!"
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = "Request Join"
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = "Invited"
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = "Active"
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = "Banned"
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = "No One"
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = "By Request"
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = "Public Request"
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = "Anyone"
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = "No Read"
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = "Read"
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = "Read Comment"
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = "Read Write"
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = "Read Write Wiki"
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = "No Voting"
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = "+ Voting"
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = "+/- Voting"
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = "Never Expires"
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = "One Hour"
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = "One Day"
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = "One Month"
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = "User activated!"
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = "User was not activated!"
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = "Group Joined!"
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = "Group name unavailable!"
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = "Group name available!"
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = "User banned!"
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = "User was not banned!"
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = "Owner Changed!"
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = "User not in group!"
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = "Username does not exist!"
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = "Group Name Exists"
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = "Group Name Added"
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = "Group Name does not exists"
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = "Group Deleted"
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = "Cannot Delete Group"
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = "User Deleted"
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = "Cannot Delete User from Group."
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = "Users Invited!"
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = "No Users Invited!!"
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = "Group Joined!"
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = "Could not Unsubscribe!"
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = "User reinstated!"
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = "User was not reinstated!"
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = "Request Join"
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = "Invited"
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = "Banned"
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = "Successfully Unsubscribed!"
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = "Could not Unsubscribe!"
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = "Group joined!"
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = "Join Group Request Made!"
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = "Yioop Group %s Activation Request"
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = "The user %s has requested to join group %s. The link below can be used to manage this user."
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = "Best regards,"
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = "Yioop Software"
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = "Insufficient Access!"
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = "Group updated!"
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = "Attempt to change access to unknown value!"
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = "Filtering Users!"
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = "Error in comment data!"
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = "Cannot post blank comment!"
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = "%s joined %s!"
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = "On %s, you joined the group  %s."
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = "New Post to Thread: %s"
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = "We thought you would be interested in a new post to the thread:"
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = "Best regards,"
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = "Yioop Software"
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = "Dear %s,"
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = "Comment Added!"
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = "Cannot add selected group!"
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = "Error Deleting Item"
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = "Item Deleted!"
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = "No Item Deleted!"
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = "Voting Error!"
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = "No vote access to that post! "
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = "Already Voted!"
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = "Vote Recorded!"
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = "Error in comment data!"
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = "Need both title and description!"
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = "New Thread in Group %s"
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = "As the owner of %s we thought you would like to know of the following thread recently created in your group:"
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = "Best regards,"
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = "Yioop Software"
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = "Dear %s,"
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = "Thread Created!"
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = "Error in comment data!"
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = "Need both title and description!"
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = "Post was just edited elsewhere (another tab?)"
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = "Cannot Update Post!"
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = "Cannot Update Post!"
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = "Post Updated!"
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = "Voting Error!"
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = "No vote access to that post! "
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = "Already Voted!"
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = "Vote Recorded!"
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = "%s joined %s!"
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = "On %s, you joined the group  %s."
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = "No Posts Yet"
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = "Search"
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = "Not a member or can&#039;t read that group. Switching to public group!"
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = "Not a member or can&#039;t read that group. Switching to public group!"
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = "Standard"
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = "Page Alias"
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = "Media List"
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = "Presentation"
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = "Solid"
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = "Dashed"
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = "None"
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = "Missing Fields!"
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = "%s Wiki Page Created!"
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = "Discuss the page in this thread!"
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = "Page Saved!"
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = "Resource Deleted!"
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = "Resource Not Deleted! "
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = "Resource Renamed!"
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = "Resource not Renamed!"
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = "Need to Save Page Before Using Resources!"
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = "Resource Uploaded!"
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = "Upload Error!"
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = "Back"
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = "Historical Version of %s from %s."
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = "Back"
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = "%s line differences between %s and %s."
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = "Revert to %s."
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = "Page Reverted!"
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = "Error Reverting Page!"
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = "Main"
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = "Small"
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = "Medium"
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = "Large"
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = "Size"
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = "Header row:"
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = "Example"
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = "Table Title"
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = "Submit"
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = "Cancel"
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = "Bold text"
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = "Italic text"
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = "Underlined text"
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = "Striked text"
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = "Heading"
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = "Level 1 Heading"
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = "Level 2 Heading"
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = "Level 3 Heading"
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = "Level 4 Heading"
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = "Unordered list item"
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = "Ordered list item"
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = "Insert non-formatted text here"
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = "Add Search Bar Form"
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = "Size"
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = "Add Wiki Table"
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = "Column Count:"
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = "Row Count:"
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = "Add Hyperlink"
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = "Text:"
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = "URL:"
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = "Search Placeholder Text"
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = "This text is centered."
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = "This text is right-aligned."
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = "This text is left-aligned."
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = "Item"
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = "Definition"
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = "Title"
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = "Slide Item"
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = "Resource Description for "
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = "Select Crawl"
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = "Default Crawl"
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = "Select Crawl"
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = "Default Crawl"
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = "Crawl Mix Created!"
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = "Mix Name in Use or Invalid!"
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = "Invalid Timestamp!"
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = "Crawl Mix Deleted!"
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = "Mix to Delete Does not Exist!"
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = "Mix Successfully Imported!"
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = "Setting Crawl To Use as Index"
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = "Error in comment data!"
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = "Shared Mix Has An Invalid Timestamp"
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = "Try out this crawl mix!"
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = "%s is sharing the crawl mix %s!"
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = "Thread Created!"
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = "Invalid Timestamp!"
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = "Not Mix Owner!"
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = "Add Crawls"
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = "Results Shown"
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = "Remove"
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = "Weight"
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = "Name"
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = "Keywords"
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = "Actions"
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = "Add Query"
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = "Delete"
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = "Too Many Search Result Fragments!"
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = "Crawl Mix Changes Saved!"
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = "Check Email Address!"
 ; register_controller.php line: 1077
 register_controller_user_already_exists = "Account not created - Username already in use!!"
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = "Web"
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "Logout Successful!!"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = "Using Crawl Mix: %s"
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = "Index: %s -- Size: %s pages/%s urls"
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = "Search"
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = "No Search Index Set For Use!"
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = "No Search Index Set For Use!"
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = "Download Fetcher: %s"
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = "The website in question has requested this page not be archived."
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = "Yioop Cache"
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = "This image appeared on the page:"
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = "Extracted Title"
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = "Extracted Description"
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = "Extracted Links"
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = "Extracted Allowed To Crawl Paths"
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = "Extracted Disallowed To Crawl Paths"
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = "YioopBot Crawl Delay"
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = "Yioop Cache Page... This page has been modified to add a robots directive,  make links absolute, add extracted summaries, and to highlight query terms."
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = "Yioop Cache"
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = "This cached version of %s was obtained by the Yioop crawler on %s."
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = "Download Fetcher: %s"
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = "Toggle Extracted Headers and Summaries"
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = "Toggle History"
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = "All Cached Versions - Change Year and/or Months to see Links"
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = "Year:"
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = "Month:"
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = "Last Post:"
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = "Comment"
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = "Drag items into the textarea to add them..."
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = "or click to select them."
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = "Add a Comment"
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = "Save"
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = "Subject"
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = "Post"
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = "Save"
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = "Edit Post"
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = "Subject"
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = "Post"
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = "Save"
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = "Group Feeds No Longer Updating!"
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = "The uploaded items below will all appear when thi
 ; wiki_element.php line: 449
 wiki_view_page_resources = "Page Resources"
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = "Resources are images, videos, or files associated with this page."
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = "Upload"
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = "Resources are images, videos, or files associated with this page."
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = "Rename Failed!"
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = "Rename"
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = "Add to Page"
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = "No resources have been saved to this page yet."
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = "%s Group Wiki Page List"
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = "Search group page titles"
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = "Go"
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = "Create Page: %s"
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = "Redirects to:"
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 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."
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = "Back"
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = "Difference:"
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = "Go"
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = "First"
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = "Second"
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = "First"
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = "Second"
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = "Edited by %s. "
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = "(%s bytes)."
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = "Revert"
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = "Revert"
 ;
 ; group_view.php line: 80
diff --git a/locale/es/configure.ini b/locale/es/configure.ini
index 32bd9a9b8..dcd0cb7b7 100755
--- a/locale/es/configure.ini
+++ b/locale/es/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = "Seleccionar Rastreo"
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = "Seleccionar Rastreo"
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = "Rastreo Mix creado!"
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = "Rastreo Mix eliminado!"
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = "Mix para eliminar (borrar) no existe!"
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = "A&ntilde;adir Rastreos"
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = "N&uacute;mero de Resultados"
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = "Tama&ntilde;o"
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = "Acciones"
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = "Agregar consulta"
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = "Guardados los Cambios del Rastreo Mix!"
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "Se ha cerrado la sesi&oacute;n con &eacute;xito!!"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = "Usando Rastreo Mix: %s"
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = "Usando &Iacute;ndice: %s -- Size: %s pages/%s urls"
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = "No se dispone de &iacute;ndice de b&uacute;squeda para su uso!"
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = "No se dispone de &iacute;ndice de b&uacute;squeda para su uso!"
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = "T&iacute;tulo extra&iacute;do"
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = "Descripci&oacute;n Extra&iacute;da"
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = "Enlaces (links) extra&iacute;dos"
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = "Rutas permitidas extra&iacute;das para ser rastreadas"
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = "Rutas No permitidas extra&iacute;das para no ser rastreadas"
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = "Rastreo Retrasado de YioopBot"
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = "P&aacute;gina de cache Yioop ... Esta p&aacute;gina ha sido modificada para a&ntilde;adir una directiva robots, hacer enlaces absolutos, a&ntilde;adir res&uacute;menes extra&iacute;dos, y para resaltar los t&eacute;rminos de la consulta."
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = "Esta versi&oacute;n en cach&eacute; de %s se obtuvo mediante el rastreador Yioop en %s."
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/fa/configure.ini b/locale/fa/configure.ini
index 68ce1c2a8..58f3a39b4 100755
--- a/locale/fa/configure.ini
+++ b/locale/fa/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = "یک خزش انتخاب کنید"
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = "خزش پیش&zwnj;فرض"
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = "یک خزش انتخاب کنید"
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = "خزش پیش&zwnj;فرض"
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = "ترکیب خزش ساخته شد!"
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = "ترکیب خزش حذف شد!"
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = "ترکیبی که می&zwnj;خواهید حذف کنید وجود ندارد!"
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = "خزش اضافه کن"
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = "تعداد نتایج"
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = "وزن"
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = "فرمان&zwnj;ها"
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = "پُرسمان اضافه کن"
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = "تغییرات ترکیب خزش ذخیره شد!"
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "با موفقیت خارج شدید!!"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = "با استفاده از ترکیب خزش: %s"
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = "نمایه: %s -- اندازه: %s صفحات/%s urls"
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = "بگرد"
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = "هیچ نمایهٔ جستجویی برای استفاده تنظیم نشده است!"
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = "هیچ نمایهٔ جستجویی برای استفاده تنظیم نشده است!"
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = "وب&zwnj;سایت مورد نظر نمی&zwnj;خواهد این صفحه بایگانی شود."
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = "این تصویر در صفحهٔ زیر دیده شده است: "
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = "عنوان استخراج شده"
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = "توضیح استخراج شده"
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = "لینک&zwnj;های استخراج شده"
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = "مسیرهای مجاز به خزش استخراج شده"
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = "مسیرهای غیرمجاز به خزش استخراج شده"
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = "تاخیر در خزش YioopBot"
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = "صفحه کش Yioop ... این صفحه برای اضافه کردن دستورالعمل ربات، ایجاد لینک های مطلق، اضافه کردن خلاصه&zwnj;های استخراج شده، و برجسته سازی کلمات مورد پرسمان اصلاح شده است."
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = "این نسخه کش شدهٔ ‪%‬s را خزندهٔ Yioop در ‪%‬s به دست آورده است."
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = " وضعیت سرصفحه استخراج شده و خلاصه را عوض کن"
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = "وضعیت تاریخچه را عوض کن"
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = "همه نسخه های کش شده - سال و/یا ماه را برای دیدن لینک&zwnj;ها تغییر دهید"
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = "سال:"
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = "ماه:"
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/fr-FR/configure.ini b/locale/fr-FR/configure.ini
index 7a7e0ea08..b1650c512 100755
--- a/locale/fr-FR/configure.ini
+++ b/locale/fr-FR/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = ""
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = "L&#039;index: %s -- Taille: %s pages / %s urls"
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = "Afficher les r&eacute;sultats pour "
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = "Ann&eacute;e:"
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = "Mois:"
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/he/configure.ini b/locale/he/configure.ini
index 983cc02f4..e63609f01 100755
--- a/locale/he/configure.ini
+++ b/locale/he/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "התנתקות הצליחה"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/hi/configure.ini b/locale/hi/configure.ini
index 3fa8d4017..11539d453 100755
--- a/locale/hi/configure.ini
+++ b/locale/hi/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "लॉग आउट सफल"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = "क्रॉल जानकारी "
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/in-ID/configure.ini b/locale/in-ID/configure.ini
index a719097b8..a9eefe35a 100755
--- a/locale/in-ID/configure.ini
+++ b/locale/in-ID/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "Logout berhasil"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/it/configure.ini b/locale/it/configure.ini
index 687b2dc02..d77724f78 100755
--- a/locale/it/configure.ini
+++ b/locale/it/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = "Seleziona Scansione"
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = "Seleziona Scansione"
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = "Unione Scansioni creata!"
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = "Unione Scansioni cancellata!"
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = "Unione Scansioni da cancellare inesistente!"
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = "Aggiungi scansione"
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = "Numero di risultati"
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = "Peso"
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = "Azioni"
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = "Aggiungi Ricerca"
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = "Cambiamenti Unione Scansioni effettuati!"
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "Accesso eseguito!!"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = "Unione Scansioni in uso: %s"
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = "Indice in uso: %s -- Dimensioni: %s pagine/%s URL"
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = "Nessun Indice in uso!"
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = "Nessun Indice in uso!"
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = "Titolo estratto"
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = "Descrizione estratta"
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = "Link estratti"
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = "Percorsi scansionabili ammessi estratti"
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = "Percorsi scansionabili non ammessi estratti"
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = "Ritardo Scansione YioopBot"
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = "Pagina archiviata Yioop... Questa pagina &egrave; stata modificata per aggiungere una direttiva al Robot, creare link assoluti, aggiungere sommari estratti, e evidenziari termini di ricerca."
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = "Questa versione archiviata di %s &egrave; stata ottenuta dal Crawler di Yioop il %s."
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/ja/configure.ini b/locale/ja/configure.ini
index d7d497f58..1ef5ef9ba 100755
--- a/locale/ja/configure.ini
+++ b/locale/ja/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "ログアウト成功"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = "%sのこのキャッシュされたバージョンは%sのウィオップから入手しました。"
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/kn/configure.ini b/locale/kn/configure.ini
index 4edc1dd43..768297bff 100755
--- a/locale/kn/configure.ini
+++ b/locale/kn/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = "ಕ್ರಾವ್ಲಗಳ ಮಿಶ್ರಣ ಸೃಜಿಸಲಾಯಿತು"
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = "ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಳಿಸಲಾಗಿದೆ"
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = "ಅಳಿಸಬೇಕಾದ ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇಲ್ಲ"
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = "ಕ್ರಾವ್ಲಗಳನ್ನು ಸೇರಿಸಿ"
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = "ಫಲಿತಾಂಶಗಳ ಸಂಖ್ಯೆ"
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = "ಗೌರವ"
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = "ಕ್ರಿಯೆಗಳು"
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = "ಪ್ರಶ್ನೆಯನ್ನು ಸೇರಿಸು"
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = "ಕ್ರಾವ್ಲ್ ಮಿಶ್ರಣದಲ್ಲಿ ಬದಲಾವಣೆಯನ್ನು ಉಳಿಸು"
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = ""
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/ko/configure.ini b/locale/ko/configure.ini
index 1b4bd3b8f..617e5e670 100755
--- a/locale/ko/configure.ini
+++ b/locale/ko/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "로그 아웃 성공!!"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = "현재 캐시 버젼 %s 은 Yioop 크롤 %s 에 의하여 얻어 졌습니다. "
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/pl/configure.ini b/locale/pl/configure.ini
index ad9030e45..d102a5955 100755
--- a/locale/pl/configure.ini
+++ b/locale/pl/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = ""
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/pt/configure.ini b/locale/pt/configure.ini
index 5bf7b7cd7..a024e878a 100755
--- a/locale/pt/configure.ini
+++ b/locale/pt/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = ""
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/ru/configure.ini b/locale/ru/configure.ini
index d262c30dc..d1784d3b0 100755
--- a/locale/ru/configure.ini
+++ b/locale/ru/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = ""
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/te/configure.ini b/locale/te/configure.ini
index a002bb0d1..60312d3b5 100644
--- a/locale/te/configure.ini
+++ b/locale/te/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = "సబ్ సెర్చ్ అప్డ
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = "మీడియా సోర్సు అప్డేట్ చేయడమైనది!"
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = "చేరడానికి అభ్యర్థన"
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = "ఆహ్వానించబడ్డారు"
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = "ఆక్టివ్ "
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = "నిషేధించబడినది "
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = "ఎవరూ లేరు"
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = "అభ్యర్థన ద్వారా"
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = "బహిరంగ అభ్యర్థన"
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = "ఎవరైనా"
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = "చదవలేరు "
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = "చదవండి"
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = "వ్యాఖ్యను చదవండి "
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = "చదవండి వ్రాయండి"
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = "రీడ్ రైట్ వికీ"
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = "నో వోటింగ్"
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = "+ వోటింగ్"
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = "+/- వోటింగ్"
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = "గడువు ఎప్పటికీ ముగియదు"
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = "ఒక గంట"
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = "ఒక రోజు"
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = "ఒక నెల"
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = "యూజర్ యాక్టివేట్ చేయబడినది! "
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = "యూజర్ యాక్టివేట్ చేసిలేదు!"
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = "గ్రూప్ లో చేరారు!"
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = "గ్రూప్ పేరు అందుబాటులో లేదు!"
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = "గ్రూప్ పేరు అందుబాటులో వున్నది!"
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = "యూజర్ నిషేధించబడెను! "
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = "యూజర్ నిషేధించబడలేదు!"
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = "ఓనర్ మార్చబడింది!"
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = "ఈ యూజర్ గ్రూప్ లో లేరు"
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = "ఈ యూజర్ పేరు లేదు!"
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = "గ్రూప్ పేరు వున్నది"
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = "గ్రూప్ పేరు ఆడ్ చేయబడినది"
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = "ఈ గ్రూప్ పేరు లేదు"
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = "గ్రూప్ డిలీట్ చేయబడినది "
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = "గ్రూప్ డిలీట్ చేయబడుటలేదు"
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = "యూజర్ డిలీట్ చేయబడినది "
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = "ఈ యూజర్ గ్రూప్ నుంచి డిలీట్ చేయబడుటలేదు"
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = "యూజర్స్ ఆహ్వానించబడ్డారు!"
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = "ఏ యూజర్స్ ఆహ్వానించబడలేదు! "
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = "గ్రూప్ లో చేరారు!"
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = "తొలిగించుట సాధ్యపడలేదు!"
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = "యూజర్ పునరుద్ధరించబడెను!"
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = "యూజర్ పునరుద్ధరించబడలేదు!"
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = "చేరడానికి అభ్యర్థన"
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = "ఆహ్వానించబడ్డారు"
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = "నిషేధించబడినది "
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = "విజయవంతంగా తొలిగించబడినది!"
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = "తొలిగించుట సాధ్యపడలేదు!"
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = "గ్రూప్ లో చేరారు!"
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = "గ్రూప్ లో చేరడానికి అభ్యర్థన చేయబడినది!"
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = "yioop గ్రూప్ %s యాక్టివేషన్ అభ్యర్థన"
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = "యూజర్ %s గ్రూప్%s లో చేరడానికి అభ్యర్థన చేసారు. ఈ యూజర్ నిర్వహణకు క్రింది లింక్ ను వాడవచ్చు.  "
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = "ధన్యవాదములు,"
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్"
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = "చాలని యాక్సెస్!"
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = "గ్రూప్ అప్డేట్ చేయబడినది!"
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = "తెలియని విలువ యాక్సెస్ మార్చడానికి ప్రయత్నం!"
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = "యూజర్స్ వడపోత!"
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = " ఖాళీ వ్యాఖ్య పోస్ట్ చెయ్యలేరు!"
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = "%s చేరారు %s!"
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = "ఈ తేదిన %s, మీరు %s గ్రూప్ లో చేరారు."
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = "థ్రెడ్ లో క్రొత్త పోస్ట్: %s"
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = "ధన్యవాదములు,"
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్"
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = "డియర్ %s, "
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = "కామెంట్ ఆడ్ చేయడమైనది!"
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = "ఎంపిక చేసిన గ్రూప్ జోడించడము కుదరదు!"
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = "ఐటెం తొలగించడం లో పొరపాటు వచ్చినది"
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = "ఐటెం డిలీట్ చేయబడినది!"
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = "ఐటెం ఎదీ డిలీట్ చేయబడలేదు!"
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = "వోటింగ్ పొరపాటు!"
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = "ఈ పోస్ట్ కి వోటింగ్ సదుపాయము లేదు!"
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = "వోటింగ్ అయిపోయినది!"
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = "వోటింగ్ నమోదు చేయబడినది!"
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = "టైటిల్ మరియు వివరణ రెండూ అవసరం!"
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = "గ్రూప్ %s లో క్రొత్త థ్రెడ్"
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = "ధన్యవాదములు,"
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్"
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = "డియర్ %s, "
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = "థ్రెడ్ సృష్టించబడినది!"
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = "టైటిల్ మరియు వివరణ రెండూ అవసరం!"
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = "పోస్ట్ వేరే చోట ఇప్పుడే సవరించారు (వేరే టేబ్?)"
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = "పోస్ట్ ని అప్డేట్ చేయలేరు!"
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = "పోస్ట్ ని అప్డేట్ చేయలేరు!"
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = "పోస్ట్ అప్డేట్ చేయబడినది!"
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = "వోటింగ్ పొరపాటు!"
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = "ఈ పోస్ట్ కి వోటింగ్ సదుపాయము లేదు!"
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = "వోటింగ్ అయిపోయినది!"
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = "వోటింగ్ నమోదు చేయబడినది!"
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = "%s చేరారు %s!"
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = "ఈ తేదిన %s, మీరు %s గ్రూప్ లో చేరారు."
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = "ఇంకా పోస్ట్లు ఏవీ లేవు"
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = "శోధన"
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = "సభ్యుడు కాదు లేదా ఆ గ్రూప్ ని చదవలేరు.పబ్లిక్ గ్రూప్ కి మార్చండి! "
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = "సభ్యుడు కాదు లేదా ఆ గ్రూప్ ని చదవలేరు.పబ్లిక్ గ్రూప్ కి మార్చండి! "
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = "సగటు"
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = "మీడియా జాబితా"
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = " "
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = "కొన్ని ఫీల్డ్స్ మిస్ అయినవి!"
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!"
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = "%s వికీ పేజ్ సృష్టించబడినది!"
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = "ఈ థ్రెడ్ లో పేజీ గురించి చర్చించండి!"
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = "పేజ్ సేవ్ చేయబడినది!"
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = "రిసోర్స్ డిలీట్ చేయబడినది!"
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = "రిసోర్స్ డిలీట్ చేయబడలేదు!"
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = "రిసోర్స్ పేరు మార్చబడింది!"
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = "రిసోర్స్ పేరు మార్చలేదు!"
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = "రిసోర్సెస్ వాడే ముందు పేజ్ సేవ్ చేయాలి!"
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = "రిసోర్స్ అప్ లోడ్ అయినది!"
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = "అప్ లోడ్ పొరపాటు"
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = "వెనుకకు "
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = "చారిత్రక వెర్షన్ %s నుండి %s."
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = "వెనుకకు "
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = "%s లైన్ తేడాలు%s మరియు %s మధ్య"
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!"
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = "తిరిగి వెనుకకు %s"
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = "పేజీ వెనుకకు మార్చబడింది!"
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = "పేజీ వెనుకకు మార్చుటలో లోపం!"
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = "ప్రధాన"
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = "చిన్న"
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = "మధ్యస్థం"
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = "పెద్ద"
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = "పరిమాణం"
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = "శీర్షిక పంక్తి:"
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = "ఉదాహరణ"
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = "టేబుల్ పేరు"
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = "మనవి చేయి"
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = "రద్దు చెయ్యి"
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = "బోల్డ్ టెక్స్ట్"
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = "ఇటాలిక్ టెక్స్ట్"
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = "అండర్ లైన్డ్ టెక్స్ట్"
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = "స్ట్రైక్డ్ టెక్స్ట్"
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = "హెడ్డింగ్"
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = "లెవెల్ 1 హెడ్డింగ్"
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = "లెవెల్ 2 హెడ్డింగ్"
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = "లెవెల్ 3 హెడ్డింగ్"
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = "లెవెల్ 4 హెడ్డింగ్"
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = "క్రమం లేని జాబితా అంశం"
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = "క్రమంలో జాబితా అంశం"
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = "ఇక్కడ ఫార్మాట్ చేయని టెక్స్ట్ ఇన్సర్ట్ చేయండి"
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = "శోధన రూపం జోడించండి"
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = "పరిమాణం"
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = "వికీ టేబుల్ ఆడ్ చెయ్యండి "
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = "కాలమ్ కౌంట్:"
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = "వరుస కౌంట్:"
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = "హైపర్ లింక్ ఆడ్ చెయ్యండి"
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = "టెక్స్ట్:"
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = "యుఆర్ఎల్:"
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = "ప్లేస్ హోల్డర్ టెక్స్ట్ శోధన"
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = "ఈ టెక్స్ట్ మధ్య సమలేఖనమైంది."
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = "ఈ టెక్స్ట్ కుడి సమలేఖనమైంది. "
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = "ఈ టెక్స్ట్ ఎడమ సమలేఖనమైంది."
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = "అంశము"
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = "నిర్వచనం"
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = "శీర్షిక"
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = "స్లయిడ్ అంశము"
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = "క్రాల్ ఎంచుకోండి"
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = "డిఫాల్ట  క్రాల్"
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = "క్రాల్ ఎంచుకోండి"
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = "డిఫాల్ట  క్రాల్"
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = "క్రాల్ మిక్స్ సృష్టించబడినది!"
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = "మిక్స్ పేరు వాడుక లో వుంది లేదా చెల్లదు!"
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = "టైం స్టాంప్ వేలిడ్ కాదు!"
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = "క్రాల్ మిక్స్ డిలీట్ చేయబడినది!"
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = "తొలగించవలసిన మిక్స్ లేదు!"
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = "మిక్స్ విజయవంతంగా దిగుమతి చేయబడినది!"
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = "సూచికగా ఉపయోగించడానికి క్రాల్ సెట్ చేస్తోంది  "
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = "షేర్డ్ మిక్స్ టైమ్ స్టాంప్ చెల్లదు"
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = "ఈ క్రాల్ మిక్స్ ప్రయత్నించండి!"
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = "%s పంచుకుంటున్నారు  క్రాల్ మిక్స్%sని!"
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = "థ్రెడ్ సృష్టించబడినది!"
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = "టైం స్టాంప్ వేలిడ్ కాదు!"
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = "మిక్స్ యజమాని కాదు!"
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = "క్రాల్ లు జోడించుము"
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = "ఫలితాలను చూపించాయి"
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = "తొలగించు"
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = "బరువు"
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = "పేరు "
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = "కీ పదాలు"
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = "యాక్సన్ లు"
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = "క్వెరి జోడించుము"
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = "తొలగించు"
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = "చాలా శోధన ఫలిత శకలాలు!"
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = "క్రాల్ మిక్స్ మార్పులు సేవ్ చేయబడినవి!"
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = "ఇ-మెయిల్ చిరునామ
 ; register_controller.php line: 1077
 register_controller_user_already_exists = "ఖాతా సృస్టించలేదు - యూజర్ పేరు వాడుకలో వున్నది!!"
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = "వెబ్"
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "లాగౌట్ విజయవంతం"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = "మిక్స్ క్రాల్ ఉపయోగించబడుతోంది: %s"
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = "సూచిక: %s -- పరిమాణము: %s పేజీలు /%s యుఆర్ఎల్ లు"
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = "అన్వేషించు"
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = "శోధన సూచిక సెట్ అయి లేదు "
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = "శోధన సూచిక సెట్ అయి లేదు "
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = "డౌన్లోడ్ ఫెచ్చర్: %s"
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = "ఈ వెబ్ సైట్ ఈ పేజీ ఆర్కైవ్ చేయరాదని  అభ్యర్థించారు "
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = "Yioop కాష్"
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = "ఈ చిత్రం  కనిపించిన పేజి:"
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = "సేకరించిన శీర్షిక "
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = "సేకరించిన వివరణ "
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = "సేకరించిన లింకులు "
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = "సేకరించిన అనుమతి ఉన్న క్రాల్  మార్గాలు"
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = "సేకరించిన అనుమతి లేని క్రాల్  మార్గాలు"
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = "యూప్ బాట్ క్రాల్ ఆలస్యం"
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = "యూప్కా ష్ పేజ్ ... ఈ పేజీకి, ఒక రోబోట్ ఆదేశం జోడించండి లింకులు సంపూర్ణ తయారు, సేకరించిన సారాంశాలు జోడించడానికి మరియు ప్రశ్న నిబంధనలు హైలైట్ కు మార్చబడింది"
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = "Yioop కాష్"
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = "ఈ కేషెడ్ వెర్షన్ %s యూప్ క్రాలర్ ద్వారా పొందారు %s"
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = "డౌన్లోడ్ ఫెచ్చర్: %s"
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = "టాగుల్ చరిత్ర"
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = "సంవత్సరం:"
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = "నెల:"
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = "ఆఖరి పోస్ట్:"
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = "వ్యాఖ్య"
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = "వ్యాఖ్యను జోడించండి"
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = "సేవ్"
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = "విషయం"
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = "పోస్ట్"
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = "సేవ్"
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = "పోస్ట్ లను సవరించు"
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = "విషయం"
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = "పోస్ట్"
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = "సేవ్"
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = "గ్రూప్ ఫీడ్స్ అప్డేట్ అవడంలేదు!"
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/th/configure.ini b/locale/th/configure.ini
index f3da9ce15..80878ae59 100755
--- a/locale/th/configure.ini
+++ b/locale/th/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = ""
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/tr/configure.ini b/locale/tr/configure.ini
index 48155a9cf..c2cd005cb 100755
--- a/locale/tr/configure.ini
+++ b/locale/tr/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = ""
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = ""
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = ""
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = ""
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = ""
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = ""
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = ""
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/vi-VN/configure.ini b/locale/vi-VN/configure.ini
index 19c5277da..065279532 100755
--- a/locale/vi-VN/configure.ini
+++ b/locale/vi-VN/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = "Chọn thu thập th&ocirc;ng tin"
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = "Chọn thu thập th&ocirc;ng tin"
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = "Tạo ra hỗn hợp "
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = "X&oacute;a kết hợp "
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = "Kết hợp n&agrave;y kh&ocirc;ng tồn tại"
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = "Cộng th&ecirc;m thu thập"
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = "Số kết quả"
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = "Trọng lượng"
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = "H&agrave;nh động"
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = "Cộng th&ecirc;m truy vấn"
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = "Kết hợp đ&atilde; được lưu dữ"
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = "Tho&aacute;t th&agrave;nh c&ocirc;ng"
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = "Bằng c&aacute;ch sử dụng kết hợp thu thập dữ liệu %s"
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = "Sử dụng chỉ số %s"
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = "T&igrave;m Kiếm"
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = "Kh&ocirc;ng c&oacute; chỉ mục t&igrave;m kiếm thiết lập để sử dụng"
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = "Kh&ocirc;ng c&oacute; chỉ mục t&igrave;m kiếm thiết lập để sử dụng"
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = "Trang gốc n&agrave;y: %s đ&atilde; t&igrave;m được bởi c&ocirc;ng cụ t&igrave;m kiẽm Yioop v&agrave;o ng&agrave;y %s."
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/locale/zh-CN/configure.ini b/locale/zh-CN/configure.ini
index 32c1d7b6a..b6eee96c6 100755
--- a/locale/zh-CN/configure.ini
+++ b/locale/zh-CN/configure.ini
@@ -486,607 +486,607 @@ crawl_component_subsearch_updated = ""
 ; crawl_component.php line: 1700
 crawl_component_media_source_updated = ""
 ;
-; social_component.php line: 73
+; social_component.php line: 88
 social_component_request_join = ""
 ;
-; social_component.php line: 74
+; social_component.php line: 89
 social_component_invited = ""
 ;
-; social_component.php line: 75
+; social_component.php line: 90
 social_component_active_status = ""
 ;
-; social_component.php line: 76
+; social_component.php line: 91
 social_component_banned_status = ""
 ;
-; social_component.php line: 79
+; social_component.php line: 94
 social_component_no_join = ""
 ;
-; social_component.php line: 80
+; social_component.php line: 95
 social_component_by_request = ""
 ;
-; social_component.php line: 81
+; social_component.php line: 96
 social_component_public_request = ""
 ;
-; social_component.php line: 82
+; social_component.php line: 97
 social_component_public_join = ""
 ;
-; social_component.php line: 85
+; social_component.php line: 100
 social_component_private = ""
 ;
-; social_component.php line: 86
+; social_component.php line: 101
 social_component_read = ""
 ;
-; social_component.php line: 87
+; social_component.php line: 102
 social_component_read_comment = ""
 ;
-; social_component.php line: 88
+; social_component.php line: 103
 social_component_read_write = ""
 ;
-; social_component.php line: 89
+; social_component.php line: 104
 social_component_read_wiki = ""
 ;
-; social_component.php line: 92
+; social_component.php line: 107
 social_component_no_voting = ""
 ;
-; social_component.php line: 93
+; social_component.php line: 108
 social_component_up_voting = ""
 ;
-; social_component.php line: 94
+; social_component.php line: 109
 social_component_up_down_voting = ""
 ;
-; social_component.php line: 97
+; social_component.php line: 112
 social_component_forever = ""
 ;
-; social_component.php line: 98
+; social_component.php line: 113
 social_component_one_hour = ""
 ;
-; social_component.php line: 99
+; social_component.php line: 114
 social_component_one_day = ""
 ;
-; social_component.php line: 100
+; social_component.php line: 115
 social_component_one_month = ""
 ;
-; social_component.php line: 169
+; social_component.php line: 184
 accountaccess_component_user_activated = ""
 ;
-; social_component.php line: 174
+; social_component.php line: 189
 accountaccess_component_no_user_activated = ""
 ;
-; social_component.php line: 192
+; social_component.php line: 207
 social_component_joined = ""
 ;
-; social_component.php line: 196
+; social_component.php line: 211
 social_component_groupname_unavailable = ""
 ;
-; social_component.php line: 201
+; social_component.php line: 216
 social_component_name_available = ""
 ;
-; social_component.php line: 216
+; social_component.php line: 231
 social_component_user_banned = ""
 ;
-; social_component.php line: 221
+; social_component.php line: 236
 social_component_no_user_banned = ""
 ;
-; social_component.php line: 242
+; social_component.php line: 257
 social_component_owner_changed = ""
 ;
-; social_component.php line: 247
+; social_component.php line: 262
 social_component_not_in_group = ""
 ;
-; social_component.php line: 253
+; social_component.php line: 268
 social_component_not_a_user = ""
 ;
-; social_component.php line: 263
+; social_component.php line: 278
 social_component_groupname_exists = ""
 ;
-; social_component.php line: 290
+; social_component.php line: 305
 social_component_groupname_added = ""
 ;
-; social_component.php line: 299
+; social_component.php line: 314
 social_component_groupname_doesnt_exists = ""
 ;
-; social_component.php line: 306
+; social_component.php line: 321
 social_component_group_deleted = ""
 ;
-; social_component.php line: 310
+; social_component.php line: 325
 social_component_no_delete_group = ""
 ;
-; social_component.php line: 323
+; social_component.php line: 338
 social_component_user_deleted = ""
 ;
-; social_component.php line: 328
+; social_component.php line: 343
 social_component_no_delete_user_group = ""
 ;
-; social_component.php line: 378
+; social_component.php line: 393
 social_component_users_invited = ""
 ;
-; social_component.php line: 383
+; social_component.php line: 398
 social_component_no_users_invited = ""
 ;
-; social_component.php line: 399
+; social_component.php line: 414
 social_component_joined = ""
 ;
-; social_component.php line: 403
+; social_component.php line: 418
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 445
+; social_component.php line: 460
 social_component_user_reinstated = ""
 ;
-; social_component.php line: 450
+; social_component.php line: 465
 social_component_no_user_reinstated = ""
 ;
-; social_component.php line: 457
+; social_component.php line: 472
 social_component_request_join = ""
 ;
-; social_component.php line: 459
+; social_component.php line: 474
 social_component_invited = ""
 ;
-; social_component.php line: 461
+; social_component.php line: 476
 social_component_banned_status = ""
 ;
-; social_component.php line: 478
+; social_component.php line: 493
 social_component_unsubscribe = ""
 ;
-; social_component.php line: 483
+; social_component.php line: 498
 social_component_no_unsubscribe = ""
 ;
-; social_component.php line: 526
+; social_component.php line: 541
 social_component_group_joined = ""
 ;
-; social_component.php line: 528
+; social_component.php line: 543
 social_component_group_request_join = ""
 ;
-; social_component.php line: 544
+; social_component.php line: 559
 social_component_activate_group = ""
 ;
-; social_component.php line: 551
+; social_component.php line: 566
 social_component_activate_body = ""
 ;
-; social_component.php line: 555
+; social_component.php line: 570
 social_component_notify_closing = ""
 ;
-; social_component.php line: 556
+; social_component.php line: 571
 social_component_notify_signature = ""
 ;
-; social_component.php line: 627
+; social_component.php line: 642
 social_component_no_permission = ""
 ;
-; social_component.php line: 640
+; social_component.php line: 655
 social_component_group_updated = ""
 ;
-; social_component.php line: 648
+; social_component.php line: 663
 social_component_unknown_access = ""
 ;
-; social_component.php line: 656
+; social_component.php line: 671
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 747
+; social_component.php line: 762
 social_component_comment_error = ""
 ;
-; social_component.php line: 751
+; social_component.php line: 766
 social_component_no_comment = ""
 ;
-; social_component.php line: 763
+; social_component.php line: 778
 social_component_no_post_access = ""
 ;
-; social_component.php line: 769
+; social_component.php line: 784
 social_component_no_post_access = ""
 ;
-; social_component.php line: 773
+; social_component.php line: 788
 social_component_join_group = ""
 ;
-; social_component.php line: 776
+; social_component.php line: 791
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 798
+; social_component.php line: 813
 social_component_thread_notification = ""
 ;
-; social_component.php line: 800
+; social_component.php line: 815
 social_component_notify_body = ""
 ;
-; social_component.php line: 803
+; social_component.php line: 818
 social_component_notify_closing = ""
 ;
-; social_component.php line: 804
+; social_component.php line: 819
 social_component_notify_signature = ""
 ;
-; social_component.php line: 806
+; social_component.php line: 821
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 813
+; social_component.php line: 828
 social_component_comment_added = ""
 ;
-; social_component.php line: 823
+; social_component.php line: 838
 social_component_groupname_cant_add = ""
 ;
-; social_component.php line: 829
+; social_component.php line: 844
 social_component_delete_error = ""
 ;
-; social_component.php line: 843
+; social_component.php line: 858
 social_component_item_deleted = ""
 ;
-; social_component.php line: 846
+; social_component.php line: 861
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 854
+; social_component.php line: 869
 social_component_vote_error = ""
 ;
-; social_component.php line: 863
+; social_component.php line: 878
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 868
+; social_component.php line: 883
 social_component_no_post_access = ""
 ;
-; social_component.php line: 872
+; social_component.php line: 887
 social_component_already_voted = ""
 ;
-; social_component.php line: 876
+; social_component.php line: 891
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 881
+; social_component.php line: 896
 social_component_comment_error = ""
 ;
-; social_component.php line: 886
+; social_component.php line: 901
 social_component_need_title_description = ""
 ;
-; social_component.php line: 897
+; social_component.php line: 912
 social_component_no_post_access = ""
 ;
-; social_component.php line: 905
+; social_component.php line: 920
 social_component_new_thread_mail = ""
 ;
-; social_component.php line: 912
+; social_component.php line: 927
 social_component_new_thread_body = ""
 ;
-; social_component.php line: 916
+; social_component.php line: 931
 social_component_notify_closing = ""
 ;
-; social_component.php line: 917
+; social_component.php line: 932
 social_component_notify_signature = ""
 ;
-; social_component.php line: 918
+; social_component.php line: 933
 social_component_notify_salutation = ""
 ;
-; social_component.php line: 925
+; social_component.php line: 940
 social_component_thread_created = ""
 ;
-; social_component.php line: 933
+; social_component.php line: 948
 social_component_comment_error = ""
 ;
-; social_component.php line: 937
+; social_component.php line: 952
 social_component_need_title_description = ""
 ;
-; social_component.php line: 943
+; social_component.php line: 958
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 951
+; social_component.php line: 966
 social_component_no_update_access = ""
 ;
-; social_component.php line: 964
+; social_component.php line: 979
 social_component_no_update_access = ""
 ;
-; social_component.php line: 970
+; social_component.php line: 985
 social_component_post_updated = ""
 ;
-; social_component.php line: 977
+; social_component.php line: 992
 social_component_vote_error = ""
 ;
-; social_component.php line: 986
+; social_component.php line: 1001
 social_component_no_vote_access = ""
 ;
-; social_component.php line: 991
+; social_component.php line: 1006
 social_component_no_post_access = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 1010
 social_component_already_voted = ""
 ;
-; social_component.php line: 999
+; social_component.php line: 1014
 social_component_vote_recorded = ""
 ;
-; social_component.php line: 1030
+; social_component.php line: 1045
 social_component_join_group = ""
 ;
-; social_component.php line: 1033
+; social_component.php line: 1048
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 1238
+; social_component.php line: 1302
 accountaccess_component_no_posts_yet = ""
 ;
-; social_component.php line: 1279
+; social_component.php line: 1343
 social_component_search = ""
 ;
-; social_component.php line: 1363
+; social_component.php line: 1427
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1366
+; social_component.php line: 1430
 group_controller_no_group_access = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1454
 social_component_standard_page = ""
 ;
-; social_component.php line: 1391
+; social_component.php line: 1455
 social_component_page_alias = ""
 ;
-; social_component.php line: 1392
+; social_component.php line: 1456
 social_component_media_list = ""
 ;
-; social_component.php line: 1393
+; social_component.php line: 1457
 social_component_presentation = ""
 ;
-; social_component.php line: 1396
+; social_component.php line: 1460
 social_component_solid = ""
 ;
-; social_component.php line: 1397
+; social_component.php line: 1461
 social_component_dashed = ""
 ;
-; social_component.php line: 1398
+; social_component.php line: 1462
 social_component_none = ""
 ;
-; social_component.php line: 1438
+; social_component.php line: 1502
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1444
+; social_component.php line: 1508
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1558
 group_controller_page_created = ""
 ;
-; social_component.php line: 1495
+; social_component.php line: 1559
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1500
+; social_component.php line: 1564
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1512
+; social_component.php line: 1576
 social_component_resource_deleted = ""
 ;
-; social_component.php line: 1517
+; social_component.php line: 1581
 social_component_resource_not_deleted = ""
 ;
-; social_component.php line: 1534
+; social_component.php line: 1598
 social_component_resource_renamed = ""
 ;
-; social_component.php line: 1539
+; social_component.php line: 1603
 social_component_resource_not_renamed = ""
 ;
-; social_component.php line: 1549
+; social_component.php line: 1613
 social_component_resource_save_first = ""
 ;
-; social_component.php line: 1589
+; social_component.php line: 1621
 social_component_resource_uploaded = ""
 ;
-; social_component.php line: 1594
+; social_component.php line: 1626
 social_component_upload_error = ""
 ;
-; social_component.php line: 1640
+; social_component.php line: 1672
 group_controller_back = ""
 ;
-; social_component.php line: 1641
+; social_component.php line: 1673
 group_controller_history_page = ""
 ;
-; social_component.php line: 1674
+; social_component.php line: 1706
 group_controller_back = ""
 ;
-; social_component.php line: 1675
+; social_component.php line: 1707
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1689
+; social_component.php line: 1721
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1697
+; social_component.php line: 1729
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1701
+; social_component.php line: 1733
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1705
+; social_component.php line: 1737
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1776
+; social_component.php line: 1808
 group_controller_main = ""
 ;
-; social_component.php line: 2017
+; social_component.php line: 2049
 wiki_js_small = ""
 ;
-; social_component.php line: 2018
+; social_component.php line: 2050
 wiki_js_medium = ""
 ;
-; social_component.php line: 2019
+; social_component.php line: 2051
 wiki_js_large = ""
 ;
-; social_component.php line: 2020
+; social_component.php line: 2052
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2021
+; social_component.php line: 2053
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 2022
+; social_component.php line: 2054
 wiki_js_example = ""
 ;
-; social_component.php line: 2023
+; social_component.php line: 2055
 wiki_js_table_title = ""
 ;
-; social_component.php line: 2024
+; social_component.php line: 2056
 wiki_js_submit = ""
 ;
-; social_component.php line: 2025
+; social_component.php line: 2057
 wiki_js_cancel = ""
 ;
-; social_component.php line: 2026
+; social_component.php line: 2058
 wiki_js_bold = ""
 ;
-; social_component.php line: 2027
+; social_component.php line: 2059
 wiki_js_italic = ""
 ;
-; social_component.php line: 2028
+; social_component.php line: 2060
 wiki_js_underline = ""
 ;
-; social_component.php line: 2029
+; social_component.php line: 2061
 wiki_js_strike = ""
 ;
-; social_component.php line: 2030
+; social_component.php line: 2062
 wiki_js_heading = ""
 ;
-; social_component.php line: 2031
+; social_component.php line: 2063
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 2032
+; social_component.php line: 2064
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 2033
+; social_component.php line: 2065
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 2034
+; social_component.php line: 2066
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 2035
+; social_component.php line: 2067
 wiki_js_bullet = ""
 ;
-; social_component.php line: 2036
+; social_component.php line: 2068
 wiki_js_enum = ""
 ;
-; social_component.php line: 2037
+; social_component.php line: 2069
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 2038
+; social_component.php line: 2070
 wiki_js_add_search = ""
 ;
-; social_component.php line: 2039
+; social_component.php line: 2071
 wiki_js_search_size = ""
 ;
-; social_component.php line: 2040
+; social_component.php line: 2072
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 2041
+; social_component.php line: 2073
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 2042
+; social_component.php line: 2074
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 2043
+; social_component.php line: 2075
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 2044
+; social_component.php line: 2076
 wiki_js_link_text = ""
 ;
-; social_component.php line: 2045
+; social_component.php line: 2077
 wiki_js_link_url = ""
 ;
-; social_component.php line: 2046
+; social_component.php line: 2078
 wiki_js_placeholder = ""
 ;
-; social_component.php line: 2047
+; social_component.php line: 2079
 wiki_js_centeraligned = ""
 ;
-; social_component.php line: 2048
+; social_component.php line: 2080
 wiki_js_rightaligned = ""
 ;
-; social_component.php line: 2049
+; social_component.php line: 2081
 wiki_js_leftaligned = ""
 ;
-; social_component.php line: 2051
+; social_component.php line: 2083
 wiki_js_definitionlist_item = ""
 ;
-; social_component.php line: 2053
+; social_component.php line: 2085
 wiki_js_definitionlist_definition = ""
 ;
-; social_component.php line: 2055
+; social_component.php line: 2087
 wiki_js_slide_sample_title = ""
 ;
-; social_component.php line: 2057
+; social_component.php line: 2089
 wiki_js_slide_sample_bullet = ""
 ;
-; social_component.php line: 2059
+; social_component.php line: 2091
 wiki_js_slide_resource_description = ""
 ;
-; social_component.php line: 2099
+; social_component.php line: 2131
 social_component_select_crawl = "搜尋選擇"
 ;
-; social_component.php line: 2100
+; social_component.php line: 2132
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2102
+; social_component.php line: 2134
 social_component_select_crawl = "搜尋選擇"
 ;
-; social_component.php line: 2104
+; social_component.php line: 2136
 social_component_default_crawl = ""
 ;
-; social_component.php line: 2135
+; social_component.php line: 2167
 social_component_mix_created = ""
 ;
-; social_component.php line: 2138
+; social_component.php line: 2170
 social_component_invalid_name = ""
 ;
-; social_component.php line: 2146
+; social_component.php line: 2178
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2150
+; social_component.php line: 2182
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 2169
+; social_component.php line: 2201
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 2177
+; social_component.php line: 2209
 social_component_mix_imported = ""
 ;
-; social_component.php line: 2191
+; social_component.php line: 2223
 social_component_set_index = ""
 ;
-; social_component.php line: 2201
+; social_component.php line: 2233
 social_component_comment_error = ""
 ;
-; social_component.php line: 2207
+; social_component.php line: 2239
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 2225
+; social_component.php line: 2257
 social_component_no_post_access = ""
 ;
-; social_component.php line: 2229
+; social_component.php line: 2261
 social_component_share_title = ""
 ;
-; social_component.php line: 2231
+; social_component.php line: 2263
 social_component_share_description = ""
 ;
-; social_component.php line: 2236
+; social_component.php line: 2268
 social_component_thread_created = ""
 ;
-; social_component.php line: 2288
+; social_component.php line: 2320
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 2293
+; social_component.php line: 2325
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 2303
+; social_component.php line: 2335
 social_component_add_crawls = "增加索引"
 ;
-; social_component.php line: 2305
+; social_component.php line: 2337
 social_component_num_results = "結果數量"
 ;
-; social_component.php line: 2307
+; social_component.php line: 2339
 social_component_del_frag = ""
 ;
-; social_component.php line: 2309
+; social_component.php line: 2341
 social_component_weight = "元素重量"
 ;
-; social_component.php line: 2310
+; social_component.php line: 2342
 social_component_name = ""
 ;
-; social_component.php line: 2312
+; social_component.php line: 2344
 social_component_add_keywords = ""
 ;
-; social_component.php line: 2314
+; social_component.php line: 2346
 social_component_actions = "元素活動"
 ;
-; social_component.php line: 2316
+; social_component.php line: 2348
 social_component_add_query = "增加查詢"
 ;
-; social_component.php line: 2317
+; social_component.php line: 2349
 social_component_delete = ""
 ;
-; social_component.php line: 2364
+; social_component.php line: 2396
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 2375
+; social_component.php line: 2407
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 82
@@ -1407,82 +1407,82 @@ register_controller_check_email = ""
 ; register_controller.php line: 1077
 register_controller_user_already_exists = ""
 ;
-; search_controller.php line: 239
+; search_controller.php line: 242
 search_controller_web = ""
 ;
-; search_controller.php line: 300
+; search_controller.php line: 303
 search_controller_logout_successful = ""
 ;
-; search_controller.php line: 497
+; search_controller.php line: 500
 search_controller_mix_info = ""
 ;
-; search_controller.php line: 503
+; search_controller.php line: 506
 search_controller_crawl_info = ""
 ;
-; search_controller.php line: 539
+; search_controller.php line: 542
 search_controller_search = ""
 ;
-; search_controller.php line: 643
+; search_controller.php line: 646
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 646
+; search_controller.php line: 649
 search_controller_no_index_set = ""
 ;
-; search_controller.php line: 1297
+; search_controller.php line: 1300
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1306
+; search_controller.php line: 1309
 search_controller_no_archive_page = ""
 ;
-; search_controller.php line: 1355
+; search_controller.php line: 1358
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1360
+; search_controller.php line: 1363
 search_controller_original_page = ""
 ;
-; search_controller.php line: 1377
+; search_controller.php line: 1380
 search_controller_extracted_title = ""
 ;
-; search_controller.php line: 1379
+; search_controller.php line: 1382
 search_controller_extracted_description = ""
 ;
-; search_controller.php line: 1381
+; search_controller.php line: 1384
 search_controller_extracted_links = ""
 ;
-; search_controller.php line: 1386
+; search_controller.php line: 1389
 search_controller_extracted_allow_paths = ""
 ;
-; search_controller.php line: 1392
+; search_controller.php line: 1395
 search_controller_extracted_disallow_paths = ""
 ;
-; search_controller.php line: 1398
+; search_controller.php line: 1401
 search_controller_crawl_delay = ""
 ;
-; search_controller.php line: 1463
+; search_controller.php line: 1466
 search_controller_cache_comment = ""
 ;
-; search_controller.php line: 1474
+; search_controller.php line: 1477
 search_controller_yioop_cache = ""
 ;
-; search_controller.php line: 1510
+; search_controller.php line: 1513
 search_controller_cached_version = ""
 ;
-; search_controller.php line: 1605
+; search_controller.php line: 1608
 search_controller_download_fetcher = ""
 ;
-; search_controller.php line: 1623
+; search_controller.php line: 1626
 search_controller_header_summaries = ""
 ;
-; search_controller.php line: 1736
+; search_controller.php line: 1739
 search_controller_history = ""
 ;
-; search_controller.php line: 1905
+; search_controller.php line: 1908
 search_controller_all_cached = ""
 ;
-; search_controller.php line: 1936
+; search_controller.php line: 1939
 search_controller_year = ""
 ;
-; search_controller.php line: 1937
+; search_controller.php line: 1940
 search_controller_month = ""
 ;
 ; settings_controller.php line: 113
@@ -2020,34 +2020,40 @@ groupfeed_element_last_post_info = ""
 ; groupfeed_element.php line: 497
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 572
+; groupfeed_element.php line: 549
+fileupload_helper_drag_textarea = ""
+;
+; groupfeed_element.php line: 550
+fileupload_helper_click_textarea = ""
+;
+; groupfeed_element.php line: 574
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 580
+; groupfeed_element.php line: 588
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 617
+; groupfeed_element.php line: 627
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 624
+; groupfeed_element.php line: 634
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 631
+; groupfeed_element.php line: 647
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 663
+; groupfeed_element.php line: 683
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 666
+; groupfeed_element.php line: 686
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 672
+; groupfeed_element.php line: 692
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 679
+; groupfeed_element.php line: 705
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 704
+; groupfeed_element.php line: 734
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -3362,73 +3368,73 @@ wiki_element_ml_description = ""
 ; wiki_element.php line: 449
 wiki_view_page_resources = ""
 ;
-; wiki_element.php line: 450
-wiki_view_resources_info = ""
-;
-; wiki_element.php line: 481
+; wiki_element.php line: 485
 wiki_view_upload = ""
 ;
-; wiki_element.php line: 497
+; wiki_element.php line: 488
+wiki_view_resources_info = ""
+;
+; wiki_element.php line: 503
 wiki_element_rename_failed = ""
 ;
-; wiki_element.php line: 565
+; wiki_element.php line: 571
 wiki_element_rename = ""
 ;
-; wiki_element.php line: 571
+; wiki_element.php line: 577
 wiki_element_add_to_page = ""
 ;
-; wiki_element.php line: 591
+; wiki_element.php line: 597
 wiki_element_no_resources = ""
 ;
-; wiki_element.php line: 614
+; wiki_element.php line: 620
 wiki_view_wiki_page_list = ""
 ;
-; wiki_element.php line: 628
+; wiki_element.php line: 634
 wiki_view_filter_or_create = ""
 ;
-; wiki_element.php line: 631
+; wiki_element.php line: 637
 wiki_element_go = ""
 ;
-; wiki_element.php line: 635
+; wiki_element.php line: 641
 wiki_view_create_page = ""
 ;
-; wiki_element.php line: 646
+; wiki_element.php line: 652
 wiki_element_redirect_to = ""
 ;
-; wiki_element.php line: 667
+; wiki_element.php line: 673
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 690
+; wiki_element.php line: 696
 wiki_view_back = ""
 ;
-; wiki_element.php line: 706
+; wiki_element.php line: 712
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 712
+; wiki_element.php line: 718
 wiki_view_go = ""
 ;
-; wiki_element.php line: 732
+; wiki_element.php line: 738
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 735
+; wiki_element.php line: 741
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 739
+; wiki_element.php line: 745
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 740
+; wiki_element.php line: 746
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 746
+; wiki_element.php line: 752
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 750
+; wiki_element.php line: 756
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 752
+; wiki_element.php line: 758
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 755
+; wiki_element.php line: 761
 wiki_view_revert = ""
 ;
 ; group_view.php line: 80
diff --git a/scripts/basic.js b/scripts/basic.js
index 7743248be..959c5d0dc 100755
--- a/scripts/basic.js
+++ b/scripts/basic.js
@@ -180,6 +180,7 @@ function initializeFileHandler(drop_id, file_id, max_size, drop_kind, types,
     var file_elt = document.getElementById(file_id);
     var parent_form = file_elt.form;
     var last_call = "clear";
+    var tl = document.tl;
     listen(parent_form, "submit", fileUploadSubmit);
     listen(drop_elt, "dragenter", stopNoPropagate);
     listen(drop_elt, "dragexit", stopNoPropagate);
@@ -336,7 +337,7 @@ function initializeFileHandler(drop_id, file_id, max_size, drop_kind, types,
     function uploadFailed(event)
     {
         doMessage('<h1 class=\"red\" >' +
-                tl["basic_js_upload_error"] +'</h1>');
+            tl["basic_js_upload_error"] +'</h1>');
     }
     function uploadCanceled(event)
     {
diff --git a/views/helpers/fileupload_helper.php b/views/helpers/fileupload_helper.php
index 0d5fd03da..554ee6442 100644
--- a/views/helpers/fileupload_helper.php
+++ b/views/helpers/fileupload_helper.php
@@ -102,7 +102,7 @@ class FileUploadHelper extends Helper
                     e($elt_id); ?>', <?php
                     e($max_size); ?>, '<?php e($drop_kind); ?>', <?php
                     e(json_encode($allowed_types)); ?>, <?php
-                    e(($multiple) ? "true" : "false" ); ?>);
+                    e(($multiple) ? "true" : "false"); ?>);
             },
             false
         );
@@ -134,6 +134,7 @@ class FileUploadHelper extends Helper
             e(tl("basic_js_upload_cancelled")); ?>';
         tl["basic_js_too_many_files"] = '<?php
             e(tl("basic_js_too_many_files")); ?>';
+        document.tl = tl;
         </script>
         <?php
     }
ViewGit