Improves way suggest urls are added, a=chris

Chris Pollett [2014-07-09 20:Jul:th]
Improves way suggest urls are added, a=chris
Filename
controllers/components/crawl_component.php
controllers/controller.php
locale/ar/configure.ini
locale/bn/configure.ini
locale/de/configure.ini
locale/en-US/configure.ini
locale/en-US/statistics.txt
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
models/crawl_model.php
views/elements/crawloptions_element.php
diff --git a/controllers/components/crawl_component.php b/controllers/components/crawl_component.php
index 9ef74e411..22951c511 100644
--- a/controllers/components/crawl_component.php
+++ b/controllers/components/crawl_component.php
@@ -337,6 +337,7 @@ class CrawlComponent extends Component implements CrawlConstants
             tl('crawl_component_use_below'),
             tl('crawl_component_use_defaults'));
         $data['available_crawl_indexes'] = array();
+        $data['INJECT_SITES'] = "";
         $data['options_default'] = tl('crawl_component_use_below');
         foreach($crawls as $crawl) {
             if(strlen($crawl['DESCRIPTION']) > 0 ) {
@@ -362,7 +363,7 @@ class CrawlComponent extends Component implements CrawlConstants
             }
             if(isset(
                 $seed_current['general']['page_recrawl_frequency'])
-                ){
+                ) {
                 $seed_info['general']['page_recrawl_frequency'] =
                 $seed_current['general']['page_recrawl_frequency'];
             }
@@ -379,6 +380,22 @@ class CrawlComponent extends Component implements CrawlConstants
                 $parent->clean($_REQUEST['load_option'], "int");
             $seed_info = $crawl_model->getCrawlSeedInfo(
                 $timestamp, $machine_urls);
+            if(isset(
+                $seed_current['general']['page_range_request'])) {
+                $seed_info['general']['page_range_request'] =
+                    $seed_current['general']['page_range_request'];
+            }
+            if(isset(
+                $seed_current['general']['page_recrawl_frequency'])
+                ) {
+                $seed_info['general']['page_recrawl_frequency'] =
+                $seed_current['general']['page_recrawl_frequency'];
+            }
+            if(isset(
+                $seed_current['general']['max_description_len'])) {
+                $seed_info['general']['max_description_len'] =
+                    $seed_current['general']['max_description_len'];
+            }
             $update_flag = true;
             $no_further_changes = true;
         } else if(isset($_REQUEST['ts'])) {
@@ -392,27 +409,33 @@ class CrawlComponent extends Component implements CrawlConstants
         }
         if(isset($_REQUEST['suggest']) && $_REQUEST['suggest']=='add') {
             $suggest_urls = $crawl_model->getSuggestSites();
-            $seed_info['seed_sites']['url'] =
-            $tmp_urls = array_merge(
-                $seed_info['seed_sites']['url'], $suggest_urls);
-            $urls = array();
-            foreach($tmp_urls as $url) {
-                $trim_url = trim($url);
-                if(strlen($trim_url) > 0) {
-                    $urls[$trim_url] = "";
-                }
+            if(isset($_REQUEST['ts'])) {
+                $new_urls = array();
+            } else {
+                $seed_info['seed_sites']['url'][] = "#\n#".
+                    tl('crawl_component_added_urls', date('r'))."\n#";
+                $crawl_model->clearSuggestSites();
             }
-            $seed_info['seed_sites']['url'] = array_keys($urls);
-            if(!isset($_REQUEST['ts'])) {
-                $crawl_model->setSeedInfo($seed_info);
+            foreach($suggest_urls as $suggest_url) {
+                $suggest_url = trim($suggest_url);
+                if(!in_array($suggest_url, $seed_info['seed_sites']['url'])
+                    && strlen($suggest_url) > 0) {
+                    if(isset($_REQUEST['ts'])) {
+                        $new_urls[] = $suggest_url;
+                    } else {
+                        $seed_info['seed_sites']['url'][] = $suggest_url;
+                    }
+                }
             }
             $add_message= tl('crawl_component_add_suggest');
+            if(isset($_REQUEST['ts'])) {
+                $data["INJECT_SITES"] = $parent->convertArrayLines($new_urls);
+                if($data["INJECT_SITES"] == "") {
+                    $add_message= tl('crawl_component_no_new_suggests');
+                }
+            }
             $update_flag = true;
-        }
-        if(isset($_REQUEST['suggest']) && $_REQUEST['suggest']=='clear') {
-            $crawl_model->clearSuggestSites();
-            $add_message= tl('crawl_component_clear_suggest');
-            $update_flag = true;
+            $no_further_changes = true;
         }
         $page_options_properties = array('indexed_file_types',
             'active_classifiers', 'page_rules', 'indexing_plugins');
@@ -506,23 +529,35 @@ class CrawlComponent extends Component implements CrawlConstants
             $data['SCRIPT'] .=
                 "switchTab('archivetab', 'webcrawltab');";
         }
+        $inject_urls = array();
         if(isset($_REQUEST['ts']) &&
-            isset($_REQUEST['inject_sites'])) {
+            isset($_REQUEST['inject_sites']) && $_REQUEST['inject_sites']) {
                 $timestamp = $parent->clean($_REQUEST['ts'],
                     "string");
                 $inject_urls =
                     $parent->convertStringCleanArray(
                     $_REQUEST['inject_sites']);
-                if($crawl_model->injectUrlsCurrentCrawl(
-                    $timestamp, $inject_urls, $machine_urls)) {
-                    $add_message = "<br />".
-                        tl('crawl_component_urls_injected');
-                }
         }
         if($update_flag) {
             if(isset($_REQUEST['ts'])) {
+                if($inject_urls != array()) {
+                    $seed_info['seed_sites']['url'][] = "#\n#".
+                        tl('crawl_component_added_urls', date('r'))."\n#";
+                    $seed_info['seed_sites']['url'] = array_merge(
+                        $seed_info['seed_sites']['url'], $inject_urls);
+                }
                 $crawl_model->setCrawlSeedInfo($timestamp,
                     $seed_info, $machine_urls);
+                if($inject_urls != array() &&
+                    $crawl_model->injectUrlsCurrentCrawl(
+                    $timestamp, $inject_urls, $machine_urls)) {
+                    $add_message = "<br />".
+                        tl('crawl_component_urls_injected');
+                    if(isset($_REQUEST['use_suggest']) &&
+                        $_REQUEST['use_suggest']) {
+                        $crawl_model->clearSuggestSites();
+                    }
+                }
             } else {
                 $crawl_model->setSeedInfo($seed_info);
             }
diff --git a/controllers/controller.php b/controllers/controller.php
index 97f11eb0d..0969d2a3c 100755
--- a/controllers/controller.php
+++ b/controllers/controller.php
@@ -601,7 +601,7 @@ abstract class Controller
     /**
      * Cleans a string consisting of lines, typically of urls into an array of
      * clean lines. This is used in handling data from the crawl options
-     * text areas.
+     * text areas. # is treated as a comment
      *
      * @param string $str contains the url data
      * @param string $line_type does additional cleaning depending on the type
@@ -611,11 +611,7 @@ abstract class Controller
      */
     function convertStringCleanArray($str, $line_type="url")
     {
-        if($line_type == "url") {
-            $pre_lines = preg_split("/(\s)+/", $str);
-        } else {
-            $pre_lines = preg_split('/\n+/', $str);
-        }
+        $pre_lines = preg_split('/\n+/', $str);
         $lines = array();
         foreach($pre_lines as $line) {
             $pre_line = trim($this->clean($line, "string"));
@@ -623,7 +619,8 @@ abstract class Controller
                 if($line_type == "url") {
                     $start_line = substr($pre_line, 0, 6);
                     if(!in_array($start_line,
-                        array("file:/", "http:/", "domain", "https:"))) {
+                        array("file:/", "http:/", "domain", "https:")) &&
+                        $start_line[0] != "#") {
                         $pre_line = "http://". $pre_line;
                     }
                 }
diff --git a/locale/ar/configure.ini b/locale/ar/configure.ini
index b241dab5b..41f3f6306 100755
--- a/locale/ar/configure.ini
+++ b/locale/ar/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "دور حذف اسم"
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "وقف الزحف. . .هذا سوف يستغرق بعض وقت لتحديث ."
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "استئناف الزحف. . .هذا سوف يستغرق بعض وقت لتحديث ."
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "حذف الزحف. . .هذا سوف يستغرق بعض وقت لتحديث ."
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "حذف فشل الزحف!!"
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = "وضع الزحف لاستخدامها كمؤشر"
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "بدء تشغيل تتبع الارتباطات الجديدة!"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "لا يوجد وصف لتتبع الارتباطات"
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = "استخدام الخيارات الموجودة بالأسفل"
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = "استخدام يوب! افتراضيات "
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = "استخدام الخيارات الموجودة بالأسفل"
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = "تتبع الارتباطات السابقة:"
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = "اتساع الأولى"
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "أهمية الصفحة"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = "محددات مواقع المعلومات حقن!"
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = "تحديث معلومات الموقع البذور!"
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = "استخدام الخيارات الموجودة بالأسفل"
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = "استخدام يوب! افتراضيات "
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = "استخدام الخيارات الموجودة بالأسفل"
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = "ابدأ"
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = "أيام 1"
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = "يومين"
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = "3 أيام"
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = "7 أيام"
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = "14 يوما"
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = "خيارات الصفحة تحديث!"
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = "تصفية تحديث الصفحات!"
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = "حدد عنوان URL تم تحريرها مسبقاً"
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = "نتيجة تحديث الصفحة يحتاج إلى تحديد عنوان URL!"
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = "تحديث الصفحة النتيجة!"
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = "تحميل الصفحة!"
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = "نوع الوسائط"
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = "فيديو"
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = "RSS"
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = "مؤشر/ميكس للاستخدام"
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = "مصدر الوسائط المضافة!"
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = "وأضاف سوبسيرتش!"
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = "مصدر الوسائط المحذوفة!"
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = "حذف سوبسيرتش!"
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = "حدد تتبع الارتباطات"
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = "تتبع الارتباطات الافتراضية"
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = "حدد تتبع الارتباطات"
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = "تتبع الارتباطات الافتراضية"
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = "لم يكشف عن اسمه الزحف"
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = "الزحف ميكس إنشاؤها!"
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = "الزحف ميكس حذف!"
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = "ميكسحذف لاتوجد لا!"
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = "إضافة عمليات تتبع الارتباطات"
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = "عدد من النتائج"
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = "الوزن"
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = "إجراءات"
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = "إضافة استعلام"
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = "الزحف ميكس التغييرات المحفوظة!"
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = "يسمح بتتبع ارتباطات م
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = "غير مسموح به مواقع/مواقع مع الحصص"
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = "مواقع البذور"
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = "الزحف إلى مواقع حقن الحالية"
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = "تتبع الارتباطات أو مجلد قوس إلى Re-index:"
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = "حفظ الخيارات"
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "إعدادات"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "تسجيل الدخول"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "أنشطة"
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "أنشطة"
 ; signin_element.php line: 77
 signin_element_signout = "تسجيل الخروج"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = "أكثر"
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = "خروج السيارات في دقيقة واحدة!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "العودة إلى يوب"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = "العودة إلى يوب"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = "بي إتش بي محرك البحث-يوب!"
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = "شهدت محددات مواقع المعلومات"
 ; statistics_view.php line: 111
 statistics_view_number_hosts = "ينظر إلى أسماء المضيفين"
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "العودة إلى يوب"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = "خروج السيارات في دقيقة واحدة!!"
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/bn/configure.ini b/locale/bn/configure.ini
index 45a03b542..1b01bd89b 100755
--- a/locale/bn/configure.ini
+++ b/locale/bn/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = ""
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = ""
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = ""
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = ""
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = ""
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = ""
 ; signin_element.php line: 77
 signin_element_signout = ""
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/de/configure.ini b/locale/de/configure.ini
index a61d859ee..19c4ad61b 100755
--- a/locale/de/configure.ini
+++ b/locale/de/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = ""
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = ""
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = ""
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = ""
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = ""
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = ""
 ; signin_element.php line: 77
 signin_element_signout = ""
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/en-US/configure.ini b/locale/en-US/configure.ini
index a4178db18..ef2283d32 100755
--- a/locale/en-US/configure.ini
+++ b/locale/en-US/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "Role Name Deleted"
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = "Role updated!"
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "Stopping crawl. . .This will take a moment to refresh."
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "Resuming crawl. . .This will take a moment to refresh."
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "Deleting Crawl. . .This will take a moment to refresh."
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "Delete Crawl Failed!!"
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = "Setting Crawl To Use as Index"
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "Starting New Crawl!"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "No Description for Crawl"
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = "Use options below"
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = "Use Yioop! defaults"
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = "Use options below"
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = "Previous Crawl:"
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = "Urls injected on %s."
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = "User suggested URLS added!"
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = "User suggested URLS buffer cleared!"
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = "No new urls in suggest data"
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = "Breadth First"
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "Page Importance"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = "Urls injected on %s."
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = "Urls Injected!"
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = "Updating Seed Site Info!"
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = "New classifier created."
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = "A classifier with that name already exists."
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = "Classifier deleted."
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = "No classifier with that name."
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = "No classifier with that name."
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = "Finalizing classifier."
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = "Finalizing classifier."
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = "A classifier with that name already exists."
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = "Failed to load documents"
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = "Loading"
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = "Added {1} {2} examples"
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = "Failed to update labels."
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = "Updating"
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = "Failed to update accuracy"
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = "N/A"
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = "No documents"
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = "{1}{2} documents"
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = "In Class"
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = "Not In Class"
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = "Skip"
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = "Prediction: {1}"
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = "{1}%% confidence, {2}%% disagreement"
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = "Use options below"
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = "Use Yioop! defaults"
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = "Use options below"
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = "Never"
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = "1 days"
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = "2 days"
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = "3 days"
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = "7 days"
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = "14 days"
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = "Basic"
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = "Centroid"
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = "Page Options Updated!"
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = "Running Tests!"
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = "Filter Pages Updated!"
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = "Select a Previously Edited URL"
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = "Result Page Update needs to Specify the URL!"
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = "Result Page Updated!"
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = "Page Loaded!"
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = "Media Kind"
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = "Video"
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = "RSS"
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = "Index/Mix to Use"
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = "Type of Source Not Set!"
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = "All Fields Need to be Filled!"
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = "Media Source Added!"
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = "All Fields Need to be Filled!"
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = "Subsearch Added!"
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = "Source Was Not Deleted!"
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = "Media Source Deleted!"
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = "Source Was Not Deleted!"
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = "Subsearch Deleted!"
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = "Subsearch Updated!"
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = "Media Source Updated!"
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = "Attempt to change access to unknown value!"
 ; social_component.php line: 540
 social_component_group_filter_users = "Filtering Users!"
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = "Error in comment data!"
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = "Cannot post blank comment!"
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = "%s joined %s!"
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = "On %s, you joined the group  %s."
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = "Comment Added!"
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = "Error Deleting Item"
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = "Item Deleted!"
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = "No Item Deleted!"
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = "Error in comment data!"
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = "Need both title and description!"
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = "Thread Created!"
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = "Error in comment data!"
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = "Need both title and description!"
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = "Post was just edited elsewhere (another tab?)"
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = "Cannot Update Post!"
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = "Cannot Update Post!"
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = "Post Updated!"
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = "%s joined %s!"
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = "On %s, you joined the group  %s."
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = "Missing Fields!"
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = "%s Wiki Page Created!"
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = "Discuss the page in this thread!"
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = "Page Saved!"
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = "Back"
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = "Historical Version of %s from %s."
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = "Back"
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = "%s line differences between %s and %s."
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = "Revert to %s."
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = "Page Reverted!"
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = "Error Reverting Page!"
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = "Main"
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = "Small"
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = "Medium"
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = "Large"
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = "Size"
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = "Header row:"
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = "Example"
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = "Table Title"
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = "Submit"
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = "Cancel"
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = "Bold text"
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = "Italic text"
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = "Underlined text"
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = "Striked text"
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = "Heading"
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = "Level 1 Heading"
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = "Level 2 Heading"
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = "Level 3 Heading"
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = "Level 4 Heading"
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = "Unordered list item"
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = "Ordered list item"
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = "Insert non-formatted text here"
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = "Add Search Bar Form"
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = "Size"
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = "Add Wiki Table"
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = "Column Count:"
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = "Row Count:"
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = "Add Hyperlink"
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = "Text:"
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = "URL:"
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = "Select Crawl"
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = "Default Crawl"
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = "Select Crawl"
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = "Default Crawl"
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = "Unnamed Crawl"
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = "Crawl Mix Created!"
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = "Invalid Timestamp!"
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = "Crawl Mix Deleted!"
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = "Mix to Delete Does not Exist!"
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = "Mix Successfully Imported!"
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = "Setting Crawl To Use as Index"
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = "Error in comment data!"
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = "Shared Mix Has An Invalid Timestamp"
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = "Try out this crawl mix!"
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = "%s is sharing the crawl mix %s!"
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = "Thread Created!"
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = "Not Mix Owner!"
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = "Add Crawls"
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = "Results Shown"
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = "Remove"
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = "Weight"
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = "Name"
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = "Keywords"
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = "Actions"
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = "Add Query"
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = "Delete"
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = "Too Many Search Result Fragments!"
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = "Crawl Mix Changes Saved!"
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = "Allowed To Crawl Sites"
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = "Disallowed Sites/Sites with Quotas"
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = "Seed Sites"
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = "Add User Suggest data"
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = "Clear User Suggest data"
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = "Sites to Inject into Current Crawl"
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = "Add User Suggest data"
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = "Clear User Suggest data"
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = "Crawl or Arc Folder to Re-index:"
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = "Yioop API access required for mix archive crawls  "
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = "Save Options"
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = "Comment"
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = "Start New Thread"
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = "Comment"
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = "Add a Comment"
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = "Save"
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = "Start New Thread"
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = "Subject"
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = "Post"
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = "Save"
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = "Edit Post"
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = "Subject"
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = "Post"
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = "Save"
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = "Group Feeds No Longer Updating!"
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = "Make a Mix Form"
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = "Mix Name"
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = "Other Searches"
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = "Previous"
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = "Next"
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = "My Accounts"
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "Settings"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "Sign In"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "Admin"
 ; moreoptions_element.php line: 159
 signin_view_create_account = "Create Account"
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = "Suggest a URL"
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = "Wiki Pages"
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = "Tools"
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "Admin"
 ; signin_element.php line: 77
 signin_element_signout = "Sign Out"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = "More"
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = "Create Page: %s"
 ; wiki_element.php line: 337
 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: 356
+; wiki_element.php line: 357
 wiki_view_back = "Back"
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = "Difference:"
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = "Go"
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = "First"
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = "Second"
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = "First"
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = "Second"
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = "Edited by %s. "
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = "(%s bytes)."
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = "Revert"
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = "Revert"
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = "%s Wiki Page Discussion"
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = "Feed"
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = "Wiki"
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = "%s User"
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = "My Feeds"
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = "Sound you like the least:"
 ; register_view.php line: 126
 register_view_recovery6_choices = "accordian,drum,flute,guitar,harmonica,harp,horn,oboe,piano,triangle,trumpet,violin,whistle,xylophone"
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = "Create Account"
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = "First Name:"
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = "Last Name:"
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = "Username:"
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = "Email:"
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = "Password:"
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = "Re-type password:"
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = "Recovery Info:"
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = "Human Check:"
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = "Recovery Info:"
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = "Human Check:"
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = "By clicking Create Account, I agree to the"
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = "Yioop Terms"
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = "and"
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = "Privacy Policy"
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = "."
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = "Create Account"
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "Return to Yioop"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = "Create Account"
 ; signin_view.php line: 129
 signin_view_return_yioop = "Return to Yioop"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = "PHP Search Engine - Yioop!"
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = "Seen Urls"
 ; statistics_view.php line: 111
 statistics_view_number_hosts = "Hostnames Seen"
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = "Suggest A URL"
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = "Suggest a site for the next web crawl. Up to ten sites per day can be accepted."
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = "URL:"
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = "Human Check:"
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = "Human Check:"
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = "Submit"
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "Return to Yioop"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = "Wiki"
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = "%s page does not exist."
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = "You can create this page by clicking on the edit link above."
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = "Or you can use the form below to create or edit a different page."
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = "Submit"
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = "Wiki Syntax Guide"
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = "%s page does not exist."
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = "If you have sufficient access you might be able to create the page by logging in and navigating back here."
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = "%s page does not exist."
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = "History"
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = "Discuss"
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = "Locale: %s"
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = "Page: %s"
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = "To archive a page so it won&#039;t appear in search results delete its text and save."
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = "Edit Reason:"
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = "Save"
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = "%s Group Wiki Page List"
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = "Search group page titles"
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = "Go"
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = "Create Page: %s"
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = "Back"
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = "Difference:"
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = "Go"
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = "First"
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = "Second"
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = "First"
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = "Second"
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = "Edited by %s. "
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = "(%s bytes)."
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = "Revert"
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = "Revert"
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/en-US/statistics.txt b/locale/en-US/statistics.txt
index 5a165df53..b6bef56f0 100755
--- a/locale/en-US/statistics.txt
+++ b/locale/en-US/statistics.txt
@@ -1 +1 @@
-d:100;
\ No newline at end of file
+d:99;
\ No newline at end of file
diff --git a/locale/es/configure.ini b/locale/es/configure.ini
index e9806a6c4..d61146a48 100755
--- a/locale/es/configure.ini
+++ b/locale/es/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = ""
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "Deteniendo el rastreo. . . Esto tomar&aacute; un momento para recargar."
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "Reanundando el rastreo. . . Esto tomar&aacute; un momento para recargar."
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "Eliminando el rastreo. . . Esto tomar&aacute; un momento para recargar."
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "Eliminar el rastreo no tuvo &eacute;xito"
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = "Usar el rastreo como &iacute;ndice"
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "Iniciando nuevo rastreo"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "No hay descripci&oacute;n para el rastreo"
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = "Utilice las opciones a continuaci&oacute;n"
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = "Utilizar Yioop! por defecto"
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = "Utilice las opciones a continuaci&oacute;n"
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = "Rastreo anterior:"
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = "Breadth First"
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "Importancia de p&aacute;gina"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = "Urls inyectadas!"
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = "Utilice las opciones a continuaci&oacute;n"
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = "Utilizar Yioop! por defecto"
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = "Utilice las opciones a continuaci&oacute;n"
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = "Nunca"
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = "1 d&iacute;a"
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = "2 d&iacute;as"
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = "3 d&iacute;as"
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = "7 d&iacute;as"
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = "14 d&iacute;as"
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = "Filtrar P&aacute;ginas Actualizadas!"
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = "Seleccionar una URL previamente editada"
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = "Resultados de la actualizaci&oacute;n de la p&aacute;gina debe especificar la URL!"
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = "P&aacute;gina Actualizada!"
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = "P&aacute;gina Cargada!"
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = "Seleccionar Rastreo"
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = "Seleccionar Rastreo"
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = "Rastreo sin nombre"
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = "Rastreo Mix creado!"
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = "Rastreo Mix eliminado!"
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = "Mix para eliminar (borrar) no existe!"
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = "A&ntilde;adir Rastreos"
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = "N&uacute;mero de Resultados"
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = "Tama&ntilde;o"
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = "Acciones"
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = "Agregar consulta"
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = "Guardados los Cambios del Rastreo Mix!"
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = "Permitido para rastrear sitios"
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = "Sitios no permitidos/Sites with Quotas"
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = "Sitios para inyectar en rastreo actual"
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = "Guardar opciones"
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = ""
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = ""
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = ""
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = ""
 ; signin_element.php line: 77
 signin_element_signout = ""
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = "Auto-cerrar la sesi&oacute;n en un minuto!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = "Auto-cerrar la sesi&oacute;n en un minuto!"
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/fa/configure.ini b/locale/fa/configure.ini
index 9006fac67..b9d86af4d 100755
--- a/locale/fa/configure.ini
+++ b/locale/fa/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "نقش حذف شد"
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "در حال متوقف کردن خزش ... چند لحظه تا باز آوری طول می&zwnj;کشد. "
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "در حال از سرگیری خزش ... چند لحظه تا باز آوری طول می&zwnj;کشد. "
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "در حال حذف کردن خزش ... چند لحظه تا باز آوری طول می&zwnj;کشد. "
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "حذف خزش شکست خورد!!"
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = "قرار دادن خزش به عنوان نمایه"
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "در حال آغاز خزش جدید!"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "شرحی برای خزش نیست"
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = "از گزینه&zwnj;های زیر استفاده کن"
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = "از پیش&zwnj;فرض&zwnj;های Yioop! استفاده کن"
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = "از گزینه&zwnj;های زیر استفاده کن"
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = "خزش قبلی:"
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = "اول سطح"
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "اهمیت صفحه"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = "urlها وارد شدند."
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = "در حال به روز آوری اطلاعات seed site "
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = "از گزینه&zwnj;های زیر استفاده کن"
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = "از پیش&zwnj;فرض&zwnj;های Yioop! استفاده کن"
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = "از گزینه&zwnj;های زیر استفاده کن"
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = "هرگز"
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = "۱ روز"
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = "۲ روز"
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = "۳ روز"
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = "۷ روز"
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = "۱۴ روز"
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = "تنظیمات صفحه به روز شد!"
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = "پالایه صفحات به روز شد!"
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = "یک URL که قبلن ویرایش شده انتخاب کنید"
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = "به روز رسانی صفحهٔ نتایج احتیاج به تعیین URL دارد! "
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = "صفحهٔ نتایج به روز آوری شد!"
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = "صفحه بارگذاری شد!"
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = "نوع رسانه"
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = "ویدیو"
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = "RSS"
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = "نمایه/ترکیب مورد استفاده"
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = "منبع رسانه&zwnj;ها اضافه شد!"
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = "زیرجستجو اضافه شد!"
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = "منبع رسانه&zwnj;ها حذف شد!"
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = "زیر جستجو حذف شد!"
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = "یک خزش انتخاب کنید"
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = "خزش پیش&zwnj;فرض"
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = "یک خزش انتخاب کنید"
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = "خزش پیش&zwnj;فرض"
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = "خزش بی&zwnj;نام"
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = "ترکیب خزش ساخته شد!"
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = "ترکیب خزش حذف شد!"
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = "ترکیبی که می&zwnj;خواهید حذف کنید وجود ندارد!"
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = "خزش اضافه کن"
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = "تعداد نتایج"
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = "وزن"
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = "فرمان&zwnj;ها"
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = "پُرسمان اضافه کن"
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = "تغییرات ترکیب خزش ذخیره شد!"
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = "اجازهٔ خزیدن در این س
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = "سایت&zwnj;های غیرمجاز/سایت&zwnj;های با سهمیه بندی"
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = "سایت&zwnj;های seed"
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = "سایت&zwnj;هایی که به خزش جاری اضافه شوند"
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = "این خزش یا پوشهٔ آرک دوباره نمایه&zwnj;بندی شود:"
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = "برای خزش ترکیبی آرشیو، دسترسی به Yioop API لازم است"
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = "ذخیرهٔ تنظیمات"
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "تنظیمات"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "ورود"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "مدیر"
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "مدیر"
 ; signin_element.php line: 77
 signin_element_signout = "خروج"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = "بیشتر"
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = "خروج خودکار تا یک دقیقهٔ دیگر!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "بازگشت به Yioop"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = "بازگشت به Yioop"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = "موتور جستجوی PHP - Yioop!"
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = "URLهای دیده شده"
 ; statistics_view.php line: 111
 statistics_view_number_hosts = "میزبان&zwnj;های دیده شده"
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "بازگشت به Yioop"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = "خروج خودکار تا یک دقیقهٔ دیگر!!"
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/fr-FR/configure.ini b/locale/fr-FR/configure.ini
index 1aa767415..2a94b0172 100755
--- a/locale/fr-FR/configure.ini
+++ b/locale/fr-FR/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = ""
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = ""
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "Param&egrave;tres de recherche"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "Connexion"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "Administration"
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "Administration"
 ; signin_element.php line: 77
 signin_element_signout = "D&eacute;connexion"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = "Plus"
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "Retourner &agrave; Yioop"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = "Retourner &agrave; Yioop"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "Retourner &agrave; Yioop"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/he/configure.ini b/locale/he/configure.ini
index e40fd4d5b..aed10275e 100755
--- a/locale/he/configure.ini
+++ b/locale/he/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "שם תפקיד נמחק"
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = ""
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = "השתמש באפשרויות הבאות"
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = " השתמש כבררת מחדל כמנוע חיפוש"
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = "השתמש באפשרויות הבאות"
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = "השתמש באפשרויות הבאות"
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = " השתמש כבררת מחדל כמנוע חיפוש"
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = "השתמש באפשרויות הבאות"
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = "שמור אפשרויות"
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = ""
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = ""
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = ""
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = ""
 ; signin_element.php line: 77
 signin_element_signout = ""
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/hi/configure.ini b/locale/hi/configure.ini
index 49e4d9c51..e0b20d5b0 100755
--- a/locale/hi/configure.ini
+++ b/locale/hi/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = ""
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "क्रॉल पुनः आरंभ करें"
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "सेटिंग्स"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "साइन इन करें"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "प्रशासक"
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "प्रशासक"
 ; signin_element.php line: 77
 signin_element_signout = "साइन आउट करें"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "वापस Yioop! पर"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = "वापस Yioop! पर"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "वापस Yioop! पर"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/in-ID/configure.ini b/locale/in-ID/configure.ini
index f8f8e350b..d041f919f 100755
--- a/locale/in-ID/configure.ini
+++ b/locale/in-ID/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "Rolename telah dihapus"
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = ""
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = ""
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "Masuk"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "Administratif"
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "Administratif"
 ; signin_element.php line: 77
 signin_element_signout = "Keluar"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/it/configure.ini b/locale/it/configure.ini
index a4ae9c148..845e74938 100755
--- a/locale/it/configure.ini
+++ b/locale/it/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "Nome Ruolo cancellato"
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "Scansione finita... Serve qualche momento per aggiornare."
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "Scansione ripresa... Serve qualche momento per aggiornare."
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "Scansione cancellata... Serve qualche momento per aggiornare."
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "Cancellazione Scansione fallita!!"
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = "Usa Scansione come indice"
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "Starting New Crawl!"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "Nessuna descrizione per la scansione"
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = "Usa opzioni seguenti"
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = "Usa predefiniti Yioop!"
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = "Usa opzioni seguenti"
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = "Scansione precedente:"
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = "Ampiezza prima"
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "Importanza Pagina"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = "URL aggiunti!"
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = "Aggiornamento info sito di partenza!"
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = "Usa opzioni seguenti"
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = "Usa predefiniti Yioop!"
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = "Usa opzioni seguenti"
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = "Mai"
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = "1 giorno"
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = "2 giorni"
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = "3 giorni"
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = "7 giorni"
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = "14 giorni"
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = "Opzioni Pagina aggiornate!"
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = "Filtro Pagina aggiornato!"
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = "Seleziona un URL precedentemente modificato"
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = "Aggiornamento pagina dei risultati necessita specificare URL!"
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = "Pagina dei risultatai aggiornata!"
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = "Pagina caricata!"
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = "Seleziona Scansione"
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = "Seleziona Scansione"
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = "Scansione senza nome"
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = "Unione Scansioni creata!"
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = "Unione Scansioni cancellata!"
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = "Unione Scansioni da cancellare inesistente!"
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = "Aggiungi scansione"
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = "Numero di risultati"
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = "Peso"
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = "Azioni"
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = "Aggiungi Ricerca"
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = "Cambiamenti Unione Scansioni effettuati!"
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = "Siti ammessi alla Scansione"
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = "Siti non ammessi/Siti con limiti"
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = "Siti di partenza"
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = "Siti da aggiungere alla Scansione corrente"
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = "Scansione o Cartella archivi da reindicizzare:"
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = "Salva opzioni"
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "Impostazioni"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "Accedi"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "Amministratore"
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "Amministratore"
 ; signin_element.php line: 77
 signin_element_signout = "Esci"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = "Pi&ugrave;"
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = "Fine Accesso in un minuto!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "Ritorna a Yioop"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = "Ritorna a Yioop"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = "Yioop! Motore di Ricerca in PHP"
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = "URL visti"
 ; statistics_view.php line: 111
 statistics_view_number_hosts = "Hostname Visti"
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "Ritorna a Yioop"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = "Fine Accesso in un minuto!!"
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/ja/configure.ini b/locale/ja/configure.ini
index a30872b82..7b01bbf78 100755
--- a/locale/ja/configure.ini
+++ b/locale/ja/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "役割を削除しました"
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "検索を停止する。ちょっと待ってください。"
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "検索を再会する。ちょっと待ってください。"
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "検索を削除する。ちょっと待ってください。"
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "検索削除を失敗しました"
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = "指数のための検索設定する。"
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "新しい検索を始まります"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "検索の説明ありません"
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = "幅優先"
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "ページの重要性"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = "シッド情報の更新"
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = "検索ができます"
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = "シッドサイト"
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = "保存オプション"
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "設定"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "サインイン"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "管理"
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "管理"
 ; signin_element.php line: 77
 signin_element_signout = "ログアウト"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = "自動なログアウト一分ぐらい"
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "ウィオップ!に戻る"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = "ウィオップ!に戻る"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "ウィオップ!に戻る"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = "自動なログアウト一分ぐらい"
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/kn/configure.ini b/locale/kn/configure.ini
index 053053b38..f043badd9 100755
--- a/locale/kn/configure.ini
+++ b/locale/kn/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "ಈ ಪಾತ್ರದ ಹೆಸರ
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "ಕ್ರಾವ್ಲನ್ನು ನಿಲ್ಲಿಸುತಿದ್ದಿವಿ...ಈ ತೆರೆ ಸ್ವಲ್ಪ ಕ್ಷಣಗಳ ನಂತರ ಮಾರ್ಪಡುವುದು "
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "ಕ್ರಾವ್ಲನ್ನು ಮರುಚಾಲಿಸುತಿದ್ದಿ...ಈ ತೆರೆ ಸ್ವಲ್ಪ ಕ್ಷಣಗಳ ನಂತರ ಮಾರ್ಪಡುವುದು "
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "ಕ್ರಾವ್ಲನ್ನು ಅಳಿಸುತಿದ್ದಿವಿ...ಈ ತೆರೆ ಸ್ವಲ್ಪ ಕ್ಷಣಗಳ ನಂತರ ಮಾರ್ಪಡುವುದು"
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "ಕ್ರಾವ್ಲನ್ನು ಅಳಿಸಲು ವಿಫಲವಾಗಿದೆ!! "
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = "ಸೂಚಿಕೆಯಾಗಿ ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ"
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "ಹೊಸ ಕ್ರಾವ್ಲ್  ಪ್ರಾರಂಬಿಸುತಿದ್ದಿವಿ"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "ಕ್ರಾವ್ಲಿನ ವಿವರಣೆ ಇಲ್ಲ"
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = "ಐಚ್ಛಿಕ ಆಯ್ಕೆ ಉಪಯೋಗಿಸಿ"
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = "ಯೂಪ್ ನ ಪೂರ್ವನಿಯೋಜಿತ ನಿಗದಿಗಳನ್ನು ಉಪಯೋಗಿಸಿ"
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = "ಐಚ್ಛಿಕ ಆಯ್ಕೆ ಉಪಯೋಗಿಸಿ"
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = "ಮೊದಲಿನ ಕ್ರಾವ್ಲ:"
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = "ಅಗಲ ಮೊದಲಾಗಿ"
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "ಪುಟ ಪ್ರಾಮುಖ್ಯತೆ"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = "ಮೂಲ ವೆಬ್ ಸೈಟಿನ ಮಾಹಿತಿಯನ್ನು ಪರಿಷ್ಕರಿಸಲಾಗುತ್ತಿದೆ"
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = "ಐಚ್ಛಿಕ ಆಯ್ಕೆ ಉಪಯೋಗಿಸಿ"
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = "ಯೂಪ್ ನ ಪೂರ್ವನಿಯೋಜಿತ ನಿಗದಿಗಳನ್ನು ಉಪಯೋಗಿಸಿ"
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = "ಐಚ್ಛಿಕ ಆಯ್ಕೆ ಉಪಯೋಗಿಸಿ"
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = "ಹೆಸರಿಡದ ಕ್ರಾವ್ಲ"
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = "ಕ್ರಾವ್ಲಗಳ ಮಿಶ್ರಣ ಸೃಜಿಸಲಾಯಿತು"
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = "ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಳಿಸಲಾಗಿದೆ"
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = "ಅಳಿಸಬೇಕಾದ ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇಲ್ಲ"
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = "ಕ್ರಾವ್ಲಗಳನ್ನು ಸೇರಿಸಿ"
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = "ಫಲಿತಾಂಶಗಳ ಸಂಖ್ಯೆ"
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = "ಗೌರವ"
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = "ಕ್ರಿಯೆಗಳು"
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = "ಪ್ರಶ್ನೆಯನ್ನು ಸೇರಿಸು"
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = "ಕ್ರಾವ್ಲ್ ಮಿಶ್ರಣದಲ್ಲಿ ಬದಲಾವಣೆಯನ್ನು ಉಳಿಸು"
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "ನಿಗದಿಗಳು"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "ಒಳಪ್ರವೇಶಿಸಿ"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "ಕಾರ್ಯ ನಿರ್ವಾಹಕ "
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "ಕಾರ್ಯ ನಿರ್ವಾಹಕ "
 ; signin_element.php line: 77
 signin_element_signout = "ನಿಷ್ಕ್ರಮಿಸಿ"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "ಯೂಪ್&#039;ಗೆ ಮರಳಿರಿ"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = "ಯೂಪ್&#039;ಗೆ ಮರಳಿರಿ"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "ಯೂಪ್&#039;ಗೆ ಮರಳಿರಿ"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/ko/configure.ini b/locale/ko/configure.ini
index 61082a4c2..d642c0a79 100755
--- a/locale/ko/configure.ini
+++ b/locale/ko/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "사용자 권한이름을 삭제하
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "크롤을 중지합니다.  잠시만 기다려 주십시요."
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "크롤을 다시 시작합니다. 잠시만 기다려 주십시요."
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "크롤을 삭제합니다. 잠시만 기다려 주십시요."
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "크롤 삭제 실패!!"
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = "크롤을 인덱스로써 사용하기 지정"
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "크롤 시작!!"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "크롤에 대한 설명이 존재 하지 않습니다."
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = "너비 우선"
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "페이지 중요성"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = "씨드 사이트 업데이트"
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = "크롤을 허가한 사이트들"
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = "씨드 사이트들"
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = "옵션들 저장하기"
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "세팅"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "로그 인"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "관리자"
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "관리자"
 ; signin_element.php line: 77
 signin_element_signout = "로그 아웃"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = "1 분내에 자동 로그 아웃 됍니다."
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "Yioop 으로 돌아가기"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = "Yioop 으로 돌아가기"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "Yioop 으로 돌아가기"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = "1 분내에 자동 로그 아웃 됍니다."
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/pl/configure.ini b/locale/pl/configure.ini
index bb2577be4..b95b39c7a 100755
--- a/locale/pl/configure.ini
+++ b/locale/pl/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = ""
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = ""
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = ""
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = ""
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = ""
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = ""
 ; signin_element.php line: 77
 signin_element_signout = ""
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/pt/configure.ini b/locale/pt/configure.ini
index 8747d7d85..5ef44eb3e 100755
--- a/locale/pt/configure.ini
+++ b/locale/pt/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = ""
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = ""
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = ""
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = ""
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = ""
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = ""
 ; signin_element.php line: 77
 signin_element_signout = ""
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/ru/configure.ini b/locale/ru/configure.ini
index 4680e21a2..d2a69faef 100755
--- a/locale/ru/configure.ini
+++ b/locale/ru/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = ""
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = ""
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = ""
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = ""
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = ""
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = ""
 ; signin_element.php line: 77
 signin_element_signout = ""
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/te/configure.ini b/locale/te/configure.ini
index c9d322edd..6e1442cfb 100755
--- a/locale/te/configure.ini
+++ b/locale/te/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "రోల్ నేం డిలీ
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "క్రాల్ ఆగుతున్నది ... కొంత నమయం పట్టవచ్చు"
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "క్రాల్ తిరిగి  మొదలు అవుతున్నది ... కొంత నమయం పట్టవచ్చు"
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "క్రాల్ తొలగించ బడుతోంది ... కొంత నమయం పట్టవచ్చు"
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "డిలీట్ క్రాల్ విజయవంతం కాలేదు"
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "కొత్త క్రాల్ మొదలు అవుతున్నది"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "క్రాల్ కు వివరణ లేదు"
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = "కింది ఆప్సం ఉపయొగిచండి"
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = "యూప్ డిఫాల్టస ఉపయొగిచండి"
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = "కింది ఆప్సం ఉపయొగిచండి"
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = "ముందటి క్రాల్"
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "పేజ్ పా్రముఖ్యత"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = "కింది ఆప్సం ఉపయొగిచండి"
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = "యూప్ డిఫాల్టస ఉపయొగిచండి"
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = "కింది ఆప్సం ఉపయొగిచండి"
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = "క్రాల్ ఎంచుకోండి"
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = "డిఫాల్ట  క్రాల్"
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = "క్రాల్ ఎంచుకోండి"
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = "డిఫాల్ట  క్రాల్"
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = "పేరు లేని క్రాల్"
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = "క్రాల్ లు జోడించుము"
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = "బరువు"
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = "యాక్సన్ లు"
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = "క్వెరి జోడించుము"
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "సెట్టింగులు"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "సైన్ ఇన్ "
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "అడ్మిన్ "
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "అడ్మిన్ "
 ; signin_element.php line: 77
 signin_element_signout = "సైన్ ఔట్ "
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/th/configure.ini b/locale/th/configure.ini
index 79fc569f2..c16350d64 100755
--- a/locale/th/configure.ini
+++ b/locale/th/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = ""
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = ""
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = ""
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = ""
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = ""
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = ""
 ; signin_element.php line: 77
 signin_element_signout = ""
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/tr/configure.ini b/locale/tr/configure.ini
index 2ec256415..1a49be2db 100755
--- a/locale/tr/configure.ini
+++ b/locale/tr/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = ""
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = ""
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = ""
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = ""
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = ""
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = ""
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = ""
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = ""
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = ""
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = ""
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = ""
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = ""
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = ""
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = ""
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = ""
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = ""
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = ""
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = ""
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = ""
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = ""
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = ""
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = ""
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = ""
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = ""
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = ""
 ; signin_element.php line: 77
 signin_element_signout = ""
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = ""
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = ""
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = ""
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/vi-VN/configure.ini b/locale/vi-VN/configure.ini
index 038003b77..a98756d21 100755
--- a/locale/vi-VN/configure.ini
+++ b/locale/vi-VN/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "X&oacute;a chức vụ"
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "Ngừng thu thập dữ liệu"
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "Tiếp tục thu thập dữ liệu"
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "X&oacute;a thu thập dữ liệu th&agrave;nh c&ocirc;ng"
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "X&oacute;a thu thập dữ liệu kh&ocirc;ng th&agrave;nh c&ocirc;ng"
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = "Thiết lập thu thập dữ liệu để sử dụng l&agrave;m chỉ mục"
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "Bắt đầu sự b&ograve; mới"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "Kh&ocirc;ng c&oacute; sự m&ocirc; tả n&agrave;o"
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = "Sử dụng dưới đ&acirc;y"
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = "Sử dụng mặc định"
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = "Sử dụng dưới đ&acirc;y"
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = "trước thu thập dữ liệu"
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = "Bề rộng đầu ti&ecirc;n"
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "Trang quan trọng"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = ""
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = "Cập nhật th&ocirc;ng tin trang mạng lươi hạt giống"
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = "Sử dụng dưới đ&acirc;y"
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = "Sử dụng mặc định"
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = "Sử dụng dưới đ&acirc;y"
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = ""
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = ""
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = ""
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = ""
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = ""
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = ""
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = ""
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = ""
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = ""
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = ""
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = ""
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = ""
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = ""
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = ""
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = ""
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = ""
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = ""
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = "Chọn thu thập th&ocirc;ng tin"
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = "Chọn thu thập th&ocirc;ng tin"
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = "V&ocirc; danh"
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = "Tạo ra hỗn hợp "
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = "X&oacute;a kết hợp "
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = "Kết hợp n&agrave;y kh&ocirc;ng tồn tại"
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = "Cộng th&ecirc;m thu thập"
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = "Số kết quả"
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = "Trọng lượng"
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = "H&agrave;nh động"
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = "Cộng th&ecirc;m truy vấn"
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = "Kết hợp đ&atilde; được lưu dữ"
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = "Lưu những lựa chọn"
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "Những c&agrave;i đặt"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "Đăng nhập"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = ""
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = ""
 ; signin_element.php line: 77
 signin_element_signout = "Tho&aacute;t"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = "Tự động tho&aacute;t trong một ph&uacute;t"
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "Trở lại trang Yioop"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = "Trở lại trang Yioop"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "Trở lại trang Yioop"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = "Tự động tho&aacute;t trong một ph&uacute;t"
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/locale/zh-CN/configure.ini b/locale/zh-CN/configure.ini
index ab55cb3ca..8ef556238 100755
--- a/locale/zh-CN/configure.ini
+++ b/locale/zh-CN/configure.ini
@@ -237,220 +237,226 @@ accountaccess_component_rolename_deleted = "刪除暱稱"
 ; accountaccess_component.php line: 825
 accountaccess_component_role_updated = ""
 ;
-; crawl_component.php line: 91
+; crawl_component.php line: 90
 crawl_component_stop_crawl = "停止搜尋,需要一段時間更新"
 ;
-; crawl_component.php line: 108
+; crawl_component.php line: 106
 crawl_component_resume_crawl = "回復搜尋,需要一段時間更新"
 ;
-; crawl_component.php line: 143
+; crawl_component.php line: 140
 crawl_component_delete_crawl_success = "刪除搜尋,需要一段時間更新"
 ;
-; crawl_component.php line: 148
+; crawl_component.php line: 145
 crawl_component_delete_crawl_fail = "刪除搜尋失敗"
 ;
-; crawl_component.php line: 155
+; crawl_component.php line: 151
 crawl_component_set_index = "設置索引"
 ;
-; crawl_component.php line: 183
+; crawl_component.php line: 178
 crawl_component_starting_new_crawl = "開始新的搜尋"
 ;
-; crawl_component.php line: 193
+; crawl_component.php line: 188
 crawl_component_no_description = "沒有任何項目"
 ;
-; crawl_component.php line: 341
+; crawl_component.php line: 336
 crawl_component_use_below = "以下使用者"
 ;
-; crawl_component.php line: 342
+; crawl_component.php line: 337
 crawl_component_use_defaults = "使用者預設"
 ;
-; crawl_component.php line: 344
+; crawl_component.php line: 340
 crawl_component_use_below = "以下使用者"
 ;
-; crawl_component.php line: 348
+; crawl_component.php line: 344
 crawl_component_previous_crawl = "前一搜尋"
 ;
-; crawl_component.php line: 413
+; crawl_component.php line: 415
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 429
 crawl_component_add_suggest = ""
 ;
-; crawl_component.php line: 418
-crawl_component_clear_suggest = ""
+; crawl_component.php line: 433
+crawl_component_no_new_suggests = ""
 ;
-; crawl_component.php line: 464
+; crawl_component.php line: 483
 crawl_component_breadth_first = "深度優先"
 ;
-; crawl_component.php line: 466
+; crawl_component.php line: 485
 crawl_component_page_importance = "網頁重要性"
 ;
-; crawl_component.php line: 523
+; crawl_component.php line: 545
+crawl_component_added_urls = ""
+;
+; crawl_component.php line: 555
 crawl_component_urls_injected = "插入網址"
 ;
-; crawl_component.php line: 534
+; crawl_component.php line: 565
 crawl_component_update_seed_info = "更新種子資訊"
 ;
-; crawl_component.php line: 584
+; crawl_component.php line: 615
 crawl_component_new_classifier = ""
 ;
-; crawl_component.php line: 587
+; crawl_component.php line: 618
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 611
+; crawl_component.php line: 642
 crawl_component_classifier_deleted = ""
 ;
-; crawl_component.php line: 615
+; crawl_component.php line: 646
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 627
+; crawl_component.php line: 658
 crawl_component_no_classifier = ""
 ;
-; crawl_component.php line: 646
+; crawl_component.php line: 677
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 671
+; crawl_component.php line: 702
 crawl_component_finalizing_classifier = ""
 ;
-; crawl_component.php line: 716
+; crawl_component.php line: 747
 crawl_component_classifier_exists = ""
 ;
-; crawl_component.php line: 727
+; crawl_component.php line: 758
 crawl_component_load_failed = ""
 ;
-; crawl_component.php line: 729
+; crawl_component.php line: 760
 crawl_component_loading = ""
 ;
-; crawl_component.php line: 731
+; crawl_component.php line: 762
 crawl_component_added_examples = ""
 ;
-; crawl_component.php line: 733
+; crawl_component.php line: 764
 crawl_component_label_update_failed = ""
 ;
-; crawl_component.php line: 735
+; crawl_component.php line: 766
 crawl_component_updating = ""
 ;
-; crawl_component.php line: 737
+; crawl_component.php line: 768
 crawl_component_acc_update_failed = ""
 ;
-; crawl_component.php line: 739
+; crawl_component.php line: 770
 crawl_component_na = ""
 ;
-; crawl_component.php line: 741
+; crawl_component.php line: 772
 crawl_component_no_docs = ""
 ;
-; crawl_component.php line: 743
+; crawl_component.php line: 774
 crawl_component_num_docs = ""
 ;
-; crawl_component.php line: 745
+; crawl_component.php line: 776
 crawl_component_in_class = ""
 ;
-; crawl_component.php line: 747
+; crawl_component.php line: 778
 crawl_component_not_in_class = ""
 ;
-; crawl_component.php line: 749
+; crawl_component.php line: 780
 crawl_component_skip = ""
 ;
-; crawl_component.php line: 751
+; crawl_component.php line: 782
 crawl_component_prediction = ""
 ;
-; crawl_component.php line: 753
+; crawl_component.php line: 784
 crawl_component_scores = ""
 ;
-; crawl_component.php line: 795
+; crawl_component.php line: 826
 crawl_component_use_below = "以下使用者"
 ;
-; crawl_component.php line: 796
+; crawl_component.php line: 827
 crawl_component_use_defaults = "使用者預設"
 ;
-; crawl_component.php line: 798
+; crawl_component.php line: 829
 crawl_component_use_below = "以下使用者"
 ;
-; crawl_component.php line: 806
+; crawl_component.php line: 837
 crawl_component_recrawl_never = "取消重新搜尋"
 ;
-; crawl_component.php line: 807
+; crawl_component.php line: 838
 crawl_component_recrawl_1day = "每日重新搜尋"
 ;
-; crawl_component.php line: 808
+; crawl_component.php line: 839
 crawl_component_recrawl_2day = "兩日重新搜尋"
 ;
-; crawl_component.php line: 809
+; crawl_component.php line: 840
 crawl_component_recrawl_3day = "三日重新搜尋"
 ;
-; crawl_component.php line: 810
+; crawl_component.php line: 841
 crawl_component_recrawl_7day = "一週重新搜尋"
 ;
-; crawl_component.php line: 811
+; crawl_component.php line: 842
 crawl_component_recrawl_14day = "兩週重新搜尋"
 ;
-; crawl_component.php line: 819
+; crawl_component.php line: 850
 crawl_component_basic = ""
 ;
-; crawl_component.php line: 820
+; crawl_component.php line: 851
 crawl_component_centroid = ""
 ;
-; crawl_component.php line: 1091
+; crawl_component.php line: 1122
 crawl_component_page_options_updated = "更新頁面選項"
 ;
-; crawl_component.php line: 1117
+; crawl_component.php line: 1148
 crawl_component_page_options_running_tests = ""
 ;
-; crawl_component.php line: 1279
+; crawl_component.php line: 1310
 crawl_component_results_editor_update = "編輯者更新結果"
 ;
-; crawl_component.php line: 1293
+; crawl_component.php line: 1324
 crawl_component_edited_pages = "編輯頁面"
 ;
-; crawl_component.php line: 1306
+; crawl_component.php line: 1337
 crawl_component_results_editor_need_url = "需要網址"
 ;
-; crawl_component.php line: 1312
+; crawl_component.php line: 1343
 crawl_component_results_editor_page_updated = "更新頁面"
 ;
-; crawl_component.php line: 1325
+; crawl_component.php line: 1356
 crawl_component_results_editor_page_loaded = "載入頁面"
 ;
-; crawl_component.php line: 1354
+; crawl_component.php line: 1385
 crawl_component_media_kind = "多媒體類別"
 ;
-; crawl_component.php line: 1355
+; crawl_component.php line: 1386
 crawl_component_video = "影片"
 ;
-; crawl_component.php line: 1356
+; crawl_component.php line: 1387
 crawl_component_rss_feed = "RSS"
 ;
-; crawl_component.php line: 1370
+; crawl_component.php line: 1401
 crawl_component_sources_indexes = ""
 ;
-; crawl_component.php line: 1423
+; crawl_component.php line: 1454
 crawl_component_no_source_type = ""
 ;
-; crawl_component.php line: 1437
+; crawl_component.php line: 1468
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1446
+; crawl_component.php line: 1477
 crawl_component_media_source_added = "增加多媒體"
 ;
-; crawl_component.php line: 1458
+; crawl_component.php line: 1489
 crawl_component_missing_fields = ""
 ;
-; crawl_component.php line: 1467
+; crawl_component.php line: 1498
 crawl_component_subsearch_added = ""
 ;
-; crawl_component.php line: 1473
+; crawl_component.php line: 1504
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1480
+; crawl_component.php line: 1511
 crawl_component_media_source_deleted = "刪除多媒體"
 ;
-; crawl_component.php line: 1487
+; crawl_component.php line: 1518
 crawl_component_no_delete_source = ""
 ;
-; crawl_component.php line: 1494
+; crawl_component.php line: 1525
 crawl_component_subsearch_deleted = ""
 ;
-; crawl_component.php line: 1527
+; crawl_component.php line: 1558
 crawl_component_subsearch_updated = ""
 ;
-; crawl_component.php line: 1561
+; crawl_component.php line: 1592
 crawl_component_media_source_updated = ""
 ;
 ; social_component.php line: 69
@@ -582,286 +588,286 @@ social_component_unknown_access = ""
 ; social_component.php line: 540
 social_component_group_filter_users = ""
 ;
-; social_component.php line: 605
+; social_component.php line: 606
 social_component_comment_error = ""
 ;
-; social_component.php line: 611
+; social_component.php line: 612
 social_component_no_comment = ""
 ;
-; social_component.php line: 625
+; social_component.php line: 626
 social_component_no_post_access = ""
 ;
-; social_component.php line: 633
+; social_component.php line: 634
 social_component_no_post_access = ""
 ;
-; social_component.php line: 639
+; social_component.php line: 640
 social_component_join_group = ""
 ;
-; social_component.php line: 642
+; social_component.php line: 643
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 654
+; social_component.php line: 655
 social_component_comment_added = ""
 ;
-; social_component.php line: 659
+; social_component.php line: 660
 social_component_delete_error = ""
 ;
-; social_component.php line: 667
+; social_component.php line: 668
 social_component_item_deleted = ""
 ;
-; social_component.php line: 671
+; social_component.php line: 672
 social_component_no_item_deleted = ""
 ;
-; social_component.php line: 678
+; social_component.php line: 679
 social_component_comment_error = ""
 ;
-; social_component.php line: 685
+; social_component.php line: 686
 social_component_need_title_description = ""
 ;
-; social_component.php line: 697
+; social_component.php line: 698
 social_component_no_post_access = ""
 ;
-; social_component.php line: 704
+; social_component.php line: 705
 social_component_thread_created = ""
 ;
-; social_component.php line: 712
+; social_component.php line: 713
 social_component_comment_error = ""
 ;
-; social_component.php line: 718
+; social_component.php line: 719
 social_component_need_title_description = ""
 ;
-; social_component.php line: 726
+; social_component.php line: 727
 social_component_post_edited_elsewhere = ""
 ;
-; social_component.php line: 736
+; social_component.php line: 737
 social_component_no_update_access = ""
 ;
-; social_component.php line: 746
+; social_component.php line: 747
 social_component_no_update_access = ""
 ;
-; social_component.php line: 753
+; social_component.php line: 754
 social_component_post_updated = ""
 ;
-; social_component.php line: 771
+; social_component.php line: 772
 social_component_join_group = ""
 ;
-; social_component.php line: 774
+; social_component.php line: 775
 social_component_join_group_detail = ""
 ;
-; social_component.php line: 995
+; social_component.php line: 999
 group_controller_missing_fields = ""
 ;
-; social_component.php line: 1002
+; social_component.php line: 1006
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1009
+; social_component.php line: 1013
 group_controller_page_created = ""
 ;
-; social_component.php line: 1010
+; social_component.php line: 1014
 group_controller_page_discuss_here = ""
 ;
-; social_component.php line: 1014
+; social_component.php line: 1018
 group_controller_page_saved = ""
 ;
-; social_component.php line: 1050
+; social_component.php line: 1054
 group_controller_back = ""
 ;
-; social_component.php line: 1051
+; social_component.php line: 1055
 group_controller_history_page = ""
 ;
-; social_component.php line: 1084
+; social_component.php line: 1088
 group_controller_back = ""
 ;
-; social_component.php line: 1085
+; social_component.php line: 1089
 group_controller_diff_page = ""
 ;
-; social_component.php line: 1099
+; social_component.php line: 1103
 social_component_wiki_edited_elsewhere = ""
 ;
-; social_component.php line: 1107
+; social_component.php line: 1111
 group_controller_page_revert_to = ""
 ;
-; social_component.php line: 1111
+; social_component.php line: 1115
 group_controller_page_reverted = ""
 ;
-; social_component.php line: 1116
+; social_component.php line: 1120
 group_controller_revert_error = ""
 ;
-; social_component.php line: 1174
+; social_component.php line: 1178
 group_controller_main = ""
 ;
-; social_component.php line: 1243
+; social_component.php line: 1247
 wiki_js_small = ""
 ;
-; social_component.php line: 1244
+; social_component.php line: 1248
 wiki_js_medium = ""
 ;
-; social_component.php line: 1245
+; social_component.php line: 1249
 wiki_js_large = ""
 ;
-; social_component.php line: 1246
+; social_component.php line: 1250
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1247
+; social_component.php line: 1251
 wiki_js_prompt_heading = ""
 ;
-; social_component.php line: 1248
+; social_component.php line: 1252
 wiki_js_example = ""
 ;
-; social_component.php line: 1249
+; social_component.php line: 1253
 wiki_js_table_title = ""
 ;
-; social_component.php line: 1250
+; social_component.php line: 1254
 wiki_js_submit = ""
 ;
-; social_component.php line: 1251
+; social_component.php line: 1255
 wiki_js_cancel = ""
 ;
-; social_component.php line: 1252
+; social_component.php line: 1256
 wiki_js_bold = ""
 ;
-; social_component.php line: 1253
+; social_component.php line: 1257
 wiki_js_italic = ""
 ;
-; social_component.php line: 1254
+; social_component.php line: 1258
 wiki_js_underline = ""
 ;
-; social_component.php line: 1255
+; social_component.php line: 1259
 wiki_js_strike = ""
 ;
-; social_component.php line: 1256
+; social_component.php line: 1260
 wiki_js_heading = ""
 ;
-; social_component.php line: 1257
+; social_component.php line: 1261
 wiki_js_heading1 = ""
 ;
-; social_component.php line: 1258
+; social_component.php line: 1262
 wiki_js_heading2 = ""
 ;
-; social_component.php line: 1259
+; social_component.php line: 1263
 wiki_js_heading3 = ""
 ;
-; social_component.php line: 1260
+; social_component.php line: 1264
 wiki_js_heading4 = ""
 ;
-; social_component.php line: 1261
+; social_component.php line: 1265
 wiki_js_bullet = ""
 ;
-; social_component.php line: 1262
+; social_component.php line: 1266
 wiki_js_enum = ""
 ;
-; social_component.php line: 1263
+; social_component.php line: 1267
 wiki_js_nowiki = ""
 ;
-; social_component.php line: 1264
+; social_component.php line: 1268
 wiki_js_add_search = ""
 ;
-; social_component.php line: 1265
+; social_component.php line: 1269
 wiki_js_search_size = ""
 ;
-; social_component.php line: 1266
+; social_component.php line: 1270
 wiki_js_add_wiki_table = ""
 ;
-; social_component.php line: 1267
+; social_component.php line: 1271
 wiki_js_for_table_cols = ""
 ;
-; social_component.php line: 1268
+; social_component.php line: 1272
 wiki_js_for_table_rows = ""
 ;
-; social_component.php line: 1269
+; social_component.php line: 1273
 wiki_js_add_hyperlink = ""
 ;
-; social_component.php line: 1270
+; social_component.php line: 1274
 wiki_js_link_text = ""
 ;
-; social_component.php line: 1271
+; social_component.php line: 1275
 wiki_js_link_url = ""
 ;
-; social_component.php line: 1311
+; social_component.php line: 1315
 social_component_select_crawl = "搜尋選擇"
 ;
-; social_component.php line: 1312
+; social_component.php line: 1316
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1314
+; social_component.php line: 1318
 social_component_select_crawl = "搜尋選擇"
 ;
-; social_component.php line: 1316
+; social_component.php line: 1320
 social_component_default_crawl = ""
 ;
-; social_component.php line: 1338
+; social_component.php line: 1342
 social_component_unnamed = "未命名"
 ;
-; social_component.php line: 1345
+; social_component.php line: 1349
 social_component_mix_created = ""
 ;
-; social_component.php line: 1352
+; social_component.php line: 1356
 social_component_mix_invalid_timestamp = ""
 ;
-; social_component.php line: 1358
+; social_component.php line: 1362
 social_component_mix_deleted = ""
 ;
-; social_component.php line: 1376
+; social_component.php line: 1380
 social_component_mix_doesnt_exists = ""
 ;
-; social_component.php line: 1386
+; social_component.php line: 1390
 social_component_mix_imported = ""
 ;
-; social_component.php line: 1390
+; social_component.php line: 1394
 social_component_set_index = ""
 ;
-; social_component.php line: 1408
+; social_component.php line: 1412
 social_component_comment_error = ""
 ;
-; social_component.php line: 1416
+; social_component.php line: 1420
 social_component_invalid_timestamp = ""
 ;
-; social_component.php line: 1435
+; social_component.php line: 1439
 social_component_no_post_access = ""
 ;
-; social_component.php line: 1441
+; social_component.php line: 1445
 social_component_share_title = ""
 ;
-; social_component.php line: 1443
+; social_component.php line: 1447
 social_component_share_description = ""
 ;
-; social_component.php line: 1448
+; social_component.php line: 1452
 social_component_thread_created = ""
 ;
-; social_component.php line: 1494
+; social_component.php line: 1498
 social_component_mix_not_owner = ""
 ;
-; social_component.php line: 1507
+; social_component.php line: 1511
 social_component_add_crawls = "增加索引"
 ;
-; social_component.php line: 1509
+; social_component.php line: 1513
 social_component_num_results = "結果數量"
 ;
-; social_component.php line: 1511
+; social_component.php line: 1515
 social_component_del_frag = ""
 ;
-; social_component.php line: 1513
+; social_component.php line: 1517
 social_component_weight = "元素重量"
 ;
-; social_component.php line: 1514
+; social_component.php line: 1518
 social_component_name = ""
 ;
-; social_component.php line: 1516
+; social_component.php line: 1520
 social_component_add_keywords = ""
 ;
-; social_component.php line: 1518
+; social_component.php line: 1522
 social_component_actions = "元素活動"
 ;
-; social_component.php line: 1520
+; social_component.php line: 1524
 social_component_add_query = "增加查詢"
 ;
-; social_component.php line: 1521
+; social_component.php line: 1525
 social_component_delete = ""
 ;
-; social_component.php line: 1569
+; social_component.php line: 1573
 social_component_too_many_fragments = ""
 ;
-; social_component.php line: 1580
+; social_component.php line: 1584
 social_component_mix_saved = ""
 ;
 ; system_component.php line: 83
@@ -1465,31 +1471,25 @@ crawloptions_element_allowed_to_crawl = ""
 ; crawloptions_element.php line: 128
 crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; crawloptions_element.php line: 135
+; crawloptions_element.php line: 137
 crawloptions_element_seed_sites = ""
 ;
-; crawloptions_element.php line: 139
+; crawloptions_element.php line: 141
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 143
-crawloptions_element_clear_suggest_urls = ""
-;
 ; crawloptions_element.php line: 150
 crawloptions_element_inject_sites = ""
 ;
 ; crawloptions_element.php line: 154
 crawloptions_element_add_suggest_urls = ""
 ;
-; crawloptions_element.php line: 158
-crawloptions_element_clear_suggest_urls = ""
-;
-; crawloptions_element.php line: 167
+; crawloptions_element.php line: 171
 crawloptions_element_reindex_crawl = ""
 ;
-; crawloptions_element.php line: 174
+; crawloptions_element.php line: 178
 crawloptions_element_need_api_for_mix = ""
 ;
-; crawloptions_element.php line: 182
+; crawloptions_element.php line: 186
 crawloptions_element_save_options = ""
 ;
 ; editclassifier_element.php line: 61
@@ -1666,40 +1666,40 @@ groupfeed_element_comment = ""
 ; groupfeed_element.php line: 285
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 306
+; groupfeed_element.php line: 308
 groupfeed_element_comment = ""
 ;
-; groupfeed_element.php line: 367
+; groupfeed_element.php line: 382
 groupfeed_element_add_comment = ""
 ;
-; groupfeed_element.php line: 374
+; groupfeed_element.php line: 389
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 404
+; groupfeed_element.php line: 420
 groupfeed_element_start_thread = ""
 ;
-; groupfeed_element.php line: 407
+; groupfeed_element.php line: 423
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 413
+; groupfeed_element.php line: 429
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 420
+; groupfeed_element.php line: 436
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 451
+; groupfeed_element.php line: 468
 groupfeed_element_edit_post = ""
 ;
-; groupfeed_element.php line: 454
+; groupfeed_element.php line: 471
 groupfeed_element_subject = ""
 ;
-; groupfeed_element.php line: 459
+; groupfeed_element.php line: 476
 groupfeed_element_post = ""
 ;
-; groupfeed_element.php line: 466
+; groupfeed_element.php line: 483
 groupfeed_element_save = ""
 ;
-; groupfeed_element.php line: 496
+; groupfeed_element.php line: 508
 groupfeed_element_no_longer_update = ""
 ;
 ; machinelog_element.php line: 57
@@ -2360,22 +2360,22 @@ mixcrawls_element_createmix_form = ""
 ; mixcrawls_element.php line: 223
 mixcrawls_element_mixname = ""
 ;
-; moreoptions_element.php line: 78
+; moreoptions_element.php line: 81
 moreoptions_element_other_searches = ""
 ;
-; moreoptions_element.php line: 115
+; moreoptions_element.php line: 116
 moreoptions_element_previous = ""
 ;
-; moreoptions_element.php line: 121
+; moreoptions_element.php line: 122
 moreoptions_element_next = ""
 ;
-; moreoptions_element.php line: 128
+; moreoptions_element.php line: 129
 moreoptions_element_my_accounts = ""
 ;
-; moreoptions_element.php line: 135
+; moreoptions_element.php line: 136
 signin_element_settings = "設定"
 ;
-; moreoptions_element.php line: 143
+; moreoptions_element.php line: 144
 signin_element_signin = "登入"
 ;
 ; moreoptions_element.php line: 147
@@ -2384,13 +2384,13 @@ signin_element_admin = "管理員"
 ; moreoptions_element.php line: 159
 signin_view_create_account = ""
 ;
-; moreoptions_element.php line: 172
+; moreoptions_element.php line: 171
 moreoptions_element_suggest = ""
 ;
-; moreoptions_element.php line: 175
+; moreoptions_element.php line: 174
 moreoptions_element_wiki_pages = ""
 ;
-; moreoptions_element.php line: 186
+; moreoptions_element.php line: 185
 moreoptions_element_tools = ""
 ;
 ; pageoptions_element.php line: 61
@@ -2789,7 +2789,7 @@ signin_element_admin = "管理員"
 ; signin_element.php line: 77
 signin_element_signout = "登出"
 ;
-; subsearch_element.php line: 68
+; subsearch_element.php line: 70
 subsearch_element_more = ""
 ;
 ; wiki_element.php line: 103
@@ -2870,55 +2870,55 @@ wiki_view_create_page = ""
 ; wiki_element.php line: 337
 wiki_view_no_pages = ""
 ;
-; wiki_element.php line: 356
+; wiki_element.php line: 357
 wiki_view_back = ""
 ;
-; wiki_element.php line: 371
+; wiki_element.php line: 372
 wiki_view_difference = ""
 ;
-; wiki_element.php line: 377
+; wiki_element.php line: 378
 wiki_view_go = ""
 ;
-; wiki_element.php line: 397
+; wiki_element.php line: 398
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 400
+; wiki_element.php line: 401
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 404
+; wiki_element.php line: 405
 wiki_view_diff_first = ""
 ;
-; wiki_element.php line: 405
+; wiki_element.php line: 406
 wiki_view_diff_second = ""
 ;
-; wiki_element.php line: 411
+; wiki_element.php line: 412
 wiki_view_edited_by = ""
 ;
-; wiki_element.php line: 415
+; wiki_element.php line: 416
 wiki_view_page_len = ""
 ;
-; wiki_element.php line: 417
+; wiki_element.php line: 418
 wiki_view_revert = ""
 ;
-; wiki_element.php line: 420
+; wiki_element.php line: 421
 wiki_view_revert = ""
 ;
-; group_view.php line: 77
+; group_view.php line: 79
 groupfeed_element_wiki_thread = ""
 ;
-; group_view.php line: 92
+; group_view.php line: 94
 group_view_feed = ""
 ;
-; group_view.php line: 99
+; group_view.php line: 101
 group_view_wiki = ""
 ;
-; group_view.php line: 101
+; group_view.php line: 103
 group_view_user = ""
 ;
-; group_view.php line: 104
+; group_view.php line: 106
 group_view_myfeeds = ""
 ;
-; group_view.php line: 123
+; group_view.php line: 125
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//views/helpers
@@ -3228,58 +3228,58 @@ register_view_recovery6_less = ""
 ; register_view.php line: 126
 register_view_recovery6_choices = ""
 ;
-; register_view.php line: 152
+; register_view.php line: 155
 register_view_create_account = ""
 ;
-; register_view.php line: 189
+; register_view.php line: 192
 register_view_firstname = ""
 ;
-; register_view.php line: 203
+; register_view.php line: 206
 register_view_lastname = ""
 ;
-; register_view.php line: 217
+; register_view.php line: 220
 register_view_username = ""
 ;
-; register_view.php line: 229
+; register_view.php line: 232
 register_view_email = ""
 ;
-; register_view.php line: 242
+; register_view.php line: 245
 register_view_password = ""
 ;
-; register_view.php line: 256
+; register_view.php line: 259
 register_view_retypepassword = ""
 ;
-; register_view.php line: 271
+; register_view.php line: 274
 register_view_account_recovery = ""
 ;
-; register_view.php line: 275
+; register_view.php line: 278
 register_view_human_check = ""
 ;
-; register_view.php line: 277
+; register_view.php line: 280
 register_view_account_recovery = ""
 ;
-; register_view.php line: 309
+; register_view.php line: 312
 register_view_human_check = ""
 ;
-; register_view.php line: 323
+; register_view.php line: 326
 register_view_i_agree = ""
 ;
-; register_view.php line: 325
+; register_view.php line: 328
 register_view_terms = ""
 ;
-; register_view.php line: 327
+; register_view.php line: 330
 register_view_and = ""
 ;
-; register_view.php line: 329
+; register_view.php line: 332
 register_view_privacy = ""
 ;
-; register_view.php line: 330
+; register_view.php line: 333
 register_view_period = ""
 ;
-; register_view.php line: 340
+; register_view.php line: 343
 register_view_create_account = ""
 ;
-; register_view.php line: 350
+; register_view.php line: 353
 signin_view_return_yioop = "回到首頁"
 ;
 ; search_view.php line: 87
@@ -3390,7 +3390,7 @@ signin_view_create_account = ""
 ; signin_view.php line: 129
 signin_view_return_yioop = "回到首頁"
 ;
-; static_view.php line: 69
+; static_view.php line: 71
 static_view_title = ""
 ;
 ; statistics_view.php line: 65
@@ -3456,25 +3456,25 @@ statistics_view_url = ""
 ; statistics_view.php line: 111
 statistics_view_number_hosts = ""
 ;
-; suggest_view.php line: 68
+; suggest_view.php line: 71
 suggest_view_suggest_url = ""
 ;
-; suggest_view.php line: 70
+; suggest_view.php line: 73
 suggest_view_instructions = ""
 ;
-; suggest_view.php line: 94
+; suggest_view.php line: 97
 suggest_view_url = ""
 ;
-; suggest_view.php line: 109
+; suggest_view.php line: 112
 register_view_human_check = ""
 ;
-; suggest_view.php line: 143
+; suggest_view.php line: 146
 suggest_view_human_check = ""
 ;
-; suggest_view.php line: 165
+; suggest_view.php line: 168
 suggest_view_submit_url = ""
 ;
-; suggest_view.php line: 175
+; suggest_view.php line: 178
 signin_view_return_yioop = "回到首頁"
 ;
 ; view.php line: 34
@@ -3498,94 +3498,94 @@ wiki_view_wiki = ""
 ; wiki_view.php line: 132
 adminview_auto_logout_one_minute = ""
 ;
-; wiki_view.php line: 168
+; wiki_view.php line: 166
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 170
+; wiki_view.php line: 168
 wiki_view_create_edit = ""
 ;
-; wiki_view.php line: 171
+; wiki_view.php line: 169
 wiki_view_use_form_below = ""
 ;
-; wiki_view.php line: 183
+; wiki_view.php line: 181
 wiki_element_submit = ""
 ;
-; wiki_view.php line: 188
+; wiki_view.php line: 186
 wiki_view_syntax_summary = ""
 ;
-; wiki_view.php line: 190
+; wiki_view.php line: 188
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 192
+; wiki_view.php line: 190
 wiki_view_signin_edit = ""
 ;
-; wiki_view.php line: 194
+; wiki_view.php line: 192
 wiki_view_page_no_exist = ""
 ;
-; wiki_view.php line: 215
+; wiki_view.php line: 213
 wiki_element_history = ""
 ;
-; wiki_view.php line: 219
+; wiki_view.php line: 217
 wiki_element_discuss = ""
 ;
-; wiki_view.php line: 233
+; wiki_view.php line: 231
 wiki_element_locale_name = ""
 ;
-; wiki_view.php line: 237
+; wiki_view.php line: 235
 wiki_element_page = ""
 ;
-; wiki_view.php line: 245
+; wiki_view.php line: 243
 wiki_element_archive_info = ""
 ;
-; wiki_view.php line: 249
+; wiki_view.php line: 247
 wiki_element_edit_reason = ""
 ;
-; wiki_view.php line: 256
+; wiki_view.php line: 254
 wiki_element_savebutton = ""
 ;
-; wiki_view.php line: 288
+; wiki_view.php line: 286
 wiki_view_wiki_page_list = ""
 ;
-; wiki_view.php line: 300
+; wiki_view.php line: 298
 wiki_view_filter_or_create = ""
 ;
-; wiki_view.php line: 303
+; wiki_view.php line: 301
 wiki_element_go = ""
 ;
-; wiki_view.php line: 307
+; wiki_view.php line: 305
 wiki_view_create_page = ""
 ;
-; wiki_view.php line: 346
+; wiki_view.php line: 344
 wiki_view_back = ""
 ;
-; wiki_view.php line: 361
+; wiki_view.php line: 359
 wiki_view_difference = ""
 ;
-; wiki_view.php line: 367
+; wiki_view.php line: 365
 wiki_view_go = ""
 ;
-; wiki_view.php line: 387
+; wiki_view.php line: 385
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 390
+; wiki_view.php line: 388
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 394
+; wiki_view.php line: 392
 wiki_view_diff_first = ""
 ;
-; wiki_view.php line: 395
+; wiki_view.php line: 393
 wiki_view_diff_second = ""
 ;
-; wiki_view.php line: 401
+; wiki_view.php line: 399
 wiki_view_edited_by = ""
 ;
-; wiki_view.php line: 405
+; wiki_view.php line: 403
 wiki_view_page_len = ""
 ;
-; wiki_view.php line: 407
+; wiki_view.php line: 405
 wiki_view_revert = ""
 ;
-; wiki_view.php line: 410
+; wiki_view.php line: 408
 wiki_view_revert = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
diff --git a/models/crawl_model.php b/models/crawl_model.php
index cb6304cd8..a986ce531 100755
--- a/models/crawl_model.php
+++ b/models/crawl_model.php
@@ -672,6 +672,7 @@ EOT;
             $updatable_site_info = array(
                 "allowed_sites" => array(self::ALLOWED_SITES,'url'),
                 "disallowed_sites" => array(self::DISALLOWED_SITES, 'url'),
+                "seed_sites" => array(self::TO_CRAWL, "url"),
                 "page_rules" => array(self::PAGE_RULES, 'rule'),
                 "indexed_file_types" => array(self::INDEXED_FILE_TYPES,
                     "extensions"),
@@ -922,7 +923,12 @@ EOT;
             $scheduler_info[self::HASH_SEEN_URLS] = array();

             foreach ($seed_info['seed_sites']['url'] as $site) {
-                $scheduler_info[self::TO_CRAWL][] = array($site, 1.0);
+                if($site[0] == "#") { continue; } //ignore comments in file
+                $site_parts = preg_split("/\s+|#/", $site);
+                if(strlen($site_parts[0]) > 0) {
+                    $scheduler_info[self::TO_CRAWL][] =
+                        array($site_parts[0], 1.0);
+                }
             }
             $scheduler_string = "\n".webencode(
                 gzcompress(serialize($scheduler_info)));
diff --git a/views/elements/crawloptions_element.php b/views/elements/crawloptions_element.php
index 0547bb309..8099b6d74 100644
--- a/views/elements/crawloptions_element.php
+++ b/views/elements/crawloptions_element.php
@@ -131,36 +131,40 @@ class CrawloptionsElement extends Element
         <textarea class="short-text-area" id="disallowed-sites"
             name="disallowed_sites" ><?php e($data['disallowed_sites']);
         ?></textarea>
-        <?php if(!isset($data['ts'])) { ?>
-        <div class="top-margin"><label for="seed-sites"><b><?php
-            e(tl('crawloptions_element_seed_sites'))?></b></label>
-            [<a href="?c=admin&amp;a=manageCrawls&amp;arg=options<?php
-                e('&amp;'.CSRF_TOKEN.'='.$data[CSRF_TOKEN]);
-                ?>&amp;suggest=add"><?php
-            e(tl('crawloptions_element_add_suggest_urls')); ?></a>]
-            [<a href="?c=admin&amp;a=manageCrawls&amp;arg=options<?php
-                e('&amp;'.CSRF_TOKEN.'='.$data[CSRF_TOKEN]);
-                ?>&amp;suggest=clear"><?php
-                e(tl('crawloptions_element_clear_suggest_urls'));
-                ?></a>]</div>
-        <textarea class="tall-text-area" id="seed-sites"
-            name="seed_sites" ><?php e($data['seed_sites']);
-        ?></textarea>
-        <?php } else { ?>
-        <div class="top-margin"><label for="inject-sites"><b><?php
-            e(tl('crawloptions_element_inject_sites'))?></b></label>
+        <?php
+        if(!isset($data['ts'])) {
+            ?>
+            <div class="top-margin"><label for="seed-sites"><b><?php
+                e(tl('crawloptions_element_seed_sites'))?></b></label>
+                [<a href="?c=admin&amp;a=manageCrawls&amp;arg=options<?php
+                    e('&amp;'.CSRF_TOKEN.'='.$data[CSRF_TOKEN]);
+                    ?>&amp;suggest=add"><?php
+                e(tl('crawloptions_element_add_suggest_urls')); ?></a>]
+            </div>
+            <textarea class="tall-text-area" id="seed-sites"
+                name="seed_sites" ><?php e($data['seed_sites']);
+            ?></textarea>
+        <?php
+        } else {
+            ?>
+            <div class="top-margin"><label for="inject-sites"><b><?php
+                e(tl('crawloptions_element_inject_sites'))?></b></label>
             [<a href="?c=admin&amp;a=manageCrawls&amp;arg=options<?php
                 e('&amp;'.CSRF_TOKEN.'='.$data[CSRF_TOKEN].'&amp;ts='.
                 $data['ts']); ?>&amp;suggest=add"><?php
             e(tl('crawloptions_element_add_suggest_urls')); ?></a>]
-            [<a href="?c=admin&amp;a=manageCrawls&amp;arg=options<?php
-                e('&amp;'.CSRF_TOKEN.'='.$data[CSRF_TOKEN]);
-                ?>&amp;suggest=clear"><?php
-                e(tl('crawloptions_element_clear_suggest_urls'));
-                ?></a>]</div></div>
-        <textarea class="short-text-area" id="inject-sites"
-            name="inject_sites" ></textarea>
-        <?php } ?>
+            </div></div>
+            <?php
+            if($data['INJECT_SITES'] != "") {
+                ?>
+                <input type="hidden" name="use_suggest" value="true" />
+                <?php
+            }
+            ?>
+            <textarea class="short-text-area" id="inject-sites"
+                name="inject_sites"><?php e($data['INJECT_SITES']);?></textarea>
+            <?php
+        } ?>
         </div>
         <div id='archivetab'>
         <?php if(!isset($data['ts'])) { ?>
ViewGit