Command to executable command line docs, improvements in query format speed, a=chris

Chris Pollett [2015-08-08 19:Aug:th]
Command to executable command line docs, improvements in query format speed, a=chris
Filename
src/configs/TokenTool.php
src/executables/ArcTool.php
src/executables/ClassifierTool.php
src/executables/ClassifierTrainer.php
src/executables/CodeTool.php
src/executables/MediaUpdater.php
src/executables/Mirror.php
src/executables/QueryTool.php
src/library/PhraseParser.php
src/library/Utility.php
src/locale/ar/configure.ini
src/locale/bn/configure.ini
src/locale/de/configure.ini
src/locale/en_US/configure.ini
src/locale/es/configure.ini
src/locale/fa/configure.ini
src/locale/fr_FR/configure.ini
src/locale/he/configure.ini
src/locale/hi/configure.ini
src/locale/in_ID/configure.ini
src/locale/it/configure.ini
src/locale/ja/configure.ini
src/locale/kn/configure.ini
src/locale/ko/configure.ini
src/locale/nl/configure.ini
src/locale/pl/configure.ini
src/locale/pt/configure.ini
src/locale/ru/configure.ini
src/locale/te/configure.ini
src/locale/th/configure.ini
src/locale/tr/configure.ini
src/locale/vi_VN/configure.ini
src/locale/zh_CN/configure.ini
src/models/Model.php
diff --git a/src/configs/TokenTool.php b/src/configs/TokenTool.php
index 3a35e75b4..15d48a93e 100644
--- a/src/configs/TokenTool.php
+++ b/src/configs/TokenTool.php
@@ -22,7 +22,7 @@
  *
  * END LICENSE
  *
- * token_tool is used to create suggest word dictionaries and 'n' word gram
+ * TokenTool is used to create suggest word dictionaries and 'n' word gram
  * filter files for the Yioop! search engine.
  *
  * A description of its usage is given in the $usage global variable
@@ -46,16 +46,16 @@ ini_set("memory_limit","1500M");
 /** Load in global configuration settings */
 require_once 'Config.php';
 /**
- * Used to print out a description of how to use token_tool.php
+ * Used to print out a description of how to use TokenTool.php
  * @var string
  */
 $usage = <<<EOD
-token_tool.php
+TokenTool.php
 ==============

 Usage
 =====
-token_tool is used to create suggest word dictionaries,
+TokenTool is used to create suggest word dictionaries,
 segment and 'n' word gram filter files for the Yioop! search engine.
 To create either of these items, the user
 puts a source file in Yioop's WORK_DIRECTORY/prepare folder. Suggest word
@@ -63,7 +63,7 @@ dictionaries are used to supply the content of the dropdown of search terms
 that appears as a user is entering a query in Yioop. To make a suggest
 dictionary one can use a command like:

-php token_tool.php dictionary filename locale endmarker
+php TokenTool.php dictionary filename locale endmarker

 Here filename should be in the current folder or PREP_DIR and should consist
 of one word per line, locale is the locale this suggest (for example, en-US)
@@ -71,17 +71,17 @@ file is being made for and where a file suggest-trie.txt.gz will be written,
 and endmarker is the end of word symbol to use in the trie. For example,
 $ works pretty well.

-token_tool.php can also be used to make filter files. A filter file is used to
+TokenTool.php can also be used to make filter files. A filter file is used to
 detect when words in a language should be treated as a unit when extracting text
 during a crawl and at search time.  For example, Bill Clinton is 2 word gram
 which should be treated as unit because it is a particular person. These
 filter files can also be used  with a segmenter which
 might be used to split Chinese or Japanese text which does not have spaces into
 a sequence of Chinese and Japanese words (which may be made out of multiple
-characters). For a nonsegmenter filter, token_tool.php is run from the
+characters). For a nonsegmenter filter, TokenTool.php is run from the
 command line as:

-php token_tool.php filter wiki_file lang locale n extract_type max_to_extract
+php TokenTool.php filter wiki_file lang locale n extract_type max_to_extract

 where file is a wikipedia xml file or is a bz2  compressed xml file whose urls
 or wiki page count dump file (it can also be a folder of these kind of files)
@@ -97,10 +97,10 @@ source to extract:
 2 = page count dump wikipedia data,
 3 = page count dump wiktionary data.

-For a segmenter filter, token_tool.php is run from the
+For a segmenter filter, TokenTool.php is run from the
 command line as:

-php token_tool.php segment-filter dictionary_file locale
+php TokenTool.php segment-filter dictionary_file locale

 Here dictionary_file should be a text file with one word/line,
 locale is the IANA language tag of the locale to store the results for.
@@ -112,7 +112,7 @@ Many word lists are obtainable on the web for free with Creative Commons
 licenses. A good starting point is:
 http://en.wiktionary.org/wiki/Wiktionary:Frequency_lists
 A little script-fu can generally take such a list and put it into the
-format of one word/term per line which is needed by token_tool.php
+format of one word/term per line which is needed by TokenTool.php

 For filter file, Raw page count dumps can be found at
 http://dumps.wikimedia.org/other/pagecounts-raw/
diff --git a/src/executables/ArcTool.php b/src/executables/ArcTool.php
index 5fb7a4911..8225a6cfb 100755
--- a/src/executables/ArcTool.php
+++ b/src/executables/ArcTool.php
@@ -70,7 +70,7 @@ mb_regex_encoding("UTF-8");
  * To see all of the available command run it from the command line
  * with a syntax like:
  *
- * php arc_tool.php
+ * php ArcTool.php
  *
  * @author Chris Pollett (non-yioop archive code derived from earlier
  *     stuff by Shawn Tice)
@@ -78,7 +78,7 @@ mb_regex_encoding("UTF-8");
 class ArcTool implements CrawlConstants
 {
     /**
-     * The maximum number of documents the arc_tool list function
+     * The maximum number of documents the ArcTool list function
      * will read into memory in one go.
      */
     const MAX_BUFFER_DOCS = 200;
@@ -1031,63 +1031,63 @@ EOD;
     {
         echo  <<< EOD

-arc_tool is used to look at the contents of WebArchiveBundles and
+ArcTool is used to look at the contents of WebArchiveBundles and
 IndexArchiveBundles. It will look for these using the path provided or
 will check in the Yioop! crawl directory as a fall back.

-The available commands for arc_tool are:
+The available commands for ArcTool are:

-php arc_tool.php count bundle_name
+php ArcTool.php count bundle_name
     or
-php arc_tool.php count bundle_name save
+php ArcTool.php count bundle_name save
     /* returns the counts of docs and links for each shard in bundle
        as well as an overall total. The second command saves the just
        computed count into the index description (can be used to
        fix the index count if it gets screwed up).
      */

-php arc_tool.php dict bundle_name word
+php ArcTool.php dict bundle_name word
     // returns index dictionary records for word stored in index archive bundle.

-php arc_tool.php info bundle_name
+php ArcTool.php info bundle_name
     // return info about documents stored in archive.

-php arc_tool.php inject timestamp file
+php ArcTool.php inject timestamp file
     /* injects the urls in file as a schedule into crawl of given timestamp
         This can be used to make a closed index unclosed and to allow for
         continued crawling. */

-php arc_tool.php list
+php ArcTool.php list
     /* returns a list of all the archives in the Yioop! crawl directory,
        including non-Yioop! archives in the /archives sub-folder.*/

-php arc_tool.php mergetiers bundle_name max_tier
+php ArcTool.php mergetiers bundle_name max_tier
     // merges tiers of word dictionary into one tier up to max_tier

-php arc_tool.php posting bundle_name generation offset
+php ArcTool.php posting bundle_name generation offset
     or
-php arc_tool.php posting bundle_name generation offset num
+php ArcTool.php posting bundle_name generation offset num
     /* returns info about the posting (num many postings) in bundle_name at
        the given generation and offset */

-php arc_tool.php rebuild bundle_name
+php ArcTool.php rebuild bundle_name
     /*  re-extracts words from summaries files in bundle_name into index shards
         then builds a new dictionary */

-php arc_tool.php reindex bundle_name
+php ArcTool.php reindex bundle_name
     or
-php arc_tool.php reindex bundle_name start_shard
+php ArcTool.php reindex bundle_name start_shard
     /*  Reindex the word dictionary in bundle_name using existing index shards
         In the second version it is assumed that the index has been correctly
         reindexed already to start_shard -1, and the command continues the
         reindexing from start_shard
      */

-php arc_tool.php shard bundle_name generation
+php ArcTool.php shard bundle_name generation
     /* Prints information about the number of words and frequencies of words
        within the generation'th index shard in the bundle */

-php arc_tool.php show bundle_name start num
+php ArcTool.php show bundle_name start num
     /* outputs items start through num from bundle_name or name of
        non-Yioop archive crawl folder */

diff --git a/src/executables/ClassifierTool.php b/src/executables/ClassifierTool.php
index 3f70d653c..e78c4f98a 100755
--- a/src/executables/ClassifierTool.php
+++ b/src/executables/ClassifierTool.php
@@ -72,7 +72,7 @@ This tool is used to automate the building and testing of classifiers,
 providing an alternative to the web interface when a labeled training set is
 available.

-classifier_tool.php takes an activity to perform, the name of a dataset to use,
+ClassifierTool.php takes an activity to perform, the name of a dataset to use,
 and a label for the constructed classifier. The activity is the name of one
 of the 'run*' functions implemented by this class, without the common 'run'
 prefix (e.g., 'TrainAndTest'). The dataset is specified as the common prefix
@@ -101,7 +101,7 @@ To build and evaluate a classifier for the label 'spam', trained using the
 two indexes "DATASET Neg" and "DATASET Pos", and a maximum of the top 25
 most informative features:

-php bin/classifier_tool.php -a TrainAndTest -d 'DATASET' -l 'spam'
+php bin/ClassifierTool.php -a TrainAndTest -d 'DATASET' -l 'spam'
     -I cls.chi2.max=25

 EOD;
@@ -113,7 +113,7 @@ mb_internal_encoding("UTF-8");
 mb_regex_encoding("UTF-8");

 /**
- * Class used to encapsulate all the activities of the classifier_tool.php
+ * Class used to encapsulate all the activities of the ClassifierTool.php
  * command line script. This script allows one to automate the building and
  * testing of classifiers, providing an alternative to the web interface when
  *
diff --git a/src/executables/ClassifierTrainer.php b/src/executables/ClassifierTrainer.php
index 06d52e402..7255b33b1 100755
--- a/src/executables/ClassifierTrainer.php
+++ b/src/executables/ClassifierTrainer.php
@@ -73,7 +73,7 @@ ini_set("memory_limit", "500M");
  * second command-line argument. The following command would be used to run
  * this script directly from the command-line:
  *
- *    $ php bin/classifier_trainer.php terminal LABEL
+ *    $ php bin/ClassifierTrainer.php terminal LABEL
  *
  * @author Shawn Tice
  */
@@ -81,7 +81,7 @@ class ClassifierTrainer
 {
     /**
      * This is the function that should be called to get the
-     * classifier_trainer to start training a logistic regression instance for
+     * ClassifierTrainer to start training a logistic regression instance for
      * a particular classifier. The class label corresponding to the
      * classifier to be finalized should be passed as the second command-line
      * argument.
diff --git a/src/executables/CodeTool.php b/src/executables/CodeTool.php
index 0be50a761..4e7dbaf84 100755
--- a/src/executables/CodeTool.php
+++ b/src/executables/CodeTool.php
@@ -66,42 +66,42 @@ if (isset($argv[1]) && in_array($argv[1], $commands)) {
 }
 if (!$no_instructions) {
     echo <<< EOD
-code_tool.php has the following command formats:
+CodeTool.php has the following command formats:

-php code_tool.php clean path
+php CodeTool.php clean path
     Replaces all tabs with four spaces and trims all whitespace off ends of
     lines in the folder or file path. Removes trailing ?> from files
     Adds a space between if, for, foreach, etc and ( if not present

-php code_tool.php copyright path
+php CodeTool.php copyright path
     Adjusts all lines in the files in the folder at path (or if
     path is a file just that) of the form 2009 - \d\d\d\d to
     the form 2009 - this_year where this_year is the current year.

-php code_tool.php longlines path
+php CodeTool.php longlines path
     Prints out all lines in files in the folder or file path which are
     longer than 80 characters.

-php code_tool.php replace path pattern replace_string
+php CodeTool.php replace path pattern replace_string
   or
-php code_tool.php replace path pattern replace_string effect
+php CodeTool.php replace path pattern replace_string effect
     Prints all lines matching the regular expression pattern followed
     by the result of replacing pattern with replace_string in the
     folder or file path. Does not change files.

-php code_tool.php replace path pattern replace_string interactive
+php CodeTool.php replace path pattern replace_string interactive
     Prints each line matching the regular expression pattern followed
     by the result of replacing pattern with replace_string in the
     folder or file path. Then it asks if you want to update the line.
     Lines you choose for updating will be modified in the files.

-php code_tool.php replace path pattern replace_string change
+php CodeTool.php replace path pattern replace_string change
     Each line matching the regular expression pattern is update
     by replacing pattern with replace_string in the
     folder or file path. This format doe not echo anything, it does a global
     replace without interaction.

-php code_tool.php search path pattern
+php CodeTool.php search path pattern
     Prints all lines matching the regular expression pattern in the
     folder or file path.

@@ -115,7 +115,7 @@ EOD;
  * match PHP coding guidelines
  *
  * @param array $args $args[0] contains path to sub-folder/file
- * @return bool $no_instructions false if should output code_tool.php
+ * @return bool $no_instructions false if should output CodeTool.php
  *     instructions
  */
 function clean($args)
@@ -135,7 +135,7 @@ function clean($args)
  * /2009 - \d\d\d\d/ to 2009 - current_year in those files/file.
  *
  * @param array $args $args[0] contains path to sub-folder/file
- * @return bool $no_instructions false if should output code_tool.php
+ * @return bool $no_instructions false if should output CodeTool.php
  *     instructions
  */
 function copyright($args)
@@ -157,7 +157,7 @@ function copyright($args)
  * characters in files in supplied sub-folder/file,
  *
  * @param array $args $args[0] contains path to sub-folder/file
- * @return bool $no_instructions false if should output code_tool.php
+ * @return bool $no_instructions false if should output CodeTool.php
  *     instructions
  */
 function longlines($args)
@@ -185,7 +185,7 @@ function longlines($args)
  *     but commits no changes; interactive for each match, prompts user
  *     if should do the change, change does a global search and replace
  *     without output
- * @return bool $no_instructions false if should output code_tool.php
+ * @return bool $no_instructions false if should output CodeTool.php
  *     instructions
  */
 function replace($args)
@@ -213,7 +213,7 @@ function replace($args)
  *
  * @param array $args $args[0] contains path to sub-folder/file,
  *     $args[1] contains the regex searching for
- * @return bool $no_instructions false if should output code_tool.php
+ * @return bool $no_instructions false if should output CodeTool.php
  *     instructions
  */
 function search($args)
diff --git a/src/executables/MediaUpdater.php b/src/executables/MediaUpdater.php
index 9c565d9da..6e331008f 100644
--- a/src/executables/MediaUpdater.php
+++ b/src/executables/MediaUpdater.php
@@ -112,7 +112,7 @@ class MediaUpdater implements CrawlConstants, MediaConstants
             C\MAIL_SECURITY);
     }
     /**
-     * This is the function that should be called to get the media_updater to
+     * This is the function that should be called to get the MediaUpdater to
      * start to start updating. Calls init to handle the command-line
      * arguments then enters news_updaters main loop
      */
@@ -180,8 +180,8 @@ class MediaUpdater implements CrawlConstants, MediaConstants
      *
      * @param array $data used by view to render itself. In this case, if there
      *     is a problem updating the news then we will flash a message
-     * @param bool $no_news_process if true than assume media_updater.php is
-     *     not running. If false, assume being run from media_updater.php so
+     * @param bool $no_news_process if true than assume MediaUpdater.php is
+     *     not running. If false, assume being run from MediaUpdater.php so
      *     update news_process cron time.
      */
     public function newsUpdate()
diff --git a/src/executables/Mirror.php b/src/executables/Mirror.php
index b5fbef942..bdbe489be 100644
--- a/src/executables/Mirror.php
+++ b/src/executables/Mirror.php
@@ -85,7 +85,7 @@ class Mirror implements CrawlConstants
      */
     public $last_sync;
     /**
-     * Last time the machine being mirrored was notified mirror.php is still
+     * Last time the machine being mirrored was notified Mirror.php is still
      * running
      * @var string
      */
diff --git a/src/executables/QueryTool.php b/src/executables/QueryTool.php
index 68c53e1ef..9637593ba 100755
--- a/src/executables/QueryTool.php
+++ b/src/executables/QueryTool.php
@@ -132,19 +132,19 @@ class QueryTool implements CrawlConstants
      */
     public function usageMessageAndExit()
     {
-        echo "\nquery_tool.php is used to run a Yioop";
+        echo "\nQueryTool.php is used to run a Yioop";
         echo " query from the command line.\n For example,\n";
-        echo "  php query_tool.php 'chris pollett' \n returns results ".
+        echo "  php QueryTool.php 'chris pollett' \n returns results ".
             "from the default index of a search on 'chris pollett'.\n";
         echo "The general command format is:\n";
-        echo "  php query_tool.php query num_results start_num lang_tag\n\n";
-        echo "query_tool.php can also be used to explain the plan by which\n";
+        echo "  php QueryTool.php query num_results start_num lang_tag\n\n";
+        echo "QueryTool.php can also be used to explain the plan by which\n";
         echo "Yioop will compute query results. For this usage one types:\n";
-        echo "  php query_tool.php query plan\n";
+        echo "  php QueryTool.php query plan\n";
         echo "or\n";
-        echo "  php query_tool.php query explain\n";
+        echo "  php QueryTool.php query explain\n";
         echo "For example,";
-        echo "  php query_tool.php 'chris pollett' explain\n";
+        echo "  php QueryTool.php 'chris pollett' explain\n";
         exit();
     }
 }
diff --git a/src/library/PhraseParser.php b/src/library/PhraseParser.php
index 4d4399f84..88d269c2d 100755
--- a/src/library/PhraseParser.php
+++ b/src/library/PhraseParser.php
@@ -943,7 +943,9 @@ class PhraseParser
         $site_url)
     {
         $link_meta_ids = [];
-        if (strlen($link_host) == 0) continue;
+        if (strlen($link_host) == 0) {
+            return $link_meta_ids;
+        }
         if (substr($link_text, 0, 9) == "location:") {
             $location_link = true;
             $link_meta_ids[] = $link_text;
diff --git a/src/library/Utility.php b/src/library/Utility.php
index 985bd5b7d..41c1e7f6e 100755
--- a/src/library/Utility.php
+++ b/src/library/Utility.php
@@ -1485,12 +1485,9 @@ function crawlCrypt($string, $salt = null)
     /* The length of the salt and its starting prefix say which hash
        public function crypt uses. Blowfish's begins with $2a$, $2x$, or $2y$
        followed by the base 2 logarithm of the iteration count for blowfish.
-       The more secure 2y is only available after PHP 5.3.7
+       We us the more secure 2y.
      */
     $salt = '$2y$12$';
-    if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50307) {
-        $salt = '$2a$12$';
-    }
     if (function_exists('mcrypt_create_iv')) {
         $salt .= strtr(base64_encode(mcrypt_create_iv(16,
             MCRYPT_DEV_URANDOM)), '+', '.');
diff --git a/src/locale/ar/configure.ini b/src/locale/ar/configure.ini
index 273fc479e..c3e961b69 100755
--- a/src/locale/ar/configure.ini
+++ b/src/locale/ar/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = "حدد تتبع الارتباطات"
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = "تتبع الارتباطات الافتراضية"
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = "حدد تتبع الارتباطات"
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = "تتبع الارتباطات الافتراضية"
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = "الزحف ميكس إنشاؤها!"
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = "الزحف ميكس حذف!"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = "ميكسحذف لاتوجد لا!"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = "إضافة عمليات تتبع الارتباطات"
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = "عدد من النتائج"
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = "الوزن"
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = "إجراءات"
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = "إضافة استعلام"
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = "الزحف ميكس التغييرات المحفوظة!"
 ;
 ; SystemComponent.php line: 82
@@ -1342,7 +1342,7 @@ system_component_configure_no_change_profile = "كان هناك ملفتعريف
 system_component_describe_robot = "يرجى وصف الروبوت الخاص بك"
 ;
 ; SystemComponent.php line: 1157
-system_component_php_version = "بي إتش بي الإصدار 5.3 أو أحدث"
+system_component_php_version = "بي إتش بي 4لإصدار 5.3 أو أحدث"
 ;
 ; SystemComponent.php line: 1165
 system_component_no_write_config_php = "configs/config.php ليس ملقم ويب للكتابة."
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = "في انتظار حالة تتبع ال
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = "لم يعد تحديث حالة تتبع الارتباطات"
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "تسجيل الخروج"
 ; SubsearchElement.php line: 69
 subsearch_element_more = "أكثر"
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = "خروج السيارات في دقيقة واحدة!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "البحث"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = "مزيد من الإحصاءات"
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "%s ثوان."
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "عرض  %s- %s من  %s"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "مؤقتاً"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "فيونبسب;as&nbsp;text"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "مماثلة"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = "Inlinks"
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "رتبة: %s"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "ق Rel:%"
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = "ق Prox:%"
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "نقاط: %s"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "حفظ الإعدادات"
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "تسجيل الدخول"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "اسم المستخدم"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "كلمة المرور"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "تسجيل الدخول"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = "خروج السيارات في دقيقة واحدة!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/bn/configure.ini b/src/locale/bn/configure.ini
index b72daced0..1bac163a1 100755
--- a/src/locale/bn/configure.ini
+++ b/src/locale/bn/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = ""
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = ""
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = ""
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = ""
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = ""
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = ""
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = ""
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = ""
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = ""
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/de/configure.ini b/src/locale/de/configure.ini
index 12698d2a3..2d7ec4dc0 100755
--- a/src/locale/de/configure.ini
+++ b/src/locale/de/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = ""
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "Suche"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = ""
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = ""
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = ""
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = ""
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = ""
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = ""
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = ""
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/en_US/configure.ini b/src/locale/en_US/configure.ini
index 8cd514dd9..7183d37e8 100644
--- a/src/locale/en_US/configure.ini
+++ b/src/locale/en_US/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = "Subsearch Updated!"
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = "Media Source Updated!"
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = "Request Join"
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = "Invited"
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = "Active"
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = "Suspended"
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = "No One"
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = "By Request"
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = "Public Request"
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = "Anyone"
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = "No Read"
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = "Read"
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = "Read Comment"
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = "Read Write"
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = "Read Write Wiki"
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = "No Voting"
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = "+ Voting"
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = "+/- Voting"
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = "Never Expires"
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = "One Hour"
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = "One Day"
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = "One Month"
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = "User activated!"
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = "User was not activated!"
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = "Group Joined!"
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = "Group name unavailable!"
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = "Group name available!"
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = "User banned!"
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = "User was not banned!"
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = "Owner Changed!"
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = "User not in group!"
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = "Username does not exist!"
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = "Group Name Exists"
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = "Group Name Added"
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = "Group Name does not exists"
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = "Group Deleted"
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = "Cannot Delete Group"
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = "User Deleted"
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = "Cannot Delete User from Group."
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = "Users Invited!"
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = "No Users Invited!!"
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = "Group Joined!"
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = "Could not Unsubscribe!"
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = "User reinstated!"
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = "User was not reinstated!"
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = "Request Join"
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = "Invited"
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = "Banned"
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = "Successfully Unsubscribed!"
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = "Could not Unsubscribe!"
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = "Group joined!"
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = "Join Group Request Made!"
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = "Yioop Group %s Activation Request"
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = "The user %s has requested to join group %s."
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = "Best regards,"
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = "Insufficient Access!"
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = "Group updated!"
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = "Attempt to change access to unknown value!"
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = "Filtering Users!"
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = "Error in comment data!"
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = "Cannot post blank comment!"
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = "%s joined %s!"
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = "On %s, you joined the group  %s."
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = "Upload Error!"
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = "New Post to Thread: %s"
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = "We thought you would be interested in a new post to the thread:"
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = "Best regards,"
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = "Dear %s,"
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = "Comment Added!"
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = "Cannot add selected group!"
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = "Error Deleting Item"
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = "Item Deleted!"
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = "No Item Deleted!"
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = "Voting Error!"
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = "No vote access to that post! "
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = "Already Voted!"
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = "Vote Recorded!"
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = "Error in comment data!"
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = "Need both title and description!"
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = "Upload Error!"
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = "New Thread in Group %s"
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = "As the owner of %s we thought you would like to know of the following thread recently created in your group:"
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = "Best regards,"
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = "Dear %s,"
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = "Thread Created!"
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = "Error in comment data!"
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = "Need both title and description!"
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = "Post was just edited elsewhere (another tab?)"
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = "Cannot Update Post!"
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = "Cannot Update Post!"
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = "Upload Error!"
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = "Post Updated!"
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = "Voting Error!"
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = "No vote access to that post! "
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = "Already Voted!"
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = "Vote Recorded!"
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = "%s joined %s!"
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = "On %s, you joined the group  %s."
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = "No Posts Yet"
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = "Search"
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = "Not a member or can&#039;t read that group. Switching to public group!"
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = "Not a member or can&#039;t read that group. Switching to public group!"
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = "Standard"
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = "Page Alias"
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = "Media List"
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = "Presentation"
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = "Solid"
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = "Dashed"
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = "None"
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = "Missing Fields!"
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = "%s Wiki Page Created!"
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = "Discuss the page in this thread!"
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = "Page Saved!"
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = "Resource Deleted!"
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = "Resource Not Deleted! "
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = "Resource Renamed!"
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = "Resource not Renamed!"
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = "Need to Save Page Before Using Resources!"
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = "%s Wiki Page Created!"
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = "Discuss the page in this thread!"
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = "Resource Uploaded!"
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = "Upload Error!"
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = "Back"
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = "Historical Version of %s from %s."
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = "Back"
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = "%s line differences between %s and %s."
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!"
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = "Revert to %s."
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = "Page Reverted!"
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = "Error Reverting Page!"
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = "Main"
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = "Small"
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = "Medium"
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = "Large"
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = "Size"
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = "Header row:"
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = "Example"
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = "Table Title"
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = "Submit"
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = "Cancel"
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = "Bold text"
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = "Italic text"
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = "Underlined text"
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = "Striked text"
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = "Heading"
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = "Level 1 Heading"
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = "Level 2 Heading"
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = "Level 3 Heading"
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = "Level 4 Heading"
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = "Unordered list item"
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = "Ordered list item"
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = "Insert non-formatted text here"
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = "Add Search Bar Form"
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = "Size"
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = "Add Wiki Table"
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = "Column Count:"
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = "Row Count:"
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = "Add Hyperlink"
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = "Text:"
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = "URL:"
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = "Search Placeholder Text"
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = "This text is centered."
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = "This text is right-aligned."
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = "This text is left-aligned."
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = "Item"
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = "Definition"
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = "Title"
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = "Slide Item"
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = "Resource Description for "
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = "Select Crawl"
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = "Default Crawl"
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = "Select Crawl"
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = "Default Crawl"
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = "Crawl Mix Created!"
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = "Mix Name in Use or Invalid!"
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = "Invalid Timestamp!"
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = "Crawl Mix Deleted!"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = "Mix to Delete Does not Exist!"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = "Mix Successfully Imported!"
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = "Setting Crawl To Use as Index"
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = "Error in comment data!"
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = "Shared Mix Has An Invalid Timestamp"
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = "Cannot post to that group!"
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = "Try out this crawl mix!"
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = "%s is sharing the crawl mix %s!"
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = "Thread Created!"
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = "Invalid Timestamp!"
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = "Not Mix Owner!"
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = "Add Crawls"
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = "Results Shown"
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = "Remove"
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = "Weight"
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = "Name"
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = "Keywords"
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = "Actions"
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = "Add Query"
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = "Delete"
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = "Too Many Search Result Fragments!"
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = "Crawl Mix Changes Saved!"
 ;
 ; SystemComponent.php line: 82
@@ -1342,7 +1342,7 @@ system_component_configure_no_change_profile = "There was a Problem Updating Pro
 system_component_describe_robot = "Please Describe Your Robot"
 ;
 ; SystemComponent.php line: 1157
-system_component_php_version = "PHP Version 5.3 or Newer"
+system_component_php_version = "PHP Version 5.4 or Newer"
 ;
 ; SystemComponent.php line: 1165
 system_component_no_write_config_php = "configs/config.php not web server writable."
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = "(c) This Site"
 ; FooterElement.php line: 76
 footer_element_this_search_engine = "This Search Engine"
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = "Add Group"
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = "Request Add Group"
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = "Edit Page"
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = "My Group Feeds"
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = "My Group Feeds"
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = "Group Activity"
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = "%s Wiki Page Discussion"
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = "Feed"
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = "Wiki"
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = "%s User Feed"
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = "Comment"
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = "wiki"
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = "%s posts, %s threads"
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = "Last Post:"
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = "Comment"
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = "Start New Thread"
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = "Start New Thread"
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = "This group has no posts yet!"
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = "Thread does not exist! Maybe it was deleted?"
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = "Edit"
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = "Delete"
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = "%s posts"
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = "%s views"
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = "Start New Thread in %s"
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = "Start New Thread in %s"
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = "Last Edited: %s"
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = "Vote:"
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = "Last Post:"
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = "Comment"
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = "Drag items into the textarea to add them..."
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = "or click to select them."
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = "Add a Comment"
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = "Save"
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = "Subject"
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = "Post"
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = "Save"
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = "Edit Post"
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = "Subject"
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = "Post"
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = "Save"
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = "Group Feeds No Longer Updating!"
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = "You belong to %s groups."
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = "You belong to 1 group."
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = "wiki"
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = "%s posts, %s threads"
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = "Last Post:"
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = "Join/Manage All Groups"
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = "See Combined Group Feeds"
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = "Crawl Mixes"
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = "Present search results from multiple indexes in the order you prefer. Share your search creations with groups of friends."
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = "You have %s crawl mixes."
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = "You have %s crawl mix."
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = "Create/Manage Crawl Mixes"
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = "Awaiting Crawl Status"
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = "Crawl Status No Longer Updating"
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = "Not Subscribed to Groups"
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = "Subscribed Groups"
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = "Name"
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = "Owner"
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = "Register"
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = "Access"
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = "Voting"
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = "Post Lifetime"
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = "Actions"
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = "%s users"
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = "%s users"
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = "wiki"
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = "Join"
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = "Edit"
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = "Edit"
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = "Edit"
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = "Delete"
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = "Join"
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = "Join"
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = "Decline"
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = "Unsubscribe"
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = "Are you sure you want to Delete?"
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = "Delete"
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = "Create/Join Group"
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = "Edit Group"
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = "Create Group"
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = "Create/Join Group"
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = "Name"
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = "Browse"
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = "Register"
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = "Access"
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = "Voting"
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = "Post Lifetime"
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = "Members"
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = "%s users"
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = "Owner"
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = "Delete"
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = "Activate"
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = "Ban"
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = "Reinstate"
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = "Delete"
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = "Filter"
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = "Invite More Users"
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = "Save"
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = "Edit Group"
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = "Invite Users to Group"
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = "Name"
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = "Usernames (space/comma delimited)"
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = "Invite More Users"
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = "Create/Join Group"
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = "Transfer Group Owner"
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = "Name"
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = "New Owner"
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = "Change Owner"
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = "Discover Groups"
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = "Search Subscribed Groups"
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = "Create/Join Group"
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = "Name"
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = "Owner"
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = "Register"
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = "Access"
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = "Post Lifetime"
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "Sign Out"
 ; SubsearchElement.php line: 69
 subsearch_element_more = "More"
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = "Back"
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = "Feed"
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = "Wiki"
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = "%s Page"
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = "Read"
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = "Edit"
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = "Pages"
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = "Redirects to:"
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = "%s page does not exist."
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = "You can create this page by clicking on the edit link above."
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = "Or you can use the form below to create or edit a different page."
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = "Submit"
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = "Wiki Syntax Guide"
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = "%s page does not exist."
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = "If you have sufficient access you might be able to create the page by logging in and navigating back here."
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = "%s page does not exist."
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = "History"
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = "Discuss"
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = "Locale: %s"
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = "Page: %s"
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = "Settings"
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = "Page Type:"
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = "Alias Page To:"
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = "Page Border:"
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = "Table of Contents:"
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = "Title:"
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = "Author:"
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = "Meta Robots:"
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = "Meta Description:"
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = "Header Page Name:"
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = "Footer Page Name:"
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = "To archive a page so it won&#039;t appear in search results delete its text and save."
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = "Edit Reason:"
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = "Save"
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = "Media List Page"
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = "The uploaded items below will all appear when this page is read as a gallery or media list."
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = "Page Resources"
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = "Upload"
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = "Resources are images, videos, or files associated with this page."
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = "Rename Failed!"
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = "Rename"
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = "Add to Page"
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = "No resources have been saved to this page yet."
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = "%s Group Wiki Page List"
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = "Search group page titles"
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = "Go"
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = "Create Page: %s"
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = "Redirects to:"
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = "This group has no pages yet for the %s locale. Search for a nonexistant page and click edit to create it."
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = "Back"
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = "Difference:"
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = "Go"
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = "First"
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = "Second"
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = "First"
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = "Second"
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = "Edited by %s. "
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = "(%s bytes)."
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = "Revert"
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = "Revert"
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = "%s Wiki Page Discussion"
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = "Feed"
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = "Wiki"
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = "%s User"
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = "My Feeds"
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "Search"
 ; SearchView.php line: 155
 search_view_no_index_set = "No Default Index Set"
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = "More Statistics"
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "%s seconds."
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "Showing %s - %s of %s"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = "Thesaurus Results"
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = "Words:"
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "Cached"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "View&nbsp;as&nbsp;text"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "Similar"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = "Inlinks"
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "Rank:%s "
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "Rel:%s "
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = "Prox:%s"
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = "Thesaurus: %s"
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "Score:%s"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "Save Settings"
 ; SettingsView.php line: 116
 settings_install_search_plugin = "Install Yioop Open Search Plugin"
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "Signin"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = "Logging on"
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = "Login Failed!"
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "Username"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "Password"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "Login"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = "Forgot Password?"
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = "Create Account"
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = "Return"
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = "Version 14"
 ; View.php line: 93
 view_logo_alt_text = "Yioop"
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = "Read"
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = "Edit"
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = "Pages"
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = "Feed"
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = "Wiki"
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/es/configure.ini b/src/locale/es/configure.ini
index fe09d8ed6..94c2e2b53 100755
--- a/src/locale/es/configure.ini
+++ b/src/locale/es/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = "Seleccionar Rastreo"
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = "Seleccionar Rastreo"
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = "Rastreo Mix creado!"
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = "Rastreo Mix eliminado!"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = "Mix para eliminar (borrar) no existe!"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = "A&ntilde;adir Rastreos"
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = "N&uacute;mero de Resultados"
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = "Tama&ntilde;o"
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = "Acciones"
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = "Agregar consulta"
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = "Guardados los Cambios del Rastreo Mix!"
 ;
 ; SystemComponent.php line: 82
@@ -1342,7 +1342,7 @@ system_component_configure_no_change_profile = "Hubo un problema al actualizar e
 system_component_describe_robot = "Por favor describa su robot"
 ;
 ; SystemComponent.php line: 1157
-system_component_php_version = "PHP Version 5.3 o la M&aacute;s Reciente"
+system_component_php_version = "PHP Version 5.4 o la M&aacute;s Reciente"
 ;
 ; SystemComponent.php line: 1165
 system_component_no_write_config_php = "configs/config.php el servidor web no es escribible."
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = ""
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = "Auto-cerrar la sesi&oacute;n en un minuto!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "Buscar"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = ""
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = ""
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = ""
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = ""
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = ""
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = ""
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = ""
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = "Auto-cerrar la sesi&oacute;n en un minuto!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/fa/configure.ini b/src/locale/fa/configure.ini
index af8fcbdd4..c64fa7ef4 100755
--- a/src/locale/fa/configure.ini
+++ b/src/locale/fa/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = "یک خزش انتخاب کنید"
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = "خزش پیش&zwnj;فرض"
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = "یک خزش انتخاب کنید"
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = "خزش پیش&zwnj;فرض"
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = "ترکیب خزش ساخته شد!"
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = "ترکیب خزش حذف شد!"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = "ترکیبی که می&zwnj;خواهید حذف کنید وجود ندارد!"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = "خزش اضافه کن"
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = "تعداد نتایج"
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = "وزن"
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = "فرمان&zwnj;ها"
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = "پُرسمان اضافه کن"
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = "تغییرات ترکیب خزش ذخیره شد!"
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = "منتظر وضعیت خزش"
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = "وضعیت خزش دیگر به روز نمی&zwnj;شود"
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "خروج"
 ; SubsearchElement.php line: 69
 subsearch_element_more = "بیشتر"
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = "خروج خودکار تا یک دقیقهٔ دیگر!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "جستجو"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = "آمار بیشتر"
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "%s ثانیه"
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "در حال نمایش %s - %s از %s"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "کش شده"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "مشاهده به صورت متنی"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "مشابه"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = "پیوندهای داخلی"
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "رتبه: %s"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "ارتباط: %s"
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = "نزدیکی: %s"
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "امتیاز: %s"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "ذخیرهٔ تنظیمات"
 ; SettingsView.php line: 116
 settings_install_search_plugin = "پلاگین متن&zwnj;باز Yioop! را نصب کنید"
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "ورود"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "نام کاربری"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "رمز عبور"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "ورود"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = "خروج خودکار تا یک دقیقهٔ دیگر!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/fr_FR/configure.ini b/src/locale/fr_FR/configure.ini
index 8beb06278..78baa0745 100755
--- a/src/locale/fr_FR/configure.ini
+++ b/src/locale/fr_FR/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "D&eacute;connexion"
 ; SubsearchElement.php line: 69
 subsearch_element_more = "Plus"
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "Rechercher"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = "Plus de statistiques"
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "%s secondes."
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "Affichage de %s - %s sur %s r&eacute;sultats"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "En&nbsp;Cache"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "Version&nbsp;texte"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "Pages&nbsp;similaires"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = "Liens retour"
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "Rang: %s"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "Pertinence: %s"
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = "Proximit&eacute;: %s"
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "Total: %s"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "Enregistrer les pr&eacute;f&eacute;rences"
 ; SettingsView.php line: 116
 settings_install_search_plugin = "Installez Yioop embrochable"
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "Connexion"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "Utilisateur"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "Mot de passe"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "Se connecter"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/he/configure.ini b/src/locale/he/configure.ini
index 6f14aac8a..2553dc4c7 100755
--- a/src/locale/he/configure.ini
+++ b/src/locale/he/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = ""
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "חפש"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = ""
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = ""
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = ""
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = ""
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = ""
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "סיסמא"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = ""
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/hi/configure.ini b/src/locale/hi/configure.ini
index aa2d030f8..4d2dc43b3 100755
--- a/src/locale/hi/configure.ini
+++ b/src/locale/hi/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "साइन आउट करें"
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "खोज"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = ""
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = ""
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "परिवर्तन सहेजें "
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "साइन इन"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "उपयोगकर्ता का नाम"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "पासवर्ड"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "लॉग इन करें"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/in_ID/configure.ini b/src/locale/in_ID/configure.ini
index 5774a1916..3a9d36577 100755
--- a/src/locale/in_ID/configure.ini
+++ b/src/locale/in_ID/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "Keluar"
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "Cari"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "Hasil"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "Urutan"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = ""
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = ""
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = ""
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "Kata sandi"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = ""
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/it/configure.ini b/src/locale/it/configure.ini
index bd7a380de..e57fcdce7 100755
--- a/src/locale/it/configure.ini
+++ b/src/locale/it/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = "Seleziona Scansione"
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = "Seleziona Scansione"
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = "Unione Scansioni creata!"
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = "Unione Scansioni cancellata!"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = "Unione Scansioni da cancellare inesistente!"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = "Aggiungi scansione"
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = "Numero di risultati"
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = "Peso"
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = "Azioni"
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = "Aggiungi Ricerca"
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = "Cambiamenti Unione Scansioni effettuati!"
 ;
 ; SystemComponent.php line: 82
@@ -1342,7 +1342,7 @@ system_component_configure_no_change_profile = "C&#039;&egrave; stato un problem
 system_component_describe_robot = "Descrivi il tuo Robot"
 ;
 ; SystemComponent.php line: 1157
-system_component_php_version = "PHP Versione 5.3 o maggiore"
+system_component_php_version = "PHP Versione 5.4 o maggiore"
 ;
 ; SystemComponent.php line: 1165
 system_component_no_write_config_php = "File configs/config.php non scrivibile dal web server."
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = "Attesa stato Scansione"
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = "Stato Scansione non aggiornato"
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "Esci"
 ; SubsearchElement.php line: 69
 subsearch_element_more = "Pi&ugrave;"
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = "Fine Accesso in un minuto!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "Cerca"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = "Altre statistiche"
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "Calccolati in %s secondi."
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "Mostra risultati %s - %s di %s"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "Archivio"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "Vedi&nbsp;come&nbsp;testo"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "Simile"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = "Inlink"
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "Pos.: %s "
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "Rel: %s "
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = "Pros: %s"
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "Punteggio %s"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "Salva impostazioni"
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "Accedi"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "Utente"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "Password"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "Accedi"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = "Fine Accesso in un minuto!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/ja/configure.ini b/src/locale/ja/configure.ini
index 66ea3e35c..164d9cdcf 100755
--- a/src/locale/ja/configure.ini
+++ b/src/locale/ja/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = "検索ステータスを待っている"
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = "検索ステータス編集もうできました"
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "ログアウト"
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = "自動なログアウト一分ぐらい"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "検索"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "%s分で計算しました。"
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "結果表示%s ー %s の %s"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "キャッシューしました。"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "テクストビュー"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "同じビュー"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "ランク:%s"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "関連:%s"
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = "近さ: %s"
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "スコア %s"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "設定の保存"
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "サインイン"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "ユーザー名"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "パスワード"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "ログイン"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = "自動なログアウト一分ぐらい"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/kn/configure.ini b/src/locale/kn/configure.ini
index 3f5443428..9a389c7b9 100755
--- a/src/locale/kn/configure.ini
+++ b/src/locale/kn/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = "ಕ್ರಾವ್ಲಗಳ ಮಿಶ್ರಣ ಸೃಜಿಸಲಾಯಿತು"
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = "ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಳಿಸಲಾಗಿದೆ"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = "ಅಳಿಸಬೇಕಾದ ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇಲ್ಲ"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = "ಕ್ರಾವ್ಲಗಳನ್ನು ಸೇರಿಸಿ"
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = "ಫಲಿತಾಂಶಗಳ ಸಂಖ್ಯೆ"
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = "ಗೌರವ"
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = "ಕ್ರಿಯೆಗಳು"
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = "ಪ್ರಶ್ನೆಯನ್ನು ಸೇರಿಸು"
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = "ಕ್ರಾವ್ಲ್ ಮಿಶ್ರಣದಲ್ಲಿ ಬದಲಾವಣೆಯನ್ನು ಉಳಿಸು"
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "ನಿಷ್ಕ್ರಮಿಸಿ"
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "ಹುಡುಕು"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "ಲೆಕ್ಕಾಚಾರದ ಸಮಯ %s ಸೆಕೆಂಡು"
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "ತೋರಿಸುತ್ತಿರುವ ಫಲಿತಾಂಶಗಳು %s - %s ಆಫ್ %s"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "ಸಿದ್ಧ ಸ್ಮೃತಿಕೋಶದಿಂದ ನೋಡಿ"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "ಪಠ್ಯ ರೂಪದಲ್ಲಿ ನೋಡಿ"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "ಸಮಾನರೂಪದ"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = "ಒಳ ಕೊಂಡಿ"
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "ಸ್ಥಾನ: %s"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "ಪ್ರಾಸ್ತಾವಿಕ: %s"
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = "ಸಾನಿಧ್ಯ: %s"
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "ಅಂಕ: %s "
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "ಈ ಹೊಂದಾಣಿಕೆಯನ್ನು ಉಳಿ
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "ಒಳಪ್ರವೇಶಿಸಿ"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "ಬಳಕೆದಾರನ ಹೆಸರು"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "ಪ್ರವೇಶ ಪದ"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "ಒಳಪ್ರವೇಶಿಸಿ"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/ko/configure.ini b/src/locale/ko/configure.ini
index 7fa644edb..57125691e 100755
--- a/src/locale/ko/configure.ini
+++ b/src/locale/ko/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = "기다리고 있는 크롤 상태"
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = "크롤 상태를 더이상 업데이트 하지 않습니다."
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "로그 아웃"
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = "1 분내에 자동 로그 아웃 됍니다."
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "검색"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "%s 초 결과 완료"
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "결과 %s - %s 의 %s"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "캐시 됀것"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "일반 텍스트로써 보기"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "유사성"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = "인링크"
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "랭크: %s"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "관련성: %s "
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "점수 %s"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "세팅 저장"
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "사인인"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "아이디"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "비밀 번호"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "로그인"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = "1 분내에 자동 로그 아웃 됍니다."
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/nl/configure.ini b/src/locale/nl/configure.ini
index 8da1dbf9d..b763ade30 100644
--- a/src/locale/nl/configure.ini
+++ b/src/locale/nl/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = "Subsearch Bijgewerkt!"
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = "Media Source Bijgewerkt!"
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = "verzoek wil aansluiten"
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = "uitgenodigd"
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = "actief"
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = "niemand"
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = "Op verzoek"
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = "openbare Request"
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = "iedereen"
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = "geen lezen"
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = "lezen"
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = "Lees Comment"
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = "Lees Schrijf"
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = "Lees Schrijf Wiki"
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = "geen Stemmen"
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = "#NAME?"
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = "+/- Voting"
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = "nooit verloopt"
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = "een Uur"
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = "Op Een Dag"
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = "een Maand"
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = "Gebruiker geactiveerd!"
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = "Gebruiker is niet geactiveerd!"
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = "Groep geworden!"
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = "Groepsnaam niet beschikbaar!"
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = "Groepsnaam beschikbaar!"
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = "Gebruiker verboden!"
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = "Gebruiker is niet verboden!"
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = "Eigenaar veranderd!"
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = "Gebruiker niet in groep!"
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = "Gebruikersnaam bestaat niet!"
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = "Groep naam bestaat"
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = "Groep Naam Toegevoegd"
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = "Groep Naam bestaat niet"
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = "groep Deleted"
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = "Kan niet Groep verwijderen"
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = "gebruiker Verwijderde"
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = "Kan gebruiker niet verwijderen uit Groep."
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = "Gebruikers uitgenodigd!"
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = "Geen Gebruikers Uitgenodigd!!"
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = "Groep geworden!"
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = "Kon niet Uitschrijven!"
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = "Gebruiker hersteld!"
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = "Gebruiker is niet hersteld!"
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = "verzoek wil aansluiten"
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = "uitgenodigd"
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = "Banned"
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = "Succes Uitgeschreven!"
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = "Kon niet Uitschrijven!"
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = "Groep geworden!"
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = "Lid worden van groep verzoek!"
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = "Yioop Groep %s Activation Request"
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = "De gebruiker %s heeft verzocht om de groep %s aan te sluiten. De onderstaande verbinding kan worden gebruikt om deze gebruiker te beheren."
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = "Vriendelijke groeten,"
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = "Onvoldoende toegang!"
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = "Groep op de hoogte!"
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = "Poging om toegang te veranderen om onbekende waarde!"
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = "Filteren van gebruikers!"
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = "Fout in commentaar data!"
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = "Kan niet posten leeg reactie!"
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = " %s toegetreden tot %s!"
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = "Op %s, die u bij de groep %s."
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = "Upload Fout!"
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = "Nieuwe Post naar Discussie: %s"
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = "We dachten dat je ge&iuml;nteresseerd bent in een nieuwe post aan de draad zou zijn:"
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = "Vriendelijke groeten,"
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = "Beste %s,"
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = "Reactie toegevoegd!"
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = "Kunt geselecteerde groep niet toe te voegen!"
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = "Fout bij het verwijderen Item"
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = "Item Deleted!"
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = "Nee Item Deleted!"
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = "Stemming Fout!"
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = "Geen stem toegang tot die post!"
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = "Al gestemd!"
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = "Stem Opgenomen!"
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = "Fout in commentaar data!"
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = "Moeten zowel titel en beschrijving!"
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = "Upload Fout!"
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = "Nieuwe thread in groep %s"
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = "Als eigenaar van %s we dachten dat je zou willen weten van de volgende thread onlangs in uw groep:"
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = "Vriendelijke groeten,"
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = "Yioop Software"
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = "Beste %s,"
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = "Draad Gemaakt!"
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = "Fout in commentaar data!"
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = "Moeten zowel titel en beschrijving!"
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = "Bericht was gewoon elders bewerkt (een ander tabblad?)"
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = "Kan niet bijwerken Post!"
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = "Kan niet bijwerken Post!"
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = "Upload Fout!"
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = "Bericht Bijgewerkt!"
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = "Stemming Fout!"
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = "Geen stem toegang tot die post!"
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = "Al gestemd!"
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = "Stem Opgenomen!"
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = " %s toegetreden tot %s!"
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = "Op %s, die u bij de groep %s."
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = "Geen berichten Toch"
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = "zoeken"
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = "Geen lid is of kan die groep niet lezen. Overschakelen op openbare groep!"
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = "Geen lid is of kan die groep niet lezen. Overschakelen op openbare groep!"
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = "standaard"
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = "pagina Alias"
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = "Lijst media"
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = "presentatie"
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = "solide"
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = "Binnen"
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = "geen"
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = "Ontbrekende velden!"
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = "Wiki pagina is bewerkt Sinds Uw versie. Laden Changed versie!"
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = " %s Wiki pagina gemaakt!"
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = "Bespreek de pagina in deze thread!"
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = "Opgeslagen!"
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = "Resource Deleted!"
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = "Resource niet verwijderd!"
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = "Resource Omgedoopt!"
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = "Bron niet Omgedoopt!"
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = "Moeten Pagina opslaan Voordat gebruik van middelen!"
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = " %s Wiki pagina gemaakt!"
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = "Bespreek de pagina in deze thread!"
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = "Resource geupload!"
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = "Upload Fout!"
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = "terug"
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = "Historische versie van %s van %s."
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = "terug"
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = " %s lijn verschillen tussen %s en %s."
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = "Wiki pagina is bewerkt Sinds Uw versie. Laden Changed versie!"
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = "Terugkeren naar %s."
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = "Pagina bekeerd!"
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = "Fout terugzet pagina!"
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = "hoofd-"
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = "klein"
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = "medium"
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = "groot"
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = "grootte"
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = "Kopregel:"
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = "voorbeeld"
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = "tabel Titel"
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = "voorleggen"
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = "annuleren"
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = "Vette tekst"
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = "cursieve tekst"
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = "onderstreepte tekst"
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = "doorgehaalde tekst"
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = "titel"
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = "Rubriek 1"
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = "Rubriek 2"
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = "Rubriek 3"
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = "Rubriek 4"
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = "Ongeordende lijst object"
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = "Bestelde item in de lijst"
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = "Plaats hier de niet-opgemaakte tekst"
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = "Voeg Search Bar Vorm"
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = "grootte"
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = "Voeg Wiki Tabel"
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = "Column Count:"
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = "Rij Count:"
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = "Hyperlink toevoegen"
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = "tekst:"
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = "URL:"
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = "Zoek plaatsaanduidingstekst"
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = "Deze tekst is gecentreerd."
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = "Deze tekst is rechts uitgelijnd."
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = "Deze tekst is links uitgelijnd."
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = "item"
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = "definitie"
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = "titel"
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = "slide Item"
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = "Resource Description voor"
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = "Selecteer Crawl"
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = "standaard Crawl"
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = "Selecteer Crawl"
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = "standaard Crawl"
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = "Crawl Mix Gemaakt!"
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = "Meng Naam in Use of ongeldig!"
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = "Ongeldige Timestamp!"
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = "Crawl Mix Deleted!"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = "Mengen om te verwijderen bestaat niet!"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = "Meng ge&iuml;mporteerd!"
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = "Instellen Crawl om te gebruiken als Index"
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = "Fout in commentaar data!"
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = "Shared Mix heeft een ongeldige tijdstempel"
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = "Kan niet posten naar die groep!"
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = "Probeer deze crawl mix!"
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = " %s is het delen van de crawl mix %s!"
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = "Draad Gemaakt!"
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = "Ongeldige Timestamp!"
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = "Niet Meng de eigenaar!"
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = "Voeg Crawls"
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = "resultaten getoond"
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = "verwijderen"
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = "gewicht"
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = "naam"
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = "trefwoorden"
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = "acties"
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = "Zoekopdracht toevoegen"
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = "verwijderen"
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = "Too Many Zoekresultaat Fragmenten!"
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = "Crawl Mix Wijzigingen opgeslagen!"
 ;
 ; SystemComponent.php line: 82
@@ -1342,7 +1342,7 @@ system_component_configure_no_change_profile = "Er was een probleem updaten prof
 system_component_describe_robot = "Beschrijf uw Robot"
 ;
 ; SystemComponent.php line: 1157
-system_component_php_version = "PHP versie 5.3 of nieuwer"
+system_component_php_version = "PHP versie 5.4 of nieuwer"
 ;
 ; SystemComponent.php line: 1165
 system_component_no_write_config_php = "configs / config.php niet webserver beschrijfbaar."
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = "Groep toevoegen"
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = "Verzoek Groep toevoegen"
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = "Pagina bewerken"
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = "Mijn Groep Feeds"
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = "Mijn Groep Feeds"
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = "Group Activity"
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = " %s Wiki Pagina Overleg"
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = "voeden"
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = "wiki"
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = " %s Gebruiker Feed"
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = "commentaar"
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = "wiki"
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = " %s berichten, %s discussies"
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = "Laatste bericht:"
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = "commentaar"
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = "Start nieuw onderwerp"
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = "Start nieuw onderwerp"
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = "Deze groep heeft nog geen berichten!"
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = "Draad bestaat niet! Misschien was verwijderd?"
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = "uitgeven"
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = "verwijderen"
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = " %s berichten"
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = "uitzicht %s"
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = "Start nieuw onderwerp in %s"
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = "Start nieuw onderwerp in %s"
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = "Laatst gewijzigd: %s"
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = "stem:"
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = "Laatste bericht:"
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = "commentaar"
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = "Sleep items in het tekstveld om ze toe te voegen ..."
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = "of klik om ze te selecteren."
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = "Voeg een reactie toe"
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = "Opslaan"
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = "onderwerp"
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = "post"
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = "Opslaan"
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = "Bericht wijzigen"
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = "onderwerp"
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = "post"
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = "Opslaan"
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = "Groep feeds niet meer updaten!"
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = "U behoort tot %s groepen."
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = "U behoort tot 1 groep."
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = "wiki"
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = " %s berichten, %s discussies"
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = "Laatste bericht:"
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = "Join / beheren Alle groepen"
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = "Zie Gecombineerde Groep Feeds"
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = "crawl Mixes"
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = "Aanwezig zoekresultaten van meerdere indexen in de volgorde van uw voorkeur. Deel uw zoekopdracht creaties met een groep vrienden."
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = "Je hebt %s kruipen mixen."
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = "Je hebt %s kruipen mix."
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = "Maak / beheren Crawl Mixes"
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = "In afwachting van Crawlstatus"
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = "Crawlstatus niet meer updaten"
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = "Geen abonnement op Groepen"
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = "geabonneerd Groepen"
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = "naam"
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = "eigenaar"
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = "Registreer"
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = "toegang"
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = "stemming"
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = "bericht Lifetime"
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = "acties"
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = " %s gebruikers"
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = " %s gebruikers"
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = "wiki"
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = "toetreden"
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = "uitgeven"
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = "uitgeven"
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = "uitgeven"
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = "verwijderen"
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = "toetreden"
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = "toetreden"
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = "achteruitgang"
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = "Uitschrijven"
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = "verwijderen"
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = "Groep bewerken"
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = "Groep maken"
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = "Cre&iuml;er / Lid worden van groep"
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = "naam"
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = "Blader"
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = "Registreer"
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = "toegang"
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = "stemming"
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = "bericht Lifetime"
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = "leden"
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = " %s gebruikers"
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = "eigenaar"
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = "verwijderen"
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = "activeren"
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = "ban"
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = "herstellen"
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = "verwijderen"
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = "filter"
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = "Nodigen Meer Gebruikers"
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = "Opslaan"
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = "Groep bewerken"
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = "Nodig Gebruikers Groep"
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = "naam"
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = "Gebruikersnamen (spatie / kommas gescheiden)"
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = "Nodigen Meer Gebruikers"
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = "Transfer Group eigenaar"
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = "naam"
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = "nieuwe eigenaar"
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = "eigenaar wijzigen"
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = "Ontdek Groepen"
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = "Zoeken Geplaatst Groepen"
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = "naam"
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = "eigenaar"
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = "Registreer"
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = "toegang"
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = "bericht Lifetime"
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "uitloggen"
 ; SubsearchElement.php line: 69
 subsearch_element_more = "meer"
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = "terug"
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = "voeden"
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = "wiki"
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = " %s Pagina"
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = "lezen"
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = "uitgeven"
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = "paginas"
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = "Verwijst door naar:"
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = " %s pagina bestaat niet."
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = "U kunt deze pagina te sturen door te klikken op de bewerken link hierboven."
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = "Of u kunt het onderstaande formulier gebruiken om een andere pagina te maken of te bewerken."
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = "voorleggen"
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = "Wiki Syntax Gids"
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = " %s pagina bestaat niet."
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = "Als u voldoende toegangsrechten hebt u misschien in staat zijn om de pagina te maken door in te loggen en het navigeren hier terug."
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = " %s pagina bestaat niet."
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = "geschiedenis"
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = "bespreken"
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = "Locale: %s"
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = "Pagina: %s"
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = "instellingen"
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = "Pagina Type:"
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = "Alias pagina Aan:"
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = "Pagina Border:"
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = "Inhoudsopgave:"
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = "Titel:"
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = "auteur:"
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = "Meta Robots:"
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = "Meta Description:"
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = "Header Pagina Naam:"
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = "Footer Pagina Naam:"
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = "Om een pagina te archiveren, zodat het niet zal verschijnen in de zoekresultaten van de tekst te verwijderen en op te slaan."
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = "Reden Edit:"
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = "Opslaan"
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = "Media Lijst Pagina"
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = "De ge&iuml;ploade items hieronder alle verschijnen wanneer deze pagina wordt gelezen als een galerie of media-lijst."
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = "Bronnen pagina"
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = "uploaden"
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = "Middelen zijn afbeeldingen, videos of bestanden die verband houden met deze pagina."
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = "Hernoemen mislukt!"
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = "andere naam geven"
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = "Toevoegen aan pagina"
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = "Geen middelen zijn nog naar deze pagina opgeslagen."
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = " %s Groep Wiki Pagina Lijst"
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = "Zoek groep paginatitels"
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = "gaan"
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = "Pagina aanmaken: %s"
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = "Verwijst door naar:"
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = "Deze groep heeft nog geen paginas voor de %s locale. Zoeken naar een nonexistant pagina en klik op Bewerken om het te maken."
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = "terug"
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = "verschil:"
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = "gaan"
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = "eerste"
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = "tweede"
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = "eerste"
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = "tweede"
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = "Bewerkt door %s."
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = "( %s bytes)."
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = "terugkeren"
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = "terugkeren"
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = " %s Wiki Pagina Overleg"
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = "voeden"
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = "wiki"
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = " %s Gebruiker"
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = "mijn Feeds"
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = "Automatisch uitloggen in One Minute!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "zoeken"
 ; SearchView.php line: 155
 search_view_no_index_set = "Geen Standaard Index Set"
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = "meer Statistiek"
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = " %s seconden."
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "Toont %s - %s van %s"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = "thesaurus Resultaten"
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = "woorden:"
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "gecached"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "Bekijk & nbsp; als & nbsp; tekst"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "soortgelijk"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = "inlinks"
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "Rang: %s"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "Rel: %s"
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = "Prox: %s"
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = "Thesaurus: %s"
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "Score: %s"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "Instellingen opslaan"
 ; SettingsView.php line: 116
 settings_install_search_plugin = "Installeer Yioop! Open Search Plugin"
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "Aanmelden"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = "aanmelden"
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = "Inloggen Mislukt!"
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "gebruikersnaam"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "wachtwoord"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "Log In"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = "Wachtwoord Vergeten?"
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = "Maak Een Account Aan"
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = "Yioop"
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = "lezen"
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = "uitgeven"
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = "paginas"
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = "voeden"
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = "wiki"
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = "Automatisch uitloggen in One Minute!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/pl/configure.ini b/src/locale/pl/configure.ini
index f3b13dc6a..57490fb9a 100755
--- a/src/locale/pl/configure.ini
+++ b/src/locale/pl/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = ""
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "Szukaj"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = ""
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = ""
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = ""
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = ""
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = ""
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = ""
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = ""
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/pt/configure.ini b/src/locale/pt/configure.ini
index 7a0c73b59..7cba7ad61 100755
--- a/src/locale/pt/configure.ini
+++ b/src/locale/pt/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = ""
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "Pesquisa"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = ""
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = ""
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = ""
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = ""
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = ""
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = ""
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = ""
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/ru/configure.ini b/src/locale/ru/configure.ini
index a6ac87980..a9e1d2af9 100755
--- a/src/locale/ru/configure.ini
+++ b/src/locale/ru/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = ""
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "Поиск"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = ""
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = ""
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = ""
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = ""
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = ""
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = ""
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = ""
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/te/configure.ini b/src/locale/te/configure.ini
index 560d9ddab..f5456afb4 100644
--- a/src/locale/te/configure.ini
+++ b/src/locale/te/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = "సబ్ సెర్చ్ అప్డ
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = "మీడియా సోర్సు అప్డేట్ చేయడమైనది!"
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = "చేరడానికి అభ్యర్థన"
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = "ఆహ్వానించబడ్డారు"
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = "ఆక్టివ్ "
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = "ఎవరూ లేరు"
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = "అభ్యర్థన ద్వారా"
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = "బహిరంగ అభ్యర్థన"
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = "ఎవరైనా"
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = "చదవలేరు "
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = "చదవండి"
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = "వ్యాఖ్యను చదవండి "
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = "చదవండి వ్రాయండి"
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = "రీడ్ రైట్ వికీ"
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = "నో వోటింగ్"
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = "+ వోటింగ్"
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = "+/- వోటింగ్"
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = "గడువు ఎప్పటికీ ముగియదు"
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = "ఒక గంట"
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = "ఒక రోజు"
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = "ఒక నెల"
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = "యూజర్ యాక్టివేట్ చేయబడినది! "
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = "యూజర్ యాక్టివేట్ చేసిలేదు!"
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = "గ్రూప్ లో చేరారు!"
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = "గ్రూప్ పేరు అందుబాటులో లేదు!"
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = "గ్రూప్ పేరు అందుబాటులో వున్నది!"
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = "యూజర్ నిషేధించబడెను! "
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = "యూజర్ నిషేధించబడలేదు!"
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = "ఓనర్ మార్చబడింది!"
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = "ఈ యూజర్ గ్రూప్ లో లేరు"
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = "ఈ యూజర్ పేరు లేదు!"
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = "గ్రూప్ పేరు వున్నది"
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = "గ్రూప్ పేరు ఆడ్ చేయబడినది"
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = "ఈ గ్రూప్ పేరు లేదు"
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = "గ్రూప్ డిలీట్ చేయబడినది "
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = "గ్రూప్ డిలీట్ చేయబడుటలేదు"
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = "యూజర్ డిలీట్ చేయబడినది "
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = "ఈ యూజర్ గ్రూప్ నుంచి డిలీట్ చేయబడుటలేదు"
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = "యూజర్స్ ఆహ్వానించబడ్డారు!"
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = "ఏ యూజర్స్ ఆహ్వానించబడలేదు! "
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = "గ్రూప్ లో చేరారు!"
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = "తొలిగించుట సాధ్యపడలేదు!"
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = "యూజర్ పునరుద్ధరించబడెను!"
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = "యూజర్ పునరుద్ధరించబడలేదు!"
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = "చేరడానికి అభ్యర్థన"
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = "ఆహ్వానించబడ్డారు"
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = "నిషేధించబడినది "
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = "విజయవంతంగా తొలిగించబడినది!"
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = "తొలిగించుట సాధ్యపడలేదు!"
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = "గ్రూప్ లో చేరారు!"
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = "గ్రూప్ లో చేరడానికి అభ్యర్థన చేయబడినది!"
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = "yioop గ్రూప్ %s యాక్టివేషన్ అభ్యర్థన"
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = "యూజర్ %s గ్రూప్%s లో చేరడానికి అభ్యర్థన చేసారు. ఈ యూజర్ నిర్వహణకు క్రింది లింక్ ను వాడవచ్చు.  "
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = "ధన్యవాదములు,"
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్"
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = "చాలని యాక్సెస్!"
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = "గ్రూప్ అప్డేట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = "తెలియని విలువ యాక్సెస్ మార్చడానికి ప్రయత్నం!"
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = "యూజర్స్ వడపోత!"
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = " ఖాళీ వ్యాఖ్య పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = "%s చేరారు %s!"
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = "ఈ తేదిన %s, మీరు %s గ్రూప్ లో చేరారు."
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = "అప్ లోడ్ పొరపాటు"
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = "థ్రెడ్ లో క్రొత్త పోస్ట్: %s"
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = "ధన్యవాదములు,"
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్"
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = "డియర్ %s, "
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = "కామెంట్ ఆడ్ చేయడమైనది!"
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = "ఎంపిక చేసిన గ్రూప్ జోడించడము కుదరదు!"
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = "ఐటెం తొలగించడం లో పొరపాటు వచ్చినది"
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = "ఐటెం డిలీట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = "ఐటెం ఎదీ డిలీట్ చేయబడలేదు!"
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = "వోటింగ్ పొరపాటు!"
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = "ఈ పోస్ట్ కి వోటింగ్ సదుపాయము లేదు!"
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = "వోటింగ్ అయిపోయినది!"
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = "వోటింగ్ నమోదు చేయబడినది!"
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = "టైటిల్ మరియు వివరణ రెండూ అవసరం!"
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = "అప్ లోడ్ పొరపాటు"
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = "గ్రూప్ %s లో క్రొత్త థ్రెడ్"
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = "ధన్యవాదములు,"
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్"
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = "డియర్ %s, "
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = "థ్రెడ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = "టైటిల్ మరియు వివరణ రెండూ అవసరం!"
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = "పోస్ట్ వేరే చోట ఇప్పుడే సవరించారు (వేరే టేబ్?)"
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = "పోస్ట్ ని అప్డేట్ చేయలేరు!"
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = "పోస్ట్ ని అప్డేట్ చేయలేరు!"
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = "అప్ లోడ్ పొరపాటు"
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = "పోస్ట్ అప్డేట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = "వోటింగ్ పొరపాటు!"
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = "ఈ పోస్ట్ కి వోటింగ్ సదుపాయము లేదు!"
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = "వోటింగ్ అయిపోయినది!"
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = "వోటింగ్ నమోదు చేయబడినది!"
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = "%s చేరారు %s!"
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = "ఈ తేదిన %s, మీరు %s గ్రూప్ లో చేరారు."
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = "ఇంకా పోస్ట్లు ఏవీ లేవు"
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = "శోధన"
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = "సభ్యుడు కాదు లేదా ఆ గ్రూప్ ని చదవలేరు.పబ్లిక్ గ్రూప్ కి మార్చండి!"
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = "సభ్యుడు కాదు లేదా ఆ గ్రూప్ ని చదవలేరు.పబ్లిక్ గ్రూప్ కి మార్చండి!"
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = "సగటు"
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = "మీడియా జాబితా"
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = " "
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = "కొన్ని ఫీల్డ్స్ మిస్ అయినవి!"
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!"
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = "%s వికీ పేజ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = "ఈ థ్రెడ్ లో పేజీ గురించి చర్చించండి!"
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = "పేజ్ సేవ్ చేయబడినది!"
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = "రిసోర్స్ డిలీట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = "రిసోర్స్ డిలీట్ చేయబడలేదు!"
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = "రిసోర్స్ పేరు మార్చబడింది!"
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = "రిసోర్స్ పేరు మార్చలేదు!"
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = "రిసోర్సెస్ వాడే ముందు పేజ్ సేవ్ చేయాలి!"
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = "%s వికీ పేజ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = "ఈ థ్రెడ్ లో పేజీ గురించి చర్చించండి!"
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = "రిసోర్స్ అప్ లోడ్ అయినది!"
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = "అప్ లోడ్ పొరపాటు"
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = "వెనుకకు"
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = "చారిత్రక వెర్షన్ %s నుండి %s."
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = "వెనుకకు"
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = "%s లైన్ తేడాలు%s మరియు %s మధ్"
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!"
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = "తిరిగి వెనుకకు %s"
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = "పేజీ వెనుకకు మార్చబడింది!&quot;"
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = "పేజీ వెనుకకు మార్చుటలో లోపం!"
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = "ప్రధాన"
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = "చిన్న"
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = "మధ్యస్థం"
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = "పెద్ద"
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = "పరిమాణం"
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = "శీర్షిక పంక్తి:"
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = "ఉదాహరణ"
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = "టేబుల్ పేరు"
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = "మనవి చేయి"
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = "రద్దు చెయ్యి"
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = "బోల్డ్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = "ఇటాలిక్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = "అండర్ లైన్డ్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = "స్ట్రైక్డ్ టెక్స్ట్"
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = "హెడ్డింగ్"
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = "లెవెల్ 1 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = "లెవెల్ 2 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = "లెవెల్ 3 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = "లెవెల్ 4 హెడ్డింగ్"
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = "క్రమం లేని జాబితా అంశం"
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = "క్రమంలో జాబితా అంశం"
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = "ఇక్కడ ఫార్మాట్ చేయని టెక్స్ట్ ఇన్సర్ట్ చేయండి"
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = "శోధన రూపం జోడించండి"
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = "పరిమాణం"
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = "వికీ టేబుల్ ఆడ్ చెయ్యండి "
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = "కాలమ్ కౌంట్:"
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = "వరుస కౌంట్:"
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = "హైపర్ లింక్ ఆడ్ చెయ్యండి"
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = "టెక్స్ట్:"
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = "యుఆర్ఎల్:"
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = "ప్లేస్ హోల్డర్ టెక్స్ట్ శోధన"
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = "ఈ టెక్స్ట్ మధ్య సమలేఖనమైంది."
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = "ఈ టెక్స్ట్ కుడి సమలేఖనమైంది. "
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = "ఈ టెక్స్ట్ ఎడమ సమలేఖనమైంది."
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = "అంశము"
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = "నిర్వచనం"
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = "శీర్షిక"
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = "స్లయిడ్ అంశము"
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = "క్రాల్ ఎంచుకోండి"
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = "డిఫాల్ట  క్రాల్"
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = "క్రాల్ ఎంచుకోండి"
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = "డిఫాల్ట  క్రాల్"
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = "క్రాల్ మిక్స్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = "మిక్స్ పేరు వాడుక లో వుంది లేదా చెల్లదు!"
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = "టైం స్టాంప్ వేలిడ్ కాదు!"
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = "క్రాల్ మిక్స్ డిలీట్ చేయబడినది!"
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = "తొలగించవలసిన మిక్స్ లేదు!"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = "మిక్స్ విజయవంతంగా దిగుమతి చేయబడినది!"
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = "సూచికగా ఉపయోగించడానికి క్రాల్ సెట్ చేస్తోంది  "
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!"
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = "షేర్డ్ మిక్స్ టైమ్ స్టాంప్ చెల్లదు"
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!"
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = "ఈ క్రాల్ మిక్స్ ప్రయత్నించండి!"
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = "%s పంచుకుంటున్నారు  క్రాల్ మిక్స్%sని!"
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = "థ్రెడ్ సృష్టించబడినది!"
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = "టైం స్టాంప్ వేలిడ్ కాదు!"
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = "మిక్స్ యజమాని కాదు!"
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = "క్రాల్ లు జోడించుము"
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = "ఫలితాలను చూపించాయి"
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = "తొలగించు"
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = "బరువు"
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = "పేరు "
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = "కీ పదాలు"
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = "యాక్సన్ లు"
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = "క్వెరి జోడించుము"
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = "తొలగించు"
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = "చాలా శోధన ఫలిత శకలాలు!"
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = "క్రాల్ మిక్స్ మార్పులు సేవ్ చేయబడినవి!"
 ;
 ; SystemComponent.php line: 82
@@ -1342,7 +1342,7 @@ system_component_configure_no_change_profile = "ప్రొఫైల్ నవ
 system_component_describe_robot = "మీ రోబోట్ ని దయచేసి వివరించండి"
 ;
 ; SystemComponent.php line: 1157
-system_component_php_version = "PHP వెర్షన్ 5.3 లేదా ఇంకా క్రొత్తది"
+system_component_php_version = "PHP వెర్షన్ 5.4 లేదా ఇంకా క్రొత్తది"
 ;
 ; SystemComponent.php line: 1165
 system_component_no_write_config_php = ""
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = "ఆడ్ గ్రూప్"
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = "రిక్వెస్ట్ ఆడ్ గ్రూప్"
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = "ఎడిట్ పేజి"
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = "%s వికీ పేజీ చర్చ"
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = "ఫీడ్"
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = "వికీ "
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = "%s యూజర్ ఫీడ్"
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = "వ్యాఖ్య"
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = "వికీ"
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = "%sపోస్ట్లు, %sథ్రెడ్లు"
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = "ఆఖరి పోస్ట్:"
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = "వ్యాఖ్య"
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = "క్రొత్త థ్రెడ్ మొదలుపెట్టండి"
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = "క్రొత్త థ్రెడ్ మొదలుపెట్టండి"
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = "ఈ గ్రూప్ లో ఇంకా పోస్ట్లు లేవు!"
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = "థ్రెడ్ ఉనికిలో లేదు! ఇది తొలగించబడి ఉండవచ్చు?"
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = "ఎడిట్"
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = "డిలీట్"
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = "%s పోస్ట్లు"
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = "%s వ్యూస్"
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = "క్రొత్త థ్రెడ్ %s"
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = "క్రొత్త థ్రెడ్ %s"
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = "చివరిగా సవరించబడింది: %s"
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = "వోట్:"
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = "ఆఖరి పోస్ట్:"
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = "వ్యాఖ్య"
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = "వ్యాఖ్యను జోడించండి"
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = "సేవ్"
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = "విషయం"
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = "పోస్ట్"
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = "సేవ్"
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = "పోస్ట్ లను సవరించు"
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = "విషయం"
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = "పోస్ట్"
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = "సేవ్"
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = "గ్రూప్ ఫీడ్స్ అప్డేట్ అవడంలేదు!"
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = "వికీ"
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = "%sపోస్ట్లు, %sథ్రెడ్లు"
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = "ఆఖరి పోస్ట్:"
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = "క్రాల్ మిక్షెస్"
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = "పేరు"
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = "వికీ"
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = "జాయిన్"
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = "ఎడిట్"
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = "ఎడిట్"
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = "ఎడిట్"
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = "డిలీట్"
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = "జాయిన్"
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = "జాయిన్"
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = "డిలీట్"
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = "ఎడిట్ గ్రూప్"
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = "గ్రూప్ సృష్టించు"
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = "గ్రూప్ సృష్టించు/చేరు "
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = "పేరు"
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = "బ్రౌజ్"
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = "నమోదు చేయి"
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = "డిలీట్"
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = "డిలీట్"
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = "మరిన్నియూజర్స్ ని ఆహ్వానించండి"
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = "సేవ్"
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = "ఎడిట్ గ్రూప్"
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = "యూజర్స్ ని గ్రూప్ కి  ఆహ్వానించండి"
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = "పేరు"
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = "యూజర్ పేర్లు(కామా లేదా ఖాళీ)"
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = "మరిన్నియూజర్స్ ని ఆహ్వానించండి"
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = "పేరు"
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = "పేరు"
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "సైన్ ఔట్ "
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = "ఫీడ్"
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = "వికీ సింటాక్స్ గైడ్"
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = "చరిత్ర"
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = "లొకేల్: %s"
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = "పేజ్: %s"
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = "సెట్టింగ్స్"
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = "పేజ్ టైపు:"
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = "టైటిల్:"
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = "రచయిత:"
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = "మెటా రోబోట్స్:"
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = "మెటా వివరణ:"
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = "హెడర్ పేజ్ నేమ్:"
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = "ఫుటరు పేజ్ నేమ్:"
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = "ఎడిట్ కారణం:"
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = "సేవ్ చేయి"
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = "మీడియా లిస్టు పేజ్"
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = "పేజ్ రిసోర్సెస్"
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = "అప్లోడ్"
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = "పేరు మార్పు విఫలమైనది!"
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = "పేరుమార్చండి"
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = "పేజీకి జోడించండి"
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = "%s గ్రూప్ వికీ పేజీ జాబితా"
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = "గ్రూప్ పేజి పేర్లను శోధించు"
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = "పేజీ సృష్టించు: %s"
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = "%s వికీ పేజీ చర్చ"
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = "వికీ "
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = "ఒక నిమిషం లో ఆటో లాగ్అవుట్ అవుతుంది!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "అన్వేషించు"
 ; SearchView.php line: 155
 search_view_no_index_set = "డిఫాల్ట్ సూచిక సెట్ చేసి లేదు"
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = "మరిన్ని గణాంకాలు"
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "%s సెకన్లు"
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "చూపించేది %s - %s of %s"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = "థెసారస్ ఫలితాలు"
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = "వర్డ్స్:"
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "కేష్ చేయబడినవి"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "టెక్ష్ట్ లాగ చూపించు"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "ఒకే రకం"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = "ఇన్ లింక్స్"
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "రేంక్:%s"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "సంబంధిత:%s"
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = "సామీప్యత:%s"
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = "థెసారస్: %s"
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "స్కోర్:%s"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "సెట్టింగులను సేవ్ చే
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "సైన్ ఇన్"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = "లాగిన్ ఫెయిల్ అయ్యింది!"
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "యూజర్ పేరు"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "పాస్&zwnj;వర్డ్ "
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "లాగ్ ఇన్"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = "పాస్&zwnj;వర్డ్ మర్చిపోయారా?"
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = "Yioop"
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = "ఫీడ్  "
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = "ఒక నిమిషం లో ఆటో లాగ్అవుట్ అవుతుంది!!"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/th/configure.ini b/src/locale/th/configure.ini
index 6031f5db5..336e93a60 100755
--- a/src/locale/th/configure.ini
+++ b/src/locale/th/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = ""
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = ""
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = ""
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = ""
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = ""
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = ""
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = ""
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = ""
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = ""
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/tr/configure.ini b/src/locale/tr/configure.ini
index d8b179f71..73f6481a5 100755
--- a/src/locale/tr/configure.ini
+++ b/src/locale/tr/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = ""
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = ""
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = ""
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = ""
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = ""
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = ""
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = ""
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "Ara"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = ""
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = ""
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = ""
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = ""
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = ""
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = ""
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = ""
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = ""
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = ""
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = ""
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = ""
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/vi_VN/configure.ini b/src/locale/vi_VN/configure.ini
index 2699ead1b..8de727ba9 100755
--- a/src/locale/vi_VN/configure.ini
+++ b/src/locale/vi_VN/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = "Chọn thu thập th&ocirc;ng tin"
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = "Chọn thu thập th&ocirc;ng tin"
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = "Tạo ra hỗn hợp "
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = "X&oacute;a kết hợp "
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = "Kết hợp n&agrave;y kh&ocirc;ng tồn tại"
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = "Cộng th&ecirc;m thu thập"
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = "Số kết quả"
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = "Trọng lượng"
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = "H&agrave;nh động"
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = "Cộng th&ecirc;m truy vấn"
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = "Kết hợp đ&atilde; được lưu dữ"
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "Tho&aacute;t"
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = "Tự động tho&aacute;t trong một ph&uacute;t"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "T&igrave;m Kiếm"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "%s gi&acirc;y."
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "Cho kết quả tứ %s - %s của %s"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = "Trang&nbsp;gốc"
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = "Trang&nbsp;Web&nbsp;Bắng Chữ"
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "Tương&nbsp;Tự"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "Thứ Tự: %s"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "Th&iacute;ch hợp: %s"
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = "Gần: %s"
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "Điểm: %s"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "Giữ sự sắp đặt"
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "Đăng nhập"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "T&ecirc;n đăng nhập "
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "Mật khẩu"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "Đăng nhập"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = "Tự động tho&aacute;t trong một ph&uacute;t"
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/locale/zh_CN/configure.ini b/src/locale/zh_CN/configure.ini
index e3cbfb071..0a75def55 100755
--- a/src/locale/zh_CN/configure.ini
+++ b/src/locale/zh_CN/configure.ini
@@ -549,622 +549,622 @@ crawl_component_subsearch_updated = ""
 ; CrawlComponent.php line: 1705
 crawl_component_media_source_updated = ""
 ;
-; SocialComponent.php line: 91
+; SocialComponent.php line: 92
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 92
+; SocialComponent.php line: 93
 social_component_invited = ""
 ;
-; SocialComponent.php line: 93
+; SocialComponent.php line: 94
 social_component_active_status = ""
 ;
-; SocialComponent.php line: 94
+; SocialComponent.php line: 95
 social_component_suspended_status = ""
 ;
-; SocialComponent.php line: 97
+; SocialComponent.php line: 98
 social_component_no_join = ""
 ;
-; SocialComponent.php line: 98
+; SocialComponent.php line: 99
 social_component_by_request = ""
 ;
-; SocialComponent.php line: 100
+; SocialComponent.php line: 101
 social_component_public_request = ""
 ;
-; SocialComponent.php line: 101
+; SocialComponent.php line: 102
 social_component_public_join = ""
 ;
-; SocialComponent.php line: 104
+; SocialComponent.php line: 105
 social_component_private = ""
 ;
-; SocialComponent.php line: 105
+; SocialComponent.php line: 106
 social_component_read = ""
 ;
-; SocialComponent.php line: 106
+; SocialComponent.php line: 107
 social_component_read_comment = ""
 ;
-; SocialComponent.php line: 107
+; SocialComponent.php line: 108
 social_component_read_write = ""
 ;
-; SocialComponent.php line: 108
+; SocialComponent.php line: 109
 social_component_read_wiki = ""
 ;
-; SocialComponent.php line: 111
+; SocialComponent.php line: 112
 social_component_no_voting = ""
 ;
-; SocialComponent.php line: 112
+; SocialComponent.php line: 113
 social_component_up_voting = ""
 ;
-; SocialComponent.php line: 113
+; SocialComponent.php line: 114
 social_component_up_down_voting = ""
 ;
-; SocialComponent.php line: 116
+; SocialComponent.php line: 117
 social_component_forever = ""
 ;
-; SocialComponent.php line: 117
+; SocialComponent.php line: 118
 social_component_one_hour = ""
 ;
-; SocialComponent.php line: 118
+; SocialComponent.php line: 119
 social_component_one_day = ""
 ;
-; SocialComponent.php line: 119
+; SocialComponent.php line: 120
 social_component_one_month = ""
 ;
-; SocialComponent.php line: 191
+; SocialComponent.php line: 192
 accountaccess_component_user_activated = ""
 ;
-; SocialComponent.php line: 196
+; SocialComponent.php line: 197
 accountaccess_component_no_user_activated = ""
 ;
-; SocialComponent.php line: 215
+; SocialComponent.php line: 216
 social_component_joined = ""
 ;
-; SocialComponent.php line: 219
+; SocialComponent.php line: 220
 social_component_groupname_unavailable = ""
 ;
-; SocialComponent.php line: 225
+; SocialComponent.php line: 226
 social_component_name_available = ""
 ;
-; SocialComponent.php line: 242
+; SocialComponent.php line: 243
 social_component_user_banned = ""
 ;
-; SocialComponent.php line: 247
+; SocialComponent.php line: 248
 social_component_no_user_banned = ""
 ;
-; SocialComponent.php line: 268
+; SocialComponent.php line: 269
 social_component_owner_changed = ""
 ;
-; SocialComponent.php line: 273
+; SocialComponent.php line: 274
 social_component_not_in_group = ""
 ;
-; SocialComponent.php line: 279
+; SocialComponent.php line: 280
 social_component_not_a_user = ""
 ;
-; SocialComponent.php line: 295
+; SocialComponent.php line: 296
 social_component_groupname_exists = ""
 ;
-; SocialComponent.php line: 319
+; SocialComponent.php line: 320
 social_component_groupname_added = ""
 ;
-; SocialComponent.php line: 328
+; SocialComponent.php line: 329
 social_component_groupname_doesnt_exists = ""
 ;
-; SocialComponent.php line: 335
+; SocialComponent.php line: 336
 social_component_group_deleted = ""
 ;
-; SocialComponent.php line: 338
+; SocialComponent.php line: 339
 social_component_no_delete_group = ""
 ;
-; SocialComponent.php line: 351
+; SocialComponent.php line: 352
 social_component_user_deleted = ""
 ;
-; SocialComponent.php line: 356
+; SocialComponent.php line: 357
 social_component_no_delete_user_group = ""
 ;
-; SocialComponent.php line: 405
+; SocialComponent.php line: 406
 social_component_users_invited = ""
 ;
-; SocialComponent.php line: 410
+; SocialComponent.php line: 411
 social_component_no_users_invited = ""
 ;
-; SocialComponent.php line: 426
+; SocialComponent.php line: 427
 social_component_joined = ""
 ;
-; SocialComponent.php line: 429
+; SocialComponent.php line: 430
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 470
+; SocialComponent.php line: 471
 social_component_user_reinstated = ""
 ;
-; SocialComponent.php line: 475
+; SocialComponent.php line: 476
 social_component_no_user_reinstated = ""
 ;
-; SocialComponent.php line: 482
+; SocialComponent.php line: 483
 social_component_request_join = ""
 ;
-; SocialComponent.php line: 484
+; SocialComponent.php line: 485
 social_component_invited = ""
 ;
-; SocialComponent.php line: 486
+; SocialComponent.php line: 487
 social_component_banned_status = ""
 ;
-; SocialComponent.php line: 503
+; SocialComponent.php line: 504
 social_component_unsubscribe = ""
 ;
-; SocialComponent.php line: 507
+; SocialComponent.php line: 508
 social_component_no_unsubscribe = ""
 ;
-; SocialComponent.php line: 555
+; SocialComponent.php line: 556
 social_component_group_joined = ""
 ;
-; SocialComponent.php line: 557
+; SocialComponent.php line: 558
 social_component_group_request_join = ""
 ;
-; SocialComponent.php line: 572
+; SocialComponent.php line: 573
 social_component_activate_group = ""
 ;
-; SocialComponent.php line: 579
+; SocialComponent.php line: 580
 social_component_activate_body = ""
 ;
-; SocialComponent.php line: 583
+; SocialComponent.php line: 584
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 584
+; SocialComponent.php line: 585
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 655
+; SocialComponent.php line: 656
 social_component_no_permission = ""
 ;
-; SocialComponent.php line: 668
+; SocialComponent.php line: 669
 social_component_group_updated = ""
 ;
-; SocialComponent.php line: 676
+; SocialComponent.php line: 677
 social_component_unknown_access = ""
 ;
-; SocialComponent.php line: 684
+; SocialComponent.php line: 685
 social_component_group_filter_users = ""
 ;
-; SocialComponent.php line: 775
+; SocialComponent.php line: 776
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 779
+; SocialComponent.php line: 780
 social_component_no_comment = ""
 ;
-; SocialComponent.php line: 791
+; SocialComponent.php line: 792
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 797
+; SocialComponent.php line: 798
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 801
+; SocialComponent.php line: 802
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 804
+; SocialComponent.php line: 805
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 819
+; SocialComponent.php line: 820
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 832
+; SocialComponent.php line: 833
 social_component_thread_notification = ""
 ;
-; SocialComponent.php line: 834
+; SocialComponent.php line: 835
 social_component_notify_body = ""
 ;
-; SocialComponent.php line: 837
+; SocialComponent.php line: 838
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 838
+; SocialComponent.php line: 839
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 840
+; SocialComponent.php line: 841
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 847
+; SocialComponent.php line: 848
 social_component_comment_added = ""
 ;
-; SocialComponent.php line: 858
+; SocialComponent.php line: 859
 social_component_groupname_cant_add = ""
 ;
-; SocialComponent.php line: 864
+; SocialComponent.php line: 865
 social_component_delete_error = ""
 ;
-; SocialComponent.php line: 884
+; SocialComponent.php line: 885
 social_component_item_deleted = ""
 ;
-; SocialComponent.php line: 887
+; SocialComponent.php line: 888
 social_component_no_item_deleted = ""
 ;
-; SocialComponent.php line: 895
+; SocialComponent.php line: 896
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 904
+; SocialComponent.php line: 905
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 909
+; SocialComponent.php line: 910
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 913
+; SocialComponent.php line: 914
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 917
+; SocialComponent.php line: 918
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 923
+; SocialComponent.php line: 924
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 928
+; SocialComponent.php line: 929
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 939
+; SocialComponent.php line: 940
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 947
+; SocialComponent.php line: 948
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 960
+; SocialComponent.php line: 961
 social_component_new_thread_mail = ""
 ;
-; SocialComponent.php line: 964
+; SocialComponent.php line: 965
 social_component_new_thread_body = ""
 ;
-; SocialComponent.php line: 968
+; SocialComponent.php line: 969
 social_component_notify_closing = ""
 ;
-; SocialComponent.php line: 969
+; SocialComponent.php line: 970
 social_component_notify_signature = ""
 ;
-; SocialComponent.php line: 974
+; SocialComponent.php line: 975
 social_component_notify_salutation = ""
 ;
-; SocialComponent.php line: 982
+; SocialComponent.php line: 983
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 990
+; SocialComponent.php line: 991
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 994
+; SocialComponent.php line: 995
 social_component_need_title_description = ""
 ;
-; SocialComponent.php line: 1000
+; SocialComponent.php line: 1001
 social_component_post_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1008
+; SocialComponent.php line: 1009
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1021
+; SocialComponent.php line: 1022
 social_component_no_update_access = ""
 ;
-; SocialComponent.php line: 1030
+; SocialComponent.php line: 1031
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1033
+; SocialComponent.php line: 1034
 social_component_post_updated = ""
 ;
-; SocialComponent.php line: 1040
+; SocialComponent.php line: 1041
 social_component_vote_error = ""
 ;
-; SocialComponent.php line: 1049
+; SocialComponent.php line: 1050
 social_component_no_vote_access = ""
 ;
-; SocialComponent.php line: 1054
+; SocialComponent.php line: 1055
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 1058
+; SocialComponent.php line: 1059
 social_component_already_voted = ""
 ;
-; SocialComponent.php line: 1062
+; SocialComponent.php line: 1063
 social_component_vote_recorded = ""
 ;
-; SocialComponent.php line: 1093
+; SocialComponent.php line: 1094
 social_component_join_group = ""
 ;
-; SocialComponent.php line: 1096
+; SocialComponent.php line: 1097
 social_component_join_group_detail = ""
 ;
-; SocialComponent.php line: 1364
+; SocialComponent.php line: 1373
 accountaccess_component_no_posts_yet = ""
 ;
-; SocialComponent.php line: 1406
+; SocialComponent.php line: 1416
 social_component_search = ""
 ;
-; SocialComponent.php line: 1490
+; SocialComponent.php line: 1503
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1493
+; SocialComponent.php line: 1506
 social_component_no_group_access = ""
 ;
-; SocialComponent.php line: 1517
+; SocialComponent.php line: 1530
 social_component_standard_page = ""
 ;
-; SocialComponent.php line: 1518
+; SocialComponent.php line: 1531
 social_component_page_alias = ""
 ;
-; SocialComponent.php line: 1519
+; SocialComponent.php line: 1532
 social_component_media_list = ""
 ;
-; SocialComponent.php line: 1520
+; SocialComponent.php line: 1533
 social_component_presentation = ""
 ;
-; SocialComponent.php line: 1523
+; SocialComponent.php line: 1536
 social_component_solid = ""
 ;
-; SocialComponent.php line: 1524
+; SocialComponent.php line: 1537
 social_component_dashed = ""
 ;
-; SocialComponent.php line: 1525
+; SocialComponent.php line: 1538
 social_component_none = ""
 ;
-; SocialComponent.php line: 1564
+; SocialComponent.php line: 1577
 social_component_missing_fields = ""
 ;
-; SocialComponent.php line: 1570
+; SocialComponent.php line: 1583
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1620
+; SocialComponent.php line: 1633
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1621
+; SocialComponent.php line: 1634
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1626
+; SocialComponent.php line: 1639
 social_component_page_saved = ""
 ;
-; SocialComponent.php line: 1638
+; SocialComponent.php line: 1651
 social_component_resource_deleted = ""
 ;
-; SocialComponent.php line: 1643
+; SocialComponent.php line: 1656
 social_component_resource_not_deleted = ""
 ;
-; SocialComponent.php line: 1660
+; SocialComponent.php line: 1673
 social_component_resource_renamed = ""
 ;
-; SocialComponent.php line: 1665
+; SocialComponent.php line: 1678
 social_component_resource_not_renamed = ""
 ;
-; SocialComponent.php line: 1675
+; SocialComponent.php line: 1688
 social_component_resource_save_first = ""
 ;
-; SocialComponent.php line: 1687
+; SocialComponent.php line: 1700
 social_component_page_created = ""
 ;
-; SocialComponent.php line: 1689
+; SocialComponent.php line: 1702
 social_component_page_discuss_here = ""
 ;
-; SocialComponent.php line: 1693
+; SocialComponent.php line: 1706
 social_component_resource_uploaded = ""
 ;
-; SocialComponent.php line: 1698
+; SocialComponent.php line: 1711
 social_component_upload_error = ""
 ;
-; SocialComponent.php line: 1745
+; SocialComponent.php line: 1758
 social_component_back = ""
 ;
-; SocialComponent.php line: 1746
+; SocialComponent.php line: 1759
 social_component_history_page = ""
 ;
-; SocialComponent.php line: 1780
+; SocialComponent.php line: 1794
 social_component_back = ""
 ;
-; SocialComponent.php line: 1781
+; SocialComponent.php line: 1795
 social_component_diff_page = ""
 ;
-; SocialComponent.php line: 1795
+; SocialComponent.php line: 1809
 social_component_wiki_edited_elsewhere = ""
 ;
-; SocialComponent.php line: 1803
+; SocialComponent.php line: 1817
 social_component_page_revert_to = ""
 ;
-; SocialComponent.php line: 1807
+; SocialComponent.php line: 1821
 social_component_page_reverted = ""
 ;
-; SocialComponent.php line: 1811
+; SocialComponent.php line: 1825
 social_component_revert_error = ""
 ;
-; SocialComponent.php line: 1882
+; SocialComponent.php line: 1896
 social_component_main = ""
 ;
-; SocialComponent.php line: 2127
+; SocialComponent.php line: 2142
 wiki_js_small = ""
 ;
-; SocialComponent.php line: 2128
+; SocialComponent.php line: 2143
 wiki_js_medium = ""
 ;
-; SocialComponent.php line: 2129
+; SocialComponent.php line: 2144
 wiki_js_large = ""
 ;
-; SocialComponent.php line: 2130
+; SocialComponent.php line: 2145
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2131
+; SocialComponent.php line: 2146
 wiki_js_prompt_heading = ""
 ;
-; SocialComponent.php line: 2132
+; SocialComponent.php line: 2147
 wiki_js_example = ""
 ;
-; SocialComponent.php line: 2133
+; SocialComponent.php line: 2148
 wiki_js_table_title = ""
 ;
-; SocialComponent.php line: 2134
+; SocialComponent.php line: 2149
 wiki_js_submit = ""
 ;
-; SocialComponent.php line: 2135
+; SocialComponent.php line: 2150
 wiki_js_cancel = ""
 ;
-; SocialComponent.php line: 2136
+; SocialComponent.php line: 2151
 wiki_js_bold = ""
 ;
-; SocialComponent.php line: 2137
+; SocialComponent.php line: 2152
 wiki_js_italic = ""
 ;
-; SocialComponent.php line: 2138
+; SocialComponent.php line: 2153
 wiki_js_underline = ""
 ;
-; SocialComponent.php line: 2139
+; SocialComponent.php line: 2154
 wiki_js_strike = ""
 ;
-; SocialComponent.php line: 2140
+; SocialComponent.php line: 2155
 wiki_js_heading = ""
 ;
-; SocialComponent.php line: 2141
+; SocialComponent.php line: 2156
 wiki_js_heading1 = ""
 ;
-; SocialComponent.php line: 2142
+; SocialComponent.php line: 2157
 wiki_js_heading2 = ""
 ;
-; SocialComponent.php line: 2143
+; SocialComponent.php line: 2158
 wiki_js_heading3 = ""
 ;
-; SocialComponent.php line: 2144
+; SocialComponent.php line: 2159
 wiki_js_heading4 = ""
 ;
-; SocialComponent.php line: 2145
+; SocialComponent.php line: 2160
 wiki_js_bullet = ""
 ;
-; SocialComponent.php line: 2146
+; SocialComponent.php line: 2161
 wiki_js_enum = ""
 ;
-; SocialComponent.php line: 2147
+; SocialComponent.php line: 2162
 wiki_js_nowiki = ""
 ;
-; SocialComponent.php line: 2148
+; SocialComponent.php line: 2163
 wiki_js_add_search = ""
 ;
-; SocialComponent.php line: 2149
+; SocialComponent.php line: 2164
 wiki_js_search_size = ""
 ;
-; SocialComponent.php line: 2150
+; SocialComponent.php line: 2165
 wiki_js_add_wiki_table = ""
 ;
-; SocialComponent.php line: 2151
+; SocialComponent.php line: 2166
 wiki_js_for_table_cols = ""
 ;
-; SocialComponent.php line: 2152
+; SocialComponent.php line: 2167
 wiki_js_for_table_rows = ""
 ;
-; SocialComponent.php line: 2153
+; SocialComponent.php line: 2168
 wiki_js_add_hyperlink = ""
 ;
-; SocialComponent.php line: 2154
+; SocialComponent.php line: 2169
 wiki_js_link_text = ""
 ;
-; SocialComponent.php line: 2155
+; SocialComponent.php line: 2170
 wiki_js_link_url = ""
 ;
-; SocialComponent.php line: 2156
+; SocialComponent.php line: 2171
 wiki_js_placeholder = ""
 ;
-; SocialComponent.php line: 2157
+; SocialComponent.php line: 2172
 wiki_js_centeraligned = ""
 ;
-; SocialComponent.php line: 2158
+; SocialComponent.php line: 2173
 wiki_js_rightaligned = ""
 ;
-; SocialComponent.php line: 2159
+; SocialComponent.php line: 2174
 wiki_js_leftaligned = ""
 ;
-; SocialComponent.php line: 2161
+; SocialComponent.php line: 2176
 wiki_js_definitionlist_item = ""
 ;
-; SocialComponent.php line: 2163
+; SocialComponent.php line: 2178
 wiki_js_definitionlist_definition = ""
 ;
-; SocialComponent.php line: 2165
+; SocialComponent.php line: 2180
 wiki_js_slide_sample_title = ""
 ;
-; SocialComponent.php line: 2167
+; SocialComponent.php line: 2182
 wiki_js_slide_sample_bullet = ""
 ;
-; SocialComponent.php line: 2169
+; SocialComponent.php line: 2184
 wiki_js_slide_resource_description = ""
 ;
-; SocialComponent.php line: 2207
+; SocialComponent.php line: 2222
 social_component_select_crawl = "搜尋選擇"
 ;
-; SocialComponent.php line: 2208
+; SocialComponent.php line: 2223
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2210
+; SocialComponent.php line: 2225
 social_component_select_crawl = "搜尋選擇"
 ;
-; SocialComponent.php line: 2212
+; SocialComponent.php line: 2227
 social_component_default_crawl = ""
 ;
-; SocialComponent.php line: 2242
+; SocialComponent.php line: 2257
 social_component_mix_created = ""
 ;
-; SocialComponent.php line: 2245
+; SocialComponent.php line: 2260
 social_component_invalid_name = ""
 ;
-; SocialComponent.php line: 2253
+; SocialComponent.php line: 2268
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2257
+; SocialComponent.php line: 2272
 social_component_mix_deleted = ""
 ;
-; SocialComponent.php line: 2276
+; SocialComponent.php line: 2291
 social_component_mix_doesnt_exists = ""
 ;
-; SocialComponent.php line: 2284
+; SocialComponent.php line: 2299
 social_component_mix_imported = ""
 ;
-; SocialComponent.php line: 2298
+; SocialComponent.php line: 2313
 social_component_set_index = ""
 ;
-; SocialComponent.php line: 2307
+; SocialComponent.php line: 2322
 social_component_comment_error = ""
 ;
-; SocialComponent.php line: 2313
+; SocialComponent.php line: 2328
 social_component_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2331
+; SocialComponent.php line: 2346
 social_component_no_post_access = ""
 ;
-; SocialComponent.php line: 2335
+; SocialComponent.php line: 2350
 social_component_share_title = ""
 ;
-; SocialComponent.php line: 2337
+; SocialComponent.php line: 2352
 social_component_share_description = ""
 ;
-; SocialComponent.php line: 2342
+; SocialComponent.php line: 2357
 social_component_thread_created = ""
 ;
-; SocialComponent.php line: 2393
+; SocialComponent.php line: 2408
 social_component_mix_invalid_timestamp = ""
 ;
-; SocialComponent.php line: 2398
+; SocialComponent.php line: 2413
 social_component_mix_not_owner = ""
 ;
-; SocialComponent.php line: 2408
+; SocialComponent.php line: 2423
 social_component_add_crawls = "增加索引"
 ;
-; SocialComponent.php line: 2410
+; SocialComponent.php line: 2425
 social_component_num_results = "結果數量"
 ;
-; SocialComponent.php line: 2412
+; SocialComponent.php line: 2427
 social_component_del_frag = ""
 ;
-; SocialComponent.php line: 2414
+; SocialComponent.php line: 2429
 social_component_weight = "元素重量"
 ;
-; SocialComponent.php line: 2415
+; SocialComponent.php line: 2430
 social_component_name = ""
 ;
-; SocialComponent.php line: 2417
+; SocialComponent.php line: 2432
 social_component_add_keywords = ""
 ;
-; SocialComponent.php line: 2419
+; SocialComponent.php line: 2434
 social_component_actions = "元素活動"
 ;
-; SocialComponent.php line: 2421
+; SocialComponent.php line: 2436
 social_component_add_query = "增加查詢"
 ;
-; SocialComponent.php line: 2422
+; SocialComponent.php line: 2437
 social_component_delete = ""
 ;
-; SocialComponent.php line: 2472
+; SocialComponent.php line: 2487
 social_component_too_many_fragments = ""
 ;
-; SocialComponent.php line: 2483
+; SocialComponent.php line: 2498
 social_component_mix_saved = ""
 ;
 ; SystemComponent.php line: 82
@@ -2023,127 +2023,127 @@ footer_element_copyright_site = ""
 ; FooterElement.php line: 76
 footer_element_this_search_engine = ""
 ;
-; GroupfeedElement.php line: 92
+; GroupfeedElement.php line: 86
 groupfeed_element_add_group = ""
 ;
-; GroupfeedElement.php line: 96
+; GroupfeedElement.php line: 90
 groupfeed_element_request_add = ""
 ;
-; GroupfeedElement.php line: 122
+; GroupfeedElement.php line: 116
 groupfeed_element_wiki_page = ""
 ;
-; GroupfeedElement.php line: 124
+; GroupfeedElement.php line: 118
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 127
+; GroupfeedElement.php line: 121
 groupfeed_element_back = ""
 ;
-; GroupfeedElement.php line: 137
+; GroupfeedElement.php line: 131
 groupfeed_element_group_activity = ""
 ;
-; GroupfeedElement.php line: 141
+; GroupfeedElement.php line: 135
 groupfeed_element_wiki_thread = ""
 ;
-; GroupfeedElement.php line: 161
+; GroupfeedElement.php line: 154
 groupfeed_element_feed = ""
 ;
-; GroupfeedElement.php line: 165
+; GroupfeedElement.php line: 159
 group_view_wiki = ""
 ;
-; GroupfeedElement.php line: 167
+; GroupfeedElement.php line: 161
 groupfeed_element_user = ""
 ;
-; GroupfeedElement.php line: 211
+; GroupfeedElement.php line: 205
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 243
+; GroupfeedElement.php line: 240
 manageaccount_element_group_wiki = ""
 ;
-; GroupfeedElement.php line: 244
+; GroupfeedElement.php line: 241
 manageaccount_element_group_stats = ""
 ;
-; GroupfeedElement.php line: 249
+; GroupfeedElement.php line: 246
 manageaccount_element_last_post = ""
 ;
-; GroupfeedElement.php line: 291
+; GroupfeedElement.php line: 290
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 301
+; GroupfeedElement.php line: 300
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 314
+; GroupfeedElement.php line: 313
 groupfeed_element_start_thread = ""
 ;
-; GroupfeedElement.php line: 320
+; GroupfeedElement.php line: 319
 groupfeed_element_no_posts_yet = ""
 ;
-; GroupfeedElement.php line: 325
+; GroupfeedElement.php line: 324
 groupfeed_element_thread_no_exist = ""
 ;
-; GroupfeedElement.php line: 358
+; GroupfeedElement.php line: 357
 groupfeed_element_edit = ""
 ;
-; GroupfeedElement.php line: 363
+; GroupfeedElement.php line: 362
 groupfeed_element_delete = ""
 ;
-; GroupfeedElement.php line: 383
+; GroupfeedElement.php line: 384
 groupfeed_element_num_posts = ""
 ;
-; GroupfeedElement.php line: 393
+; GroupfeedElement.php line: 394
 groupfeed_element_num_views = ""
 ;
-; GroupfeedElement.php line: 417
+; GroupfeedElement.php line: 419
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 419
+; GroupfeedElement.php line: 421
 groupfeed_element_start_thread_in_group = ""
 ;
-; GroupfeedElement.php line: 433
+; GroupfeedElement.php line: 437
 groupfeed_element_last_edited = ""
 ;
-; GroupfeedElement.php line: 449
+; GroupfeedElement.php line: 453
 groupfeed_element_post_vote = ""
 ;
-; GroupfeedElement.php line: 476
+; GroupfeedElement.php line: 480
 groupfeed_element_last_post_info = ""
 ;
-; GroupfeedElement.php line: 491
+; GroupfeedElement.php line: 496
 groupfeed_element_comment = ""
 ;
-; GroupfeedElement.php line: 544
+; GroupfeedElement.php line: 550
 fileupload_helper_drag_textarea = ""
 ;
-; GroupfeedElement.php line: 545
+; GroupfeedElement.php line: 551
 fileupload_helper_click_textarea = ""
 ;
-; GroupfeedElement.php line: 569
+; GroupfeedElement.php line: 575
 groupfeed_element_add_comment = ""
 ;
-; GroupfeedElement.php line: 583
+; GroupfeedElement.php line: 589
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 621
+; GroupfeedElement.php line: 627
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 628
+; GroupfeedElement.php line: 634
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 641
+; GroupfeedElement.php line: 647
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 676
+; GroupfeedElement.php line: 682
 groupfeed_element_edit_post = ""
 ;
-; GroupfeedElement.php line: 679
+; GroupfeedElement.php line: 685
 groupfeed_element_subject = ""
 ;
-; GroupfeedElement.php line: 684
+; GroupfeedElement.php line: 690
 groupfeed_element_post = ""
 ;
-; GroupfeedElement.php line: 697
+; GroupfeedElement.php line: 703
 groupfeed_element_save = ""
 ;
-; GroupfeedElement.php line: 725
+; GroupfeedElement.php line: 731
 groupfeed_element_no_longer_update = ""
 ;
 ; MachinelogElement.php line: 57
@@ -2230,34 +2230,34 @@ manageaccount_element_num_groups = ""
 ; ManageaccountElement.php line: 211
 manageaccount_element_num_group = ""
 ;
-; ManageaccountElement.php line: 223
+; ManageaccountElement.php line: 224
 manageaccount_element_group_wiki = ""
 ;
-; ManageaccountElement.php line: 224
+; ManageaccountElement.php line: 225
 manageaccount_element_group_stats = ""
 ;
-; ManageaccountElement.php line: 228
+; ManageaccountElement.php line: 229
 manageaccount_element_last_post = ""
 ;
-; ManageaccountElement.php line: 238
+; ManageaccountElement.php line: 239
 manageaccount_element_manage_all_groups = ""
 ;
-; ManageaccountElement.php line: 240
+; ManageaccountElement.php line: 241
 manageaccount_element_go_to_group_feed = ""
 ;
-; ManageaccountElement.php line: 241
+; ManageaccountElement.php line: 242
 manageaccount_element_crawl_mixes = ""
 ;
-; ManageaccountElement.php line: 242
+; ManageaccountElement.php line: 243
 manageaccount_element_mixes_info = ""
 ;
-; ManageaccountElement.php line: 244
+; ManageaccountElement.php line: 245
 manageaccount_element_num_mixes = ""
 ;
-; ManageaccountElement.php line: 247
+; ManageaccountElement.php line: 248
 manageaccount_element_num_mix = ""
 ;
-; ManageaccountElement.php line: 251
+; ManageaccountElement.php line: 252
 manageaccount_element_manage_mixes = ""
 ;
 ; ManageadvertisementsElement.php line: 58
@@ -2494,187 +2494,187 @@ managecrawls_element_awaiting_status = ""
 ; ManagecrawlsElement.php line: 95
 managecrawls_element_up_longer_update = ""
 ;
-; ManagegroupsElement.php line: 68
+; ManagegroupsElement.php line: 71
 managegroups_element_not_my_groups = ""
 ;
-; ManagegroupsElement.php line: 70
+; ManagegroupsElement.php line: 73
 managegroups_element_groups = ""
 ;
-; ManagegroupsElement.php line: 79
+; ManagegroupsElement.php line: 82
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 80
+; ManagegroupsElement.php line: 83
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 82
+; ManagegroupsElement.php line: 85
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 83
+; ManagegroupsElement.php line: 86
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 84
+; ManagegroupsElement.php line: 87
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 85
+; ManagegroupsElement.php line: 88
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 87
+; ManagegroupsElement.php line: 90
 managegroups_element_actions = ""
 ;
-; ManagegroupsElement.php line: 193
+; ManagegroupsElement.php line: 196
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 197
+; ManagegroupsElement.php line: 200
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 209
+; ManagegroupsElement.php line: 214
 manageaccount_element_group_wiki = ""
 ;
-; ManagegroupsElement.php line: 224
+; ManagegroupsElement.php line: 229
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 228
-managegroups_element_edit = ""
-;
 ; ManagegroupsElement.php line: 233
 managegroups_element_edit = ""
 ;
 ; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
+;
+; ManagegroupsElement.php line: 243
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 244
+; ManagegroupsElement.php line: 249
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 249
+; ManagegroupsElement.php line: 254
 managegroups_element_join = ""
 ;
-; ManagegroupsElement.php line: 258
+; ManagegroupsElement.php line: 263
 managegroups_element_decline = ""
 ;
-; ManagegroupsElement.php line: 260
+; ManagegroupsElement.php line: 265
 managegroups_element_unsubscribe = ""
 ;
-; ManagegroupsElement.php line: 265
+; ManagegroupsElement.php line: 270
 confirm_delete_operation = ""
 ;
-; ManagegroupsElement.php line: 268
+; ManagegroupsElement.php line: 273
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 297
+; ManagegroupsElement.php line: 303
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 298
+; ManagegroupsElement.php line: 304
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 300
+; ManagegroupsElement.php line: 306
 managegroups_element_create_group = ""
 ;
-; ManagegroupsElement.php line: 304
+; ManagegroupsElement.php line: 310
 managegroups_element_add_group = ""
 ;
-; ManagegroupsElement.php line: 321
+; ManagegroupsElement.php line: 327
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 332
+; ManagegroupsElement.php line: 338
 managegroups_element_browse = ""
 ;
-; ManagegroupsElement.php line: 342
+; ManagegroupsElement.php line: 348
 managegroups_element_register = ""
 ;
-; ManagegroupsElement.php line: 349
+; ManagegroupsElement.php line: 355
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 356
+; ManagegroupsElement.php line: 362
 managegroups_element_voting = ""
 ;
-; ManagegroupsElement.php line: 363
+; ManagegroupsElement.php line: 369
 managegroups_element_post_lifetime = ""
 ;
-; ManagegroupsElement.php line: 375
+; ManagegroupsElement.php line: 381
 managegroups_element_group_users = ""
 ;
-; ManagegroupsElement.php line: 379
+; ManagegroupsElement.php line: 385
 managegroups_element_num_users = ""
 ;
-; ManagegroupsElement.php line: 406
+; ManagegroupsElement.php line: 412
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 408
+; ManagegroupsElement.php line: 414
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 417
+; ManagegroupsElement.php line: 423
 managegroups_element_activate = ""
 ;
-; ManagegroupsElement.php line: 423
+; ManagegroupsElement.php line: 429
 managegroups_element_ban = ""
 ;
-; ManagegroupsElement.php line: 429
+; ManagegroupsElement.php line: 435
 managegroups_element_unban = ""
 ;
-; ManagegroupsElement.php line: 437
+; ManagegroupsElement.php line: 443
 managegroups_element_delete = ""
 ;
-; ManagegroupsElement.php line: 465
+; ManagegroupsElement.php line: 471
 managegroups_element_filter = ""
 ;
-; ManagegroupsElement.php line: 486
+; ManagegroupsElement.php line: 492
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 497
+; ManagegroupsElement.php line: 503
 managegroups_element_save = ""
 ;
-; ManagegroupsElement.php line: 526
+; ManagegroupsElement.php line: 533
 managegroups_element_group_info = ""
 ;
-; ManagegroupsElement.php line: 527
+; ManagegroupsElement.php line: 534
 managegroups_element_invite_users_group = ""
 ;
-; ManagegroupsElement.php line: 539
+; ManagegroupsElement.php line: 546
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 547
+; ManagegroupsElement.php line: 554
 managegroups_element_usernames = ""
 ;
-; ManagegroupsElement.php line: 554
+; ManagegroupsElement.php line: 561
 managegroups_element_invite = ""
 ;
-; ManagegroupsElement.php line: 572
+; ManagegroupsElement.php line: 580
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 573
+; ManagegroupsElement.php line: 581
 managegroups_element_transfer_group_owner = ""
 ;
-; ManagegroupsElement.php line: 585
+; ManagegroupsElement.php line: 593
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 593
+; ManagegroupsElement.php line: 601
 managegroups_element_new_group_owner = ""
 ;
-; ManagegroupsElement.php line: 600
+; ManagegroupsElement.php line: 608
 managegroups_element_change_owner = ""
 ;
-; ManagegroupsElement.php line: 619
+; ManagegroupsElement.php line: 627
 managegroups_element_discover_groups = ""
 ;
-; ManagegroupsElement.php line: 623
+; ManagegroupsElement.php line: 631
 managegroups_element_search_group = ""
 ;
-; ManagegroupsElement.php line: 625
+; ManagegroupsElement.php line: 633
 managegroups_element_addgroup_form = ""
 ;
-; ManagegroupsElement.php line: 627
+; ManagegroupsElement.php line: 635
 managegroups_element_groupname = ""
 ;
-; ManagegroupsElement.php line: 628
+; ManagegroupsElement.php line: 636
 managegroups_element_groupowner = ""
 ;
-; ManagegroupsElement.php line: 629
+; ManagegroupsElement.php line: 637
 managegroups_element_registertype = ""
 ;
-; ManagegroupsElement.php line: 631
+; ManagegroupsElement.php line: 639
 managegroups_element_memberaccess = ""
 ;
-; ManagegroupsElement.php line: 633
+; ManagegroupsElement.php line: 641
 managegroups_element_post_lifetime = ""
 ;
 ; ManagelocalesElement.php line: 62
@@ -3535,199 +3535,202 @@ signin_element_signout = "登出"
 ; SubsearchElement.php line: 69
 subsearch_element_more = ""
 ;
-; WikiElement.php line: 119
+; WikiElement.php line: 121
 wiki_view_back = ""
 ;
-; WikiElement.php line: 137
+; WikiElement.php line: 139
 groupfeed_element_feed = ""
 ;
-; WikiElement.php line: 138
+; WikiElement.php line: 140
 wiki_view_wiki = ""
 ;
-; WikiElement.php line: 142
+; WikiElement.php line: 144
 wiki_view_page = ""
 ;
-; WikiElement.php line: 146
+; WikiElement.php line: 148
 wiki_view_read = ""
 ;
-; WikiElement.php line: 147
+; WikiElement.php line: 149
 wiki_view_edit = ""
 ;
-; WikiElement.php line: 150
+; WikiElement.php line: 152
 wiki_view_pages = ""
 ;
-; WikiElement.php line: 226
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
+;
+; WikiElement.php line: 245
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 227
+; WikiElement.php line: 246
 wiki_view_create_edit = ""
 ;
-; WikiElement.php line: 228
+; WikiElement.php line: 247
 wiki_view_use_form_below = ""
 ;
-; WikiElement.php line: 240
+; WikiElement.php line: 259
 wiki_element_submit = ""
 ;
-; WikiElement.php line: 246
+; WikiElement.php line: 265
 wiki_view_syntax_summary = ""
 ;
-; WikiElement.php line: 249
+; WikiElement.php line: 268
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 251
+; WikiElement.php line: 270
 wiki_view_signin_edit = ""
 ;
-; WikiElement.php line: 253
+; WikiElement.php line: 272
 wiki_view_page_no_exist = ""
 ;
-; WikiElement.php line: 283
+; WikiElement.php line: 302
 wiki_element_history = ""
 ;
-; WikiElement.php line: 287
+; WikiElement.php line: 306
 wiki_element_discuss = ""
 ;
-; WikiElement.php line: 323
+; WikiElement.php line: 342
 wiki_element_locale_name = ""
 ;
-; WikiElement.php line: 327
+; WikiElement.php line: 346
 wiki_element_page = ""
 ;
-; WikiElement.php line: 330
+; WikiElement.php line: 349
 configure_element_toggle_page_settings = ""
 ;
-; WikiElement.php line: 334
+; WikiElement.php line: 353
 wiki_element_page_type = ""
 ;
-; WikiElement.php line: 342
+; WikiElement.php line: 361
 wiki_element_page_alias = ""
 ;
-; WikiElement.php line: 350
+; WikiElement.php line: 369
 wiki_element_page_border = ""
 ;
-; WikiElement.php line: 357
+; WikiElement.php line: 376
 wiki_element_table_of_contents = ""
 ;
-; WikiElement.php line: 366
+; WikiElement.php line: 385
 wiki_element_title = ""
 ;
-; WikiElement.php line: 372
+; WikiElement.php line: 391
 wiki_element_meta_author = ""
 ;
-; WikiElement.php line: 378
+; WikiElement.php line: 397
 wiki_element_meta_robots = ""
 ;
-; WikiElement.php line: 385
+; WikiElement.php line: 404
 wiki_element_meta_description = ""
 ;
-; WikiElement.php line: 392
+; WikiElement.php line: 411
 wiki_element_page_header = ""
 ;
-; WikiElement.php line: 398
+; WikiElement.php line: 417
 wiki_element_page_footer = ""
 ;
-; WikiElement.php line: 421
+; WikiElement.php line: 440
 wiki_element_archive_info = ""
 ;
-; WikiElement.php line: 424
+; WikiElement.php line: 443
 wiki_element_edit_reason = ""
 ;
-; WikiElement.php line: 431
+; WikiElement.php line: 450
 wiki_element_savebutton = ""
 ;
-; WikiElement.php line: 435
+; WikiElement.php line: 454
 wiki_element_media_list = ""
 ;
-; WikiElement.php line: 436
+; WikiElement.php line: 455
 wiki_element_ml_description = ""
 ;
-; WikiElement.php line: 439
+; WikiElement.php line: 458
 wiki_view_page_resources = ""
 ;
-; WikiElement.php line: 474
+; WikiElement.php line: 493
 wiki_view_upload = ""
 ;
-; WikiElement.php line: 478
+; WikiElement.php line: 497
 wiki_element_resources_info = ""
 ;
-; WikiElement.php line: 493
+; WikiElement.php line: 512
 wiki_element_rename_failed = ""
 ;
-; WikiElement.php line: 559
+; WikiElement.php line: 578
 wiki_element_rename = ""
 ;
-; WikiElement.php line: 563
+; WikiElement.php line: 582
 wiki_element_add_to_page = ""
 ;
-; WikiElement.php line: 583
+; WikiElement.php line: 602
 wiki_element_no_resources = ""
 ;
-; WikiElement.php line: 606
+; WikiElement.php line: 624
 wiki_view_wiki_page_list = ""
 ;
-; WikiElement.php line: 619
+; WikiElement.php line: 637
 wiki_view_filter_or_create = ""
 ;
-; WikiElement.php line: 621
+; WikiElement.php line: 639
 wiki_element_go = ""
 ;
-; WikiElement.php line: 626
+; WikiElement.php line: 644
 wiki_view_create_page = ""
 ;
-; WikiElement.php line: 637
+; WikiElement.php line: 655
 wiki_element_redirect_to = ""
 ;
-; WikiElement.php line: 658
+; WikiElement.php line: 677
 wiki_view_no_pages = ""
 ;
-; WikiElement.php line: 681
+; WikiElement.php line: 700
 wiki_view_back = ""
 ;
-; WikiElement.php line: 697
+; WikiElement.php line: 716
 wiki_view_difference = ""
 ;
-; WikiElement.php line: 703
+; WikiElement.php line: 722
 wiki_view_go = ""
 ;
-; WikiElement.php line: 722
+; WikiElement.php line: 741
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 724
+; WikiElement.php line: 743
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 728
+; WikiElement.php line: 747
 wiki_view_diff_first = ""
 ;
-; WikiElement.php line: 729
+; WikiElement.php line: 748
 wiki_view_diff_second = ""
 ;
-; WikiElement.php line: 735
+; WikiElement.php line: 754
 wiki_view_edited_by = ""
 ;
-; WikiElement.php line: 739
+; WikiElement.php line: 758
 wiki_view_page_len = ""
 ;
-; WikiElement.php line: 741
+; WikiElement.php line: 760
 wiki_view_revert = ""
 ;
-; WikiElement.php line: 744
+; WikiElement.php line: 763
 wiki_view_revert = ""
 ;
-; GroupView.php line: 80
+; GroupView.php line: 82
 groupfeed_element_wiki_thread = ""
 ;
-; GroupView.php line: 95
+; GroupView.php line: 96
 group_view_feed = ""
 ;
-; GroupView.php line: 102
+; GroupView.php line: 104
 group_view_wiki = ""
 ;
-; GroupView.php line: 104
+; GroupView.php line: 106
 group_view_user = ""
 ;
-; GroupView.php line: 107
+; GroupView.php line: 109
 group_view_myfeeds = ""
 ;
-; GroupView.php line: 142
+; GroupView.php line: 145
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/views/helpers
@@ -4187,46 +4190,46 @@ search_view_search = "搜尋"
 ; SearchView.php line: 155
 search_view_no_index_set = ""
 ;
-; SearchView.php line: 161
+; SearchView.php line: 164
 search_view_more_statistics = ""
 ;
-; SearchView.php line: 199
+; SearchView.php line: 201
 search_view_calculated = "總計: %s 秒"
 ;
-; SearchView.php line: 201
+; SearchView.php line: 203
 search_view_results = "結果"
 ;
-; SearchView.php line: 227
+; SearchView.php line: 229
 search_view_thesaurus_results = ""
 ;
-; SearchView.php line: 337
+; SearchView.php line: 339
 search_view_word_cloud = ""
 ;
-; SearchView.php line: 378
+; SearchView.php line: 380
 search_view_cache = ""
 ;
-; SearchView.php line: 380
+; SearchView.php line: 382
 search_view_as_text = ""
 ;
-; SearchView.php line: 391
+; SearchView.php line: 393
 search_view_similar = "相似"
 ;
-; SearchView.php line: 400
+; SearchView.php line: 402
 search_view_inlink = ""
 ;
-; SearchView.php line: 417
+; SearchView.php line: 419
 search_view_rank = "排名: %s 名"
 ;
-; SearchView.php line: 419
+; SearchView.php line: 421
 search_view_relevancy = "關聯度:  %s 趴"
 ;
-; SearchView.php line: 421
+; SearchView.php line: 423
 search_view_proximity = ""
 ;
-; SearchView.php line: 425
+; SearchView.php line: 427
 search_view_thesaurus_score = ""
 ;
-; SearchView.php line: 434
+; SearchView.php line: 436
 search_view_score = "分數"
 ;
 ; SettingsView.php line: 66
@@ -4253,31 +4256,31 @@ settings_view_save = "儲存"
 ; SettingsView.php line: 116
 settings_install_search_plugin = ""
 ;
-; SigninView.php line: 67
+; SigninView.php line: 68
 signin_view_signin = "登入"
 ;
-; SigninView.php line: 80
+; SigninView.php line: 81
 sigin_view_signing_in = ""
 ;
-; SigninView.php line: 83
+; SigninView.php line: 84
 sigin_view_login_failed = ""
 ;
-; SigninView.php line: 91
+; SigninView.php line: 92
 signin_view_username = "使用者名稱"
 ;
-; SigninView.php line: 98
+; SigninView.php line: 99
 signin_view_password = "密碼"
 ;
-; SigninView.php line: 108
+; SigninView.php line: 109
 signin_view_login = "登入"
 ;
-; SigninView.php line: 123
+; SigninView.php line: 124
 signin_view_recover_password = ""
 ;
-; SigninView.php line: 128
+; SigninView.php line: 129
 signin_view_create_account = ""
 ;
-; SigninView.php line: 132
+; SigninView.php line: 133
 signin_view_return = ""
 ;
 ; StaticView.php line: 68
@@ -4373,22 +4376,22 @@ view_locale_version14 = ""
 ; View.php line: 93
 view_logo_alt_text = ""
 ;
-; WikiView.php line: 91
+; WikiView.php line: 86
 wiki_view_read = ""
 ;
-; WikiView.php line: 92
+; WikiView.php line: 87
 wiki_view_edit = ""
 ;
-; WikiView.php line: 95
+; WikiView.php line: 90
 wiki_view_pages = ""
 ;
-; WikiView.php line: 134
+; WikiView.php line: 135
 wiki_view_feed = ""
 ;
-; WikiView.php line: 135
+; WikiView.php line: 136
 wiki_view_wiki = ""
 ;
-; WikiView.php line: 159
+; WikiView.php line: 160
 adminview_auto_logout_one_minute = ""
 ;
 ; /Applications/MAMP/htdocs/git/yioop/src/library/indexing_plugins
diff --git a/src/models/Model.php b/src/models/Model.php
index 90e0c5302..4fb906790 100755
--- a/src/models/Model.php
+++ b/src/models/Model.php
@@ -52,8 +52,8 @@ class Model implements CrawlConstants
     const SCORE_PRECISION = 4;
     const SNIPPET_TITLE_LENGTH = 20;
     const MAX_SNIPPET_TITLE_LENGTH = 20;
-    const SNIPPET_LENGTH_LEFT = 60;
-    const SNIPPET_LENGTH_RIGHT = 50;
+    const SNIPPET_LENGTH_LEFT = 20;
+    const SNIPPET_LENGTH_RIGHT = 40;
     const MIN_SNIPPET_LENGTH = 100;
     /**
      * Default maximum character length of a search summary
@@ -149,7 +149,7 @@ class Model implements CrawlConstants
                 if (isset($this->edited_page_summaries[$hash_url])) {
                     $summary = $this->edited_page_summaries[$hash_url];
                     $page[self::URL] = $url;
-                    foreach (array(self::TITLE, self::DESCRIPTION) as $field) {
+                    foreach ([self::TITLE, self::DESCRIPTION] as $field) {
                         if (isset($summary[$field])) {
                             $page[$field] = $summary[$field];
                         }
@@ -184,18 +184,16 @@ class Model implements CrawlConstants
             if ($words != null) {
                 $page[self::TITLE] =
                     $this->boldKeywords($page[self::TITLE], $words);
-
                 if (!isset($page[self::IS_FEED])) {
                     $page[self::DESCRIPTION] =
                         $this->getSnippets(strip_tags($page[self::DESCRIPTION]),
-                            $words, $description_length);
+                        $words, $description_length);
                 }
                 $page[self::DESCRIPTION] =
                     $this->boldKeywords($page[self::DESCRIPTION], $words);
             } else {
-                $page[self::DESCRIPTION] =
-                    mb_substr(strip_tags(
-                        $page[self::DESCRIPTION]), 0, $description_length);
+                $page[self::DESCRIPTION] = mb_substr(strip_tags(
+                    $page[self::DESCRIPTION]), 0, $description_length);
             }
             $page[self::SCORE] = mb_substr($page[self::SCORE], 0,
                 self::SCORE_PRECISION);
@@ -217,40 +215,49 @@ class Model implements CrawlConstants
      * @param string $description_length length of the description desired
      * @return string a concatenation of the extracted snippets of each word
      */
-    public function getSnippets($text, $words, $description_length)
+    public function getSnippets($text, $words, $description_length,
+        $words_change = false)
     {
+        static $search_words = [];
+        static $word_regex = "";
+        $start_regex = "/";
+        $left = self::SNIPPET_LENGTH_LEFT;
+        $right = self::SNIPPET_LENGTH_RIGHT;
+        $start_regex2 = "/\b.{0,$left}(?:(?:";
+        $end_regex = "/ui";
+        $end_regex2 = ").{0,$right}\b)+/ui";
         if (mb_strlen($text) < $description_length) {
             return $text;
         }
-
         $ellipsis = "";
-        $out_words = [];
-        foreach ($words as $word) {
-            $out_words = array_merge($out_words, explode(" ", $word));
+        if($words_change || empty($search_words)) {
+            $search_words = [];
+            foreach ($words as $word) {
+                $search_words = array_merge($search_words, explode(" ", $word));
+            }
+            $search_words = array_filter(array_unique($search_words));
+
+            $word_regex = "";
+            $delim = "";
+            foreach($search_words as $word) {
+                $word_regex .= $delim . preg_quote($word);
+                $delim = "|";
+            }
         }
-        $words = array_unique($out_words);
-        $start_words = array_filter($words);
         $snippet_string = "";
         $snippet_hash = [];
         $text_sources = explode(".. ", $text);
         foreach ($text_sources as $text_source) {
             $len = mb_strlen($text_source);
             $offset = 0;
-            $words = $start_words;
-            if (strlen($text_source) < self::MIN_SNIPPET_LENGTH) {
+            if ($len < self::MIN_SNIPPET_LENGTH) {
                 if (!isset($snippet_hash[$text_source])) {
-                    $found = false;
-                    foreach ($words as $word) {
-                        if (mb_stristr($text_source, $word) !== false) {
-                            $found = true;
-                            break;
-                        }
-                    }
-                    if ($found) {
+                    if (preg_match($start_regex . $word_regex.
+                        $end_regex, $text_source)) {
                         $snippet_string .= $ellipsis. $text_source;
                         $ellipsis = " ... ";
                         $snippet_hash[$text_source] = true;
-                        if (mb_strlen($snippet_string)>= $description_length) {
+                        if (mb_strlen($snippet_string) >= $description_length) {
                             break;
                         }
                     }
@@ -258,46 +265,23 @@ class Model implements CrawlConstants
                 continue;
             }
             $word_locations = [];
-            foreach ($words as $word) {
-                $qword = "/".preg_quote($word)."/ui";
-                preg_match_all($qword, $text_source, $positions,
-                    PREG_OFFSET_CAPTURE);
-
-                if (isset($positions[0]) && is_array($positions[0])) {
-                    $positions = $positions[0];
-                    foreach ($positions as $position) {
-                        $word_locations[] = $position[1];
+            preg_match_all($start_regex2 .$word_regex. $end_regex2,
+                $text_source, $matches);
+            if(isset($matches[0])) {
+                foreach($matches[0] as $match) {
+                    if($match >= $description_length) {
+                        $match = mb_substr($match, 0, $description_length);
+                        $rpos = strrpos($match, " ");
+                        if($rpos) {
+                            $match = mb_substr($match, 0, $rpos);
+                        }
                     }
-                }
-            }
-            $high = 0;
-            sort($word_locations);
-            foreach ($word_locations as $pos) {
-                if ($pos < $high) {
-                    continue;
-                }
-                $pre_low = max($pos - self::SNIPPET_LENGTH_LEFT, 0);
-                if ($pre_low < mb_strlen($text_source)) {
-                    $low = mb_stripos($text_source, " ", $pre_low);
-                }
-                if ($low > $pos) {
-                    $low = $pre_low;
-                }
-                $pre_high = min($pos + self::SNIPPET_LENGTH_RIGHT, $len);
-                $high = mb_stripos($text_source, " ",
-                    max(min($pre_high - 10, 0), min($pos, $len)));
-                if ($high > $pre_high + 10) {
-                    $high = $pre_high;
-                }
-                $cur_snippet = trim(
-                    mb_substr($text_source, $low, $high - $low));
-                if (!isset($snippet_hash[$cur_snippet])) {
-                    $snippet_string .= $ellipsis. $cur_snippet;
+                    $snippet_string .= $ellipsis. trim($match, ".");
                     $ellipsis = " ... ";
-                    $snippet_hash[$cur_snippet] = true;
-                }
-                if (strlen($snippet_string) >= $description_length) {
-                    break 2;
+                    $snippet_hash[$text_source] = true;
+                    if (mb_strlen($snippet_string) >= $description_length) {
+                        break;
+                    }
                 }
             }
         }
ViewGit