First pass at adscript generator, a=chris

Chris Pollett [2015-08-30 03:Aug:th]
First pass at adscript generator, a=chris
Filename
.gitignore
Routes.php
controllers/MainController.php
css/auxiliary.css
locale/ar/configure.ini
locale/ar/statistics.txt
locale/bn/configure.ini
locale/de/configure.ini
locale/en_US/configure.ini
locale/en_US/statistics.txt
locale/es/configure.ini
locale/fa/configure.ini
locale/fa/statistics.txt
locale/fr_FR/configure.ini
locale/he/configure.ini
locale/hi/configure.ini
locale/hi/statistics.txt
locale/in_ID/configure.ini
locale/it/configure.ini
locale/it/statistics.txt
locale/ja/configure.ini
locale/kn/configure.ini
locale/ko/configure.ini
locale/ko/statistics.txt
locale/nl/configure.ini
locale/nl/statistics.txt
locale/pl/configure.ini
locale/pt/configure.ini
locale/ru/configure.ini
locale/te/configure.ini
locale/te/statistics.txt
locale/th/configure.ini
locale/tr/configure.ini
locale/vi_VN/configure.ini
locale/zh_CN/configure.ini
models/PurchaseModel.php
resources/4Pa/4PaP2dQJZTE/AddRole.png
resources/4Pa/4PaP2dQJZTE/AppearanceActivity.png
resources/4Pa/4PaP2dQJZTE/Autosuggest.png
resources/4Pa/4PaP2dQJZTE/ChangeAccountInfo.png
resources/4Pa/4PaP2dQJZTE/ChangePassword.png
resources/4Pa/4PaP2dQJZTE/ConfigureScreenForm1.png
resources/4Pa/4PaP2dQJZTE/ConfigureScreenForm2.png
resources/4Pa/4PaP2dQJZTE/CreateAdStep1.png
resources/4Pa/4PaP2dQJZTE/CreateAdStep2.png
resources/4Pa/4PaP2dQJZTE/DefaultYioopLandingPage.png
resources/4Pa/4PaP2dQJZTE/ImageSearch.png
resources/4Pa/4PaP2dQJZTE/KeywordAdSearchResult.png
resources/4Pa/4PaP2dQJZTE/ManageAdvertisementElement.png
resources/4Pa/4PaP2dQJZTE/ManageAdvertisements.png
resources/4Pa/4PaP2dQJZTE/ManageMachines.png
resources/4Pa/4PaP2dQJZTE/MobileSearch.png
resources/4Pa/4PaP2dQJZTE/NewsSearch.png
resources/4Pa/4PaP2dQJZTE/SearchResults.png
resources/4Pa/4PaP2dQJZTE/SearchScreen.png
resources/4Pa/4PaP2dQJZTE/SearchSpellCorrect.png
resources/4Pa/4PaP2dQJZTE/SearchTools.png
resources/4Pa/4PaP2dQJZTE/ServerSettings.png
resources/4Pa/4PaP2dQJZTE/TeluguAutosuggest.png
resources/4Pa/4PaP2dQJZTE/Version210.pdf
resources/4Pa/4PaP2dQJZTE/VideoSearch.png
resources/XM1/XM1vBpI0ZGQ/Seekquarry.png.jpg
resources/tkO/tkO99q1IHv8/btn_donateCC_LG.gif.jpg
resources/xpC/xpCiHfV1GC0/Seekquarry.png
resources/xyq/xyqWsOS2HOY/AppearanceActivity.png.jpg
resources/xyq/xyqWsOS2HOY/CreateAdStep1.png.jpg
resources/xyq/xyqWsOS2HOY/CreateAdStep2.png.jpg
resources/xyq/xyqWsOS2HOY/DefaultYioopLandingPage.png.jpg
resources/xyq/xyqWsOS2HOY/KeywordAdSearchResult.png.jpg
resources/xyq/xyqWsOS2HOY/ManageAdvertisementElement.png.jpg
resources/xyq/xyqWsOS2HOY/ManageAdvertisements.png.jpg
resources/z_z/z_zMNYogGQw/btn_donateCC_LG.gif
views/DownloadView.php
views/StoreView.php
views/elements/CreditconfigElement.php
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a07ca09
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+CreditConfig.php
+.DS_Store
diff --git a/Routes.php b/Routes.php
index b73a815..6aae78d 100644
--- a/Routes.php
+++ b/Routes.php
@@ -37,7 +37,8 @@ class Routes
     public static function getRoutes()
     {
         $routes = [
-            "download" => "routeDownload"
+            "download" => "routeDownload",
+            "adscript" => "routeStore"
         ];
         return $routes;
     }
@@ -58,3 +59,12 @@ function routeDownload($route_args)
     }
     return $handled;
 }
+
+function routeStore($route_args)
+{
+    $handled = true;
+    $_REQUEST['c'] = "main";
+    $_REQUEST['a'] = "store";
+
+    return $handled;
+}
diff --git a/controllers/MainController.php b/controllers/MainController.php
index 719cd6b..168c35b 100755
--- a/controllers/MainController.php
+++ b/controllers/MainController.php
@@ -33,6 +33,8 @@
 namespace seekquarry\yioop\controllers;

 use seekquarry\yioop\configs as C;
+use seekquarry\yioop\library as L;
+
 /**
  * This is the default controller used by the seek_quarry site. It will
  * set up the main view, which has mainly links to static pages describing the
@@ -49,8 +51,7 @@ class MainController extends Controller
      * this controller will respond to
      * @var array
      */
-    var $activities = array("download");
-
+    var $activities = array("download", "store");
     /**
      *  This is the main entry point for handling people arriving to the
      * SeekQuarry site.
@@ -85,7 +86,105 @@ class MainController extends Controller
         $data['YIOOP_TOKEN'] = $this->generateCSRFToken($user);
         $this->displayView($data['VIEW'], $data);
     }
-
+    /**
+     * This activity handles downloads of Yioop from the seekquarry site.
+     * It collects user information and sends an email with the download
+     * link.
+     *
+     * @return array $data has which field variables from drawing download forms
+     */
+     function store()
+     {
+        $data['VIEW'] = "store";
+        $purchase_model = $this->model("purchase");
+        $data['page'] = tl('main_controller_store');
+        $data['SCRIPT'] = "";
+        $data['FORM_TYPE'] = 'getScript';
+        $data['MONTHS'] = [ 0 => tl('advertisement_component_month'),
+            "01" => "01", "02" => "02", "03" => "03",
+            "04" => "04", "05" => "05", "06" => "06", "07" => "07",
+            "08" => "08", "09" => "09", "10" => "10", "11" => "11",
+            "12" => "12"
+        ];
+        $current_year = date('Y');
+        $data['YEARS'] = [ 0 => tl('advertisement_component_year')];
+        for ( $year = $current_year; $year < $current_year + 20; $year++ ) {
+            $data['YEARS'][$year] = $year;
+        }
+        $arg = isset($_REQUEST['arg']) ? $_REQUEST['arg'] : "";
+        switch ($arg) {
+            case 'getScript':
+                $required_fields = ["e_mail" => 'string',
+                    "name_server" => 'web-url'];
+                foreach ($required_fields as $field => $type) {
+                    if (empty($_REQUEST[$field])) {
+                        $data['SCRIPT'] .=
+                            "doMessage('<h1 class=\"red\" >".
+                            tl('main_controller_missing_field').
+                            "</h1>')";
+                        break 2;
+                    }
+                    $data[strtoupper($field)] = $this->clean($_REQUEST[$field],
+                        $type);
+                }
+                if ($purchase_model->checkPurchase( $data['E_MAIL'],
+                    $data['NAME_SERVER'])) {
+                    $data['FORM_TYPE'] = 'showScript';
+                } else {
+                    if(C\CreditConfig::isActive()) {
+                        $data["INCLUDE_SCRIPTS"][] = 'credit';
+                        $get_credit_token_initialize_script =
+                            L\crawlHash(C\NAME_SERVER . C\YIOOP_VERSION .
+                            "getCreditTokenInitializeScript");
+                        $data['SCRIPT'] .=
+                        C\CreditConfig::$get_credit_token_initialize_script();
+                    }
+                    $data['FORM_TYPE'] = 'purchaseScript';
+                }
+                break;
+            case 'purchaseScript':
+                $required_fields = ["e_mail" => 'string',
+                    "name_server" => 'web-url'];
+                foreach ($required_fields as $field => $type) {
+                    if (empty($_REQUEST[$field])) {
+                        $data['SCRIPT'] .=
+                            "doMessage('<h1 class=\"red\" >".
+                            tl('main_controller_missing_fields').
+                            "</h1>')";
+                        break 2;
+                    }
+                    $data[strtoupper($field)] = $this->clean($_REQUEST[$field],
+                        $type);
+                }
+                if ($purchase_model->checkPurchase($data['E_MAIL'],
+                    $data['NAME_SERVER'])) {
+                    $_REQUEST['arg'] = 'getScript';
+                    return $this->redirectWithMessage(
+                        tl('main_controller_already_purchased'),
+                        ['arg', 'e_mail', 'name_server']);
+                }
+                if (C\CreditConfig::isActive() && !C\CreditConfig::charge(
+                    C\AD_SCRIPT_COST, $this->clean(
+                    $_REQUEST['CREDIT_TOKEN'], "string"), $message)) {
+                    return $this->redirectWithMessage(
+                        tl('main_controller_processing_error',
+                        $message), ['arg', 'e_mail', 'name_server']);
+                }
+                $reference = $purchase_model->addPurchase($data['E_MAIL'],
+                    $data['NAME_SERVER']);
+                $_REQUEST['arg'] = 'getScript';
+                $headers = C\FROM_EMAIL_HEADER . "\r\n";
+                $title = tl('main_controller_purchase_email_title');
+                $body = tl('main_controller_purchase_email_body')."\n".
+                    $reference;
+                mail($data['E_MAIL'], $title, $body, $headers);
+                return $this->redirectWithMessage(
+                    tl('main_controller_purchase_completed'),
+                    ['arg', 'e_mail', 'name_server']);
+                break;
+        }
+        return $data;
+     }
     /**
      * This activity handles downloads of Yioop from the seekquarry site.
      * It collects user information and sends an email with the download
diff --git a/css/auxiliary.css b/css/auxiliary.css
index 7c1c9c5..b7b275e 100755
--- a/css/auxiliary.css
+++ b/css/auxiliary.css
@@ -175,7 +175,7 @@ h3
     position:relative;
     padding: .3in;
     margin:auto;
-    width:6in;
+    width: 8in;
     font-size: 16pt;
     background-color: #fff;
     border: 1px solid black;
diff --git a/locale/ar/configure.ini b/locale/ar/configure.ini
index 062826b..b04fcd1 100755
--- a/locale/ar/configure.ini
+++ b/locale/ar/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "تسجيل الخروج الناجحة!!"
-;
-; SearchController.php line: 549
-search_controller_mix_info = "استخدام مزيج الزحف:  %s"
-;
-; SearchController.php line: 555
-search_controller_crawl_info = "ويب الوثيقة: %s. الحجم: %s صفحات وعناوين URL %s"
-;
-; SearchController.php line: 591
-search_controller_search = "البحث"
-;
-; SearchController.php line: 695
-search_controller_no_index_set = "لا يوجد مؤشر مجموعة البحث للاستخدام!"
-;
-; SearchController.php line: 698
-search_controller_no_index_set = "لا يوجد مؤشر مجموعة البحث للاستخدام!"
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = "موقع على شبكة الإنترنت قد طلبت هذه الصفحة لم تتم أرشفة."
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = "هذه الصورة التي ظهرت على الصفحة:"
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = "عنوان المستخرجة"
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = "وصف استخراج"
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = "الروابط المستخرجة"
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = "استخراج يسمح لمسارات تتبع الارتباطات"
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = "استخراج غير مسموح لمسارات تتبع الارتباطات"
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = "تأخير الزحف ييوببوت"
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = "يوب ذاكرة التخزين المؤقت الصفحة... هذه الصفحة قد تم تعديل لإضافة توجيه الروبوتات، وجعل ارتباطات مطلقة، إضافة ملخصات المستخرجة، وتسليط الضوء على مصطلحات الاستعلام."
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = "تم الحصول على هذه النسخة المخزنة مؤقتاً من  %s الزاحف يوب على  %s."
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = "الزحف ميكس"
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "حفظ الإعدادات!"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = "تمرير الاختيار."
 ; SystemComponent.php line: 1220
 system_component_using_local_config = "استخدام configs/local_config.php حتى تغيير دليل العمل أعلاه قد لا تعمل."
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "تسجيل الخروج الناجحة!!"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = "Admin"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = "خروج السيارات في دقيقة واحدة!!"
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "تسجيل الخروج الناجحة!!"
+;
+; SearchController.php line: 549
+search_controller_mix_info = "استخدام مزيج الزحف:  %s"
+;
+; SearchController.php line: 555
+search_controller_crawl_info = "ويب الوثيقة: %s. الحجم: %s صفحات وعناوين URL %s"
+;
+; SearchController.php line: 591
+search_controller_search = "البحث"
+;
+; SearchController.php line: 695
+search_controller_no_index_set = "لا يوجد مؤشر مجموعة البحث للاستخدام!"
+;
+; SearchController.php line: 698
+search_controller_no_index_set = "لا يوجد مؤشر مجموعة البحث للاستخدام!"
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = "موقع على شبكة الإنترنت قد طلبت هذه الصفحة لم تتم أرشفة."
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = "هذه الصورة التي ظهرت على الصفحة:"
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = "عنوان المستخرجة"
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = "وصف استخراج"
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = "الروابط المستخرجة"
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = "استخراج يسمح لمسارات تتبع الارتباطات"
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = "استخراج غير مسموح لمسارات تتبع الارتباطات"
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = "تأخير الزحف ييوببوت"
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = "يوب ذاكرة التخزين المؤقت الصفحة... هذه الصفحة قد تم تعديل لإضافة توجيه الروبوتات، وجعل ارتباطات مطلقة، إضافة ملخصات المستخرجة، وتسليط الضوء على مصطلحات الاستعلام."
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = "تم الحصول على هذه النسخة المخزنة مؤقتاً من  %s الزاحف يوب على  %s."
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = "الزحف ميكس"
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "حفظ الإعدادات!"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "تسجيل الخروج الناجحة!!"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "Admin"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = "خروج السيارات في دقيقة واحدة!!"
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = "حاليا بتجهيز"
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "حذف"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = "لا توجد عمليات تتبع الارتباطات السابقة"
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = "الأنشطة"
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = "خروج السيارات في دقيقة واحدة!!"
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = "لا توجد آلات المراقبة"
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = "سجل"
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = "المرايا"
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = "سجل"
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = "قائمة انتظار الملقم"
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = "سجل"
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = "قائمة انتظار الملقم"
+; ConfigureElement.php line: 72
+configure_element_work_directory = "دليل عمل محرك البحث"
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = "آلة قد لا يوجد ملقم قائمة انتظار"
+; ConfigureElement.php line: 76
+configure_element_load_or_create = "تحميل أو إنشاء"
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = "التحقق من مكون"
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = "سجل"
+; ConfigureElement.php line: 96
+configure_element_profile_settings = "الإعدادات الشخصية"
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = "آلة قد لا فيتشيرس"
+; ConfigureElement.php line: 101
+configure_element_default_language = "لغة الافتراضية:"
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = "فيتشيرس"
+; ConfigureElement.php line: 108
+configure_element_debug_display = "تصحيح العرض"
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = "سجل"
+; ConfigureElement.php line: 114
+configure_element_error_info = "معلومات الخطأ"
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = "لم يكن لديها ذاكرة التخزين المؤقت للعنصر المطلوب."
+; ConfigureElement.php line: 120
+configure_element_query_info = "معلومات الاستعلام"
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = "موجز البيانات المخزنة في يوب"
+; ConfigureElement.php line: 126
+configure_element_test_info = "معلومات الاختبار"
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = "البحث عن الوصول"
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = "ويب"
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = "RSS"
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = "API"
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = "الإنشاء روبوت الزحف"
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = "الزحف الروبوت اسم:"
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = "مثيل روبوت:"
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = "وصف روبوت"
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "مرة أخرى"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = "تعديل الزحف النشطة"
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = "تحرير خيارات تتبع الارتباطات"
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = "تتبع ارتباطات ويب"
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = "أرشيف الزحف"
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = "الحصول على خيارات الزحف من:"
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = "الزحف الترتيب:"
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = "تقييد مواقع بعنوان:"
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = "يسمح بتتبع ارتباطات مواقع"
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = "غير مسموح به مواقع/مواقع مع الحصص"
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = "مواقع البذور"
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = "الزحف إلى مواقع حقن الحالية"
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = "تتبع الارتباطات أو مجلد قوس إلى Re-index:"
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "حفظ الخيارات"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = "مرة أخرى"
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = "تحرير الإعدادات المحلية:  %s"
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = "مرة أخرى"
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = "تحرير ميكس تتبع الارتباطات"
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = "مزيج اسم:"
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = "مزيج المكونات"
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = "حفظ"
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = "مدونة"
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = "الخصوصية"
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = "ييوببوت"
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = "وضعت في سيككواري"
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = "يوب! بي إتش بي محرك البحث "
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = "إدخال المصطلحات كنت ترغب في البحث في الويب"
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "اكتب ما كنت تبحث عن"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "البحث"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = "مزيد من الإحصاءات"
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = "%s ثوان."
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = "عرض  %s- %s من  %s"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = "مؤقتاً"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = "فيونبسب;as&nbsp;text"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = "مماثلة"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = "Inlinks"
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = "رتبة: %s"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = "ق Rel:%"
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = "ق Prox:%"
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = "نقاط: %s"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "إعدادات"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "النتائج في الصفحة الواحدة:"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = "فتح النتائج في تبويب"
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "البحث في الفهرس:"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "اللغة:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = "حفظ الإعدادات"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = "تسجيل الدخول"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = "اسم المستخدم"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "كلمة المرور"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = "تسجيل الدخول"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = "مرة أخرى"
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = "بي إتش بي محرك البحث-يوب!"
+; MachinelogElement.php line: 69
+machinelog_element_log_file = "%s ملف السجل"
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = "الإحصاءات"
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = "التحديث التلقائي بدوره قبالة"
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = "حساب... يرجى أن يكون المريض."
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = "التحديث التلقائي بدوره على"
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = "ينظر إلى رموز الخطأ"
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = "تحميل أحجام الملفات"
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = "متوسط الارتباطات في كل صفحة"
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = "تعديل التواريخ للصفحة"
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = "الوقت بحث DNS"
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = "وقت تحميل الصفحة"
+; ManageaccountElement.php line: 117
+manageusers_element_username = "اسم المستخدم:"
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = "نطاقات المستوى الأعلى"
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = "ملحق الملف"
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = "نوع الوسائط"
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = "لغة صفحة ويب"
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = "ملقم ويب"
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = "نظام التشغيل  (في حالة اكتشاف)"
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "كلمة المرور الجديدة:"
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = "معلومات الفهرس العام"
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "إعادة كتابة كلمة المرور:"
 ;
-; StatisticsView.php line: 109
-statistics_view_description = "وصف فهرس"
+; ManageaccountElement.php line: 184
+manageaccount_element_save = "حفظ"
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = "الطابع الزمني"
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = "وقت بدء تتبع ارتباطات"
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = "تحميل الصفحات"
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = "شهدت محددات مواقع المعلومات"
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = "ينظر إلى أسماء المضيفين"
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = "خروج السيارات في دقيقة واحدة!!"
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "الأنشطة"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = "دليل عمل محرك البحث"
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = "تحميل أو إنشاء"
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = "التحقق من مكون"
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = "الإعدادات الشخصية"
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = "لغة الافتراضية:"
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = "تصحيح العرض"
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = "معلومات الخطأ"
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = "معلومات الاستعلام"
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = "معلومات الاختبار"
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = "البحث عن الوصول"
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = "ويب"
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = "RSS"
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = "API"
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = "الإنشاء روبوت الزحف"
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = "الزحف الروبوت اسم:"
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = "مثيل روبوت:"
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = "وصف روبوت"
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "مرة أخرى"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = "تعديل الزحف النشطة"
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = "تحرير خيارات تتبع الارتباطات"
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = "تتبع ارتباطات ويب"
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = "أرشيف الزحف"
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = "الحصول على خيارات الزحف من:"
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = "الزحف الترتيب:"
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = "تقييد مواقع بعنوان:"
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = "يسمح بتتبع ارتباطات مواقع"
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = "غير مسموح به مواقع/مواقع مع الحصص"
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = "مواقع البذور"
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = "الزحف إلى مواقع حقن الحالية"
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = "تتبع الارتباطات أو مجلد قوس إلى Re-index:"
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "حفظ الخيارات"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = "إنشاء تتبع الارتباطات"
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = "الاسم"
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = "بدء تشغيل تتبع الارتباطات الجديدة"
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = "خيارات"
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = "في انتظار حالة تتبع الارتباطات"
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = "لم يعد تحديث حالة تتبع الارتباطات"
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = "مرة أخرى"
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = "تحرير الإعدادات المحلية:  %s"
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = "مرة أخرى"
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = "تحرير ميكس تتبع الارتباطات"
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = "مزيج اسم:"
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = "مزيج المكونات"
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = "حفظ"
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = "مدونة"
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = "الخصوصية"
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = "ييوببوت"
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = "وضعت في سيككواري"
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = "قائمة الإعدادات المحلية"
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = "اسم الإعدادات المحلية"
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = "مرة أخرى"
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = "العلامة لغة"
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = "وضعالكتابة"
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = "%s ملف السجل"
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = "التحديث التلقائي بدوره قبالة"
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = "ترجمت في المائة"
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = "التحديث التلقائي بدوره على"
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "اسم المستخدم:"
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = "إضافة الإعدادات المحلية"
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = "اسم الإعدادات المحلية:"
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = "العلامة لغة:"
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = "وضع كتابة:"
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "كلمة المرور الجديدة:"
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "إعادة كتابة كلمة المرور:"
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = "تقديم"
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = "حفظ"
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = "اسم الإعدادات المحلية"
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = "العلامة لغة"
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = "وضعالكتابة"
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = "إضافة جهاز"
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = "آلة اسم:"
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = "آلة Url:"
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = "هو مرآة:"
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = "أصل الاسم:"
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = "لديها قائمة انتظار الخادم:"
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = "عدد من فيتشيرس:"
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = "تقديم"
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = "معلومات الجهاز"
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = "في انتظار الحالات آلات..."
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = "حالة الجهاز لم يعد تحديث..."
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = "اسم الدور:"
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "إضافة دور"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = "اسم الدور:"
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = "اسم الدور:"
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = "اسم المستخدم:"
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = "اسم المستخدم:"
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "كلمة المرور:"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "إعادة كتابة كلمة المرور:"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = "اسم المستخدم:"
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = "يمزج المتاحة"
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = "الاسم"
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = "تعريف"
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = "إجراءات"
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = "مزيج لم أية مكونات"
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = "تحرير"
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = "تعيين كفهرس"
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = "البحث عن الفهرس"
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = "حذف"
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = "إنشاء تتبع الارتباطات"
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = "الاسم"
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = "بدء تشغيل تتبع الارتباطات الجديدة"
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = "خيارات"
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = "جعل مزيج تتبع ارتباطات"
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = "في انتظار حالة تتبع الارتباطات"
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = "مزيج اسم:"
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = "لم يعد تحديث حالة تتبع الارتباطات"
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = "إنشاء"
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "إعدادات"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "تسجيل الدخول"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "أنشطة"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = "خيارات الصفحة وقت الزحف"
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = "نطاق البايت للتحميل  (0-القيمة):"
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = "السماح للصفحة ريكراول بعد:"
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = "ملف صفحة أنواع للزحف:"
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = "فهرسة الإضافات"
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = "المساعد"
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = "استخدم في تتبع الارتباطات"
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = "تشير إلى كلمة"
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = "سوبسيرتش"
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = "تسجيل الدخول"
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = "ذاكرة التخزين المؤقت"
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = "مماثلة"
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = "Inlinks"
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = "عنوان IP"
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = "لقب الوزن:"
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = "وصف الوزن:"
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = "ربط الوزن:"
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = "تجميع نتائج البحث"
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = "نتائج الحد الأدنى للمجموعة:"
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = "ألفا الخادم:"
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = "حفظ"
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = "قائمة الإعدادات المحلية"
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = "حفظ"
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = "اسم الإعدادات المحلية"
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = "تحرير صفحة النتيجة"
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = "العلامة لغة"
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = "تحرير عناوين Url:"
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = "وضعالكتابة"
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = "حدد موجز تم تحريرها مسبقاً"
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = "تحميل"
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = "ترجمت في المائة"
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = "URL:"
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = "العنوان:"
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = "الوصف"
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = "إعادة تعيين"
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = "حفظ الصفحة"
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = "تصفية المواقع من النتائج"
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = "مواقع لعامل التصفية"
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = "حفظ عامل التصفية"
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = "إضافة الإعدادات المحلية"
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = "اسم الإعدادات المحلية:"
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = "إضافة مصدر الوسائط"
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = "العلامة لغة:"
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = "نوع:"
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = "وضع كتابة:"
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = "الاسم:"
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = "URL:"
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = "تقديم"
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = "اللغة:"
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = "الإبهام:"
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = "اسم الإعدادات المحلية"
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = "العلامة لغة"
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = "وضعالكتابة"
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = "إضافة جهاز"
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = "تقديم"
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = "آلة اسم:"
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = "مصادر إعلامية"
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = "آلة Url:"
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = "الاسم"
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = "هو مرآة:"
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = "النوع"
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = "أصل الاسم:"
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = "محددات مواقع المعلومات"
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = "لديها قائمة انتظار الخادم:"
+; SearchsourcesElement.php line: 199
+searchsources_element_action = "العمل"
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = "عدد من فيتشيرس:"
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = "تقديم"
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = "معلومات الجهاز"
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = "حذف"
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = "في انتظار الحالات آلات..."
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = "حالة الجهاز لم يعد تحديث..."
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = "إضافة سوبسيرتش"
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = "اسم الدور:"
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = "اسم المجلد:"
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = "فهرسة المصدر:"
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = "النتائج في الصفحة الواحدة:"
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = "تقديم"
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = "سوبسيرتشيس الحالي"
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = "اسم المجلد"
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = "فهرس"
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = "معرف التعريب"
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "إضافة دور"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = "النتائج/الصفحة"
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = "اسم الدور:"
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = "إجراءات"
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = "تعريب"
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = "تعريب"
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = "حذف"
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = "اسم الدور:"
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "اسم المستخدم:"
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = "اسم ملقمالإنشاء"
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = "مفتاح الخادم:"
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = "اسم محدد موقع معلومات الخادم:"
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = "استخدام Memcache:"
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = "Memcache ملقمات"
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = "استخدام فيليكاتشي:"
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = "إنشاء قاعدة بيانات"
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = "نظام قاعدة بيانات:"
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "اسم المستخدم:"
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = "اسم قاعدة البيانات:"
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = "اسم المضيف:"
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = "قاعدة بيانات المستخدم:"
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = "قاعدة بيانات كلمة المرور:"
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "كلمة المرور:"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "إعادة كتابة كلمة المرور:"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "اسم المستخدم:"
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = "يمزج المتاحة"
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = "الاسم"
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = "تعريف"
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = "إجراءات"
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = "مزيج لم أية مكونات"
+; SigninElement.php line: 73
+signin_element_settings = "إعدادات"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "تسجيل الدخول"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = "تحرير"
+; SigninElement.php line: 81
+signin_element_signout = "تسجيل الخروج"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = "تعيين كفهرس"
+; SubsearchElement.php line: 69
+subsearch_element_more = "أكثر"
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = "البحث عن الفهرس"
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = "حذف"
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = "جعل مزيج تتبع ارتباطات"
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = "مزيج اسم:"
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = "إنشاء"
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "إعدادات"
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "تسجيل الدخول"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "أنشطة"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = "خيارات الصفحة وقت الزحف"
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = "نطاق البايت للتحميل  (0-القيمة):"
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = "السماح للصفحة ريكراول بعد:"
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = "ملف صفحة أنواع للزحف:"
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = "فهرسة الإضافات"
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = "المساعد"
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = "استخدم في تتبع الارتباطات"
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = "تشير إلى كلمة"
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = "سوبسيرتش"
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = "تسجيل الدخول"
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = "ذاكرة التخزين المؤقت"
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = "مماثلة"
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = "Inlinks"
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = "عنوان IP"
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = "لقب الوزن:"
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = "وصف الوزن:"
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = "ربط الوزن:"
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = "تجميع نتائج البحث"
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = "نتائج الحد الأدنى للمجموعة:"
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = "ألفا الخادم:"
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = "حفظ"
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = "خروج السيارات في دقيقة واحدة!!"
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = "نتائج أخبار ل  %s"
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = "منذ 1 ساعة"
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = "قبل ساعات %s"
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = "حفظ"
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = "تحرير صفحة النتيجة"
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = "تحرير عناوين Url:"
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = "حدد موجز تم تحريرها مسبقاً"
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = "تحميل"
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = "URL:"
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = "العنوان:"
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = "الوصف"
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = "إعادة تعيين"
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = "حفظ الصفحة"
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = "تصفية المواقع من النتائج"
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = "مواقع لعامل التصفية"
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = "حفظ عامل التصفية"
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = "إضافة مصدر الوسائط"
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = "نوع:"
+; ImagesHelper.php line: 55
+images_helper_view_image_results = "عرض نتائج الصورة أكثر..."
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = "الاسم:"
+; PaginationHelper.php line: 97
+pagination_helper_previous = "السابق"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = "URL:"
+; PaginationHelper.php line: 121
+pagination_helper_next = "القادم"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = "اللغة:"
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = "الإبهام:"
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = "على"
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = "تقديم"
+; ToggleHelper.php line: 61
+toggle_helper_off = "إيقاف"
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = "مصادر إعلامية"
+; ToggleHelper.php line: 65
+toggle_helper_on = "على"
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = "الاسم"
+; ToggleHelper.php line: 67
+toggle_helper_off = "إيقاف"
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = "النوع"
+; ToggleHelper.php line: 71
+toggle_helper_on = "على"
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = "محددات مواقع المعلومات"
+; ToggleHelper.php line: 73
+toggle_helper_off = "إيقاف"
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = "العمل"
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = "بي إتش بي محرك البحث-يوب!:  %s"
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = "نتائج البحث ل:  %s"
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = "حذف"
+; WebLayout.php line: 63
+web_layout_title = "بي إتش بي محرك البحث-يوب!"
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = "بي إتش بي الزاحف والبرمجيات محرك البحث"
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = "إضافة سوبسيرتش"
+; WebLayout.php line: 219
+web_layout_query_statistics = "إحصائيات الاستعلام"
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = "اسم المجلد:"
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = "إجمالي الوقت المنقضي للاستعلامات:  %s ثوان."
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = "فهرسة المصدر:"
+; WebLayout.php line: 228
+web_layout_query_time = "الوقت:  %s ثوان."
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = "النتائج في الصفحة الواحدة:"
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = "لا توجد آلات المراقبة"
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = "تقديم"
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = "سوبسيرتشيس الحالي"
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = "اسم المجلد"
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = "فهرس"
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = "معرف التعريب"
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = "النتائج/الصفحة"
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = "إجراءات"
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = "سجل"
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = "تعريب"
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = "تعريب"
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = "حذف"
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = "المرايا"
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = "سجل"
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = "قائمة انتظار الملقم"
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = "سجل"
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = "قائمة انتظار الملقم"
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = "آلة قد لا يوجد ملقم قائمة انتظار"
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = "سجل"
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = "آلة قد لا فيتشيرس"
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = "فيتشيرس"
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = "سجل"
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = "اسم ملقمالإنشاء"
+; NocacheView.php line: 54
+nocache_view_no_cache = "لم يكن لديها ذاكرة التخزين المؤقت للعنصر المطلوب."
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = "مفتاح الخادم:"
+; NocacheView.php line: 59
+nocache_view_summary_contents = "موجز البيانات المخزنة في يوب"
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = "اسم محدد موقع معلومات الخادم:"
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = "استخدام Memcache:"
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = "Memcache ملقمات"
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = "استخدام فيليكاتشي:"
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = "إنشاء قاعدة بيانات"
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = "نظام قاعدة بيانات:"
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = "اسم قاعدة البيانات:"
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = "اسم المضيف:"
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = "قاعدة بيانات المستخدم:"
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = "قاعدة بيانات كلمة المرور:"
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "إعدادات"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "تسجيل الدخول"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "تسجيل الخروج"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = "أكثر"
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = "يوب! بي إتش بي محرك البحث "
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = "إدخال المصطلحات كنت ترغب في البحث في الويب"
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = "اكتب ما كنت تبحث عن"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "البحث"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = "مزيد من الإحصاءات"
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = "%s ثوان."
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "عرض  %s- %s من  %s"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = "مؤقتاً"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = "فيونبسب;as&nbsp;text"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = "مماثلة"
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = "Inlinks"
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "رتبة: %s"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = "ق Rel:%"
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = "ق Prox:%"
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = "نقاط: %s"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "إعدادات"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "النتائج في الصفحة الواحدة:"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = "فتح النتائج في تبويب"
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = "البحث في الفهرس:"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "اللغة:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "حفظ الإعدادات"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = "نتائج أخبار ل  %s"
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = "منذ 1 ساعة"
+; SigninView.php line: 68
+signin_view_signin = "تسجيل الدخول"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = "قبل ساعات %s"
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "اسم المستخدم"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "كلمة المرور"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "تسجيل الدخول"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = "بي إتش بي محرك البحث-يوب!"
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = "الإحصاءات"
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = "حساب... يرجى أن يكون المريض."
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = "ينظر إلى رموز الخطأ"
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = "تحميل أحجام الملفات"
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = "متوسط الارتباطات في كل صفحة"
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = "تعديل التواريخ للصفحة"
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = "الوقت بحث DNS"
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = "وقت تحميل الصفحة"
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = "نطاقات المستوى الأعلى"
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = "ملحق الملف"
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = "عرض نتائج الصورة أكثر..."
+; StatisticsView.php line: 102
+statistics_view_media_type = "نوع الوسائط"
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "السابق"
+; StatisticsView.php line: 103
+statistics_view_language = "لغة صفحة ويب"
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "القادم"
+; StatisticsView.php line: 104
+statistics_view_server = "ملقم ويب"
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = "نظام التشغيل  (في حالة اكتشاف)"
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = "معلومات الفهرس العام"
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = "وصف فهرس"
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = "الطابع الزمني"
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = "وقت بدء تتبع ارتباطات"
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = "تحميل الصفحات"
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = "شهدت محددات مواقع المعلومات"
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = "ينظر إلى أسماء المضيفين"
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = "على"
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = "إيقاف"
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = "على"
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = "إيقاف"
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = "على"
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = "إيقاف"
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = "بي إتش بي محرك البحث-يوب!:  %s"
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = "نتائج البحث ل:  %s"
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = "بي إتش بي محرك البحث-يوب!"
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = "بي إتش بي الزاحف والبرمجيات محرك البحث"
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = "إحصائيات الاستعلام"
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = "إجمالي الوقت المنقضي للاستعلامات:  %s ثوان."
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = "الوقت:  %s ثوان."
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = "خروج السيارات في دقيقة واحدة!!"
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/ar/statistics.txt b/locale/ar/statistics.txt
index 187cb44..039ce78 100755
--- a/locale/ar/statistics.txt
+++ b/locale/ar/statistics.txt
@@ -1 +1 @@
-d:32;
\ No newline at end of file
+d:30;
\ No newline at end of file
diff --git a/locale/bn/configure.ini b/locale/bn/configure.ini
index 563ba3d..d2f5b00 100755
--- a/locale/bn/configure.ini
+++ b/locale/bn/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = ""
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = ""
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = ""
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = ""
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = ""
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = ""
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = ""
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = ""
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = ""
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = ""
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = ""
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = ""
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = ""
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = ""
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = ""
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = ""
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = ""
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = ""
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = ""
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = ""
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = ""
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = ""
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = ""
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = ""
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = ""
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = ""
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = ""
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = ""
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = ""
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = ""
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = ""
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = ""
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = ""
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = ""
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = ""
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = ""
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = ""
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = ""
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = ""
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = ""
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = ""
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = ""
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = ""
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = ""
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = ""
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = ""
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = ""
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = ""
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/de/configure.ini b/locale/de/configure.ini
index b41d0af..d0b54d0 100755
--- a/locale/de/configure.ini
+++ b/locale/de/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = ""
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = ""
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = ""
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = ""
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = ""
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = ""
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = ""
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = ""
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = ""
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "Suche"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = ""
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = ""
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = ""
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = ""
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = ""
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = ""
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = ""
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = ""
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = ""
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = ""
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = ""
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = ""
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = ""
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = ""
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = ""
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = ""
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = ""
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = ""
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = ""
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = ""
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = ""
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = ""
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = ""
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = ""
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = ""
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "Suche"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = ""
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = ""
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = ""
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = ""
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = ""
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = ""
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = ""
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = ""
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = ""
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = ""
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = ""
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = ""
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/en_US/configure.ini b/locale/en_US/configure.ini
index 9ac8bf0..6bf5f93 100755
--- a/locale/en_US/configure.ini
+++ b/locale/en_US/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = "Cookies needed to login!!"
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = "Ascending"
 ; AdminController.php line: 558
 admin_controller_sort_descending = "Descending"
 ;
-; MachineController.php line: 193
-machine_controller_nolines = "No Lines Match Filter!"
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = "Cookies need to be enabled to register or log in to a Seekquarry!"
-;
-; RegisterController.php line: 315
-register_controller_account_created = "Account created successfully!!"
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = "Registration email sent!"
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = "Seekquarry User Has Requested Activation"
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = "Dear %s %s,"
-;
-; RegisterController.php line: 338
-register_controller_email_body = "This email was given in a Seekquarry account creation request. If you are interested in a Seekquarry account please use the address below to complete the registration process."
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = "Account registration request has been sent!"
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = "Seekquarry User Has Requested Activation"
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = "User %s %s with username %s has requested activation of their account."
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = "Email verification error!!"
-;
-; RegisterController.php line: 425
-register_controller_already_activated = "Account has already been activated!"
-;
-; RegisterController.php line: 432
-register_controller_account_activated = "Account successfully activated!!"
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = "Email verification error!!"
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = "Unable to recover account!"
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = "Unable to recover account!"
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = "Recover Account Email Sent!!"
-;
-; RegisterController.php line: 500
-register_controller_recover_request = "Seekquarry Account Recovery Request"
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = "Dear %s %s,"
-;
-; RegisterController.php line: 503
-register_controller_recover_body = "A request was made to recover your Seekquarry password. If this is correct, please paste the link below into a browser and complete the form presented."
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = "Unable to recover account!"
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = "Unable to recover account!"
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = "Unable to recover account!"
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = "Recover email already used!"
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = "Recover email has expired!"
-;
-; RegisterController.php line: 579
-register_controller_password_changed = "Password changed!"
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = "Passwords don&#039;t match!"
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = "Recover email already used!"
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = "Recover email has expired!"
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = "Format of URL is invalid!"
-;
-; RegisterController.php line: 736
-register_controller_error_fields = "Starred fields need to be filled in correctly!"
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = "Hash Code Did Not Match!"
-;
-; RegisterController.php line: 759
-register_controller_failed_human = "Got human check questions wrong!"
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = "Captcha Mis-entered!"
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = "Suggest URL buffer is full! Please try again later!"
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = "Suggested URL saved!"
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = "Cookies need to be enabled to register or log in to a Seekquarry!"
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = "Got human check questions wrong!"
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = "Captcha Mis-entered!"
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = "Hash Code Did Not Match!"
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = "Starred fields need to be filled in correctly!"
-;
-; RegisterController.php line: 1069
-register_controller_check_email = "Check Email Address!"
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = "Account not created - Username already in use!!"
-;
-; SearchController.php line: 280
-search_controller_web = "Web"
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "Logout Successful!!"
-;
-; SearchController.php line: 549
-search_controller_mix_info = "Using Crawl Mix: %s"
-;
-; SearchController.php line: 555
-search_controller_crawl_info = "Index: %s -- Size: %s pages/%s urls"
-;
-; SearchController.php line: 591
-search_controller_search = "Search"
-;
-; SearchController.php line: 695
-search_controller_no_index_set = "No Search Index Set For Use!"
-;
-; SearchController.php line: 698
-search_controller_no_index_set = "No Search Index Set For Use!"
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = "Advertise for %s"
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = "Do keyword advertising on Yioop!"
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = "Download Fetcher: %s"
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = "The website in question has requested this page not be archived."
-;
-; SearchController.php line: 1441
-search_controller_site_cache = "Yioop Cache"
-;
-; SearchController.php line: 1446
-search_controller_original_page = "This image appeared on the page:"
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = "Extracted Title"
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = "Extracted Description"
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = "Extracted Links"
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = "Extracted Allowed To Crawl Paths"
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = "Extracted Disallowed To Crawl Paths"
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = "SeekquarryBot Crawl Delay"
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = "Seekquarry Cache Page... This page has been modified to add a robots directive,  make links absolute, add extracted summaries, and to highlight query terms."
-;
-; SearchController.php line: 1559
-search_controller_site_cache = "Yioop Cache"
-;
-; SearchController.php line: 1594
-search_controller_cached_version = "This cached version of %s was obtained by the Seekquarry crawler on %s."
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = "Download Fetcher: %s"
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = "Toggle Extracted Headers and Summaries"
-;
-; SearchController.php line: 1821
-search_controller_history = "Toggle History"
-;
-; SearchController.php line: 1991
-search_controller_all_cached = "All Cached Versions - Change Year and/or Months to see Links"
-;
-; SearchController.php line: 2022
-search_controller_year = "Year:"
-;
-; SearchController.php line: 2023
-search_controller_month = "Month:"
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = "crawl mix"
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "Settings Saved!"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = "Logout Successful"
-;
-; StaticController.php line: 146
-static_controller_complete_title = "%s"
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = "No Posts Yet"
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = "Ad Duration Cannot Be Empty!
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = "Please enter keywords"
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = "Please enter keywords"
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = "Bid too low! Calculate and bid  again!"
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = "Payment Processing Error"
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = "Advertisement created"
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = "Ad status changed!"
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = "Advertisement Updated"
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = "Check Passed."
 ; SystemComponent.php line: 1220
 system_component_using_local_config = "Using configs/local_config.php so changing work directory above may not work."
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = "No Lines Match Filter!"
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "Logout Successful!!"
+; RegisterController.php line: 249
+register_controller_need_cookies = "Cookies need to be enabled to register or log in to a Seekquarry!"
 ;
-; MainController.php line: 98
-main_controller_download = "Download Form"
+; RegisterController.php line: 315
+register_controller_account_created = "Account created successfully!!"
 ;
-; MainController.php line: 115
-main_controller_missing_fields = "Missing Fields! Form not processed!"
+; RegisterController.php line: 333
+register_controller_registration_email_sent = "Registration email sent!"
 ;
-; MainController.php line: 150
-main_controller_yioop_download = "Yioop Download Information"
+; RegisterController.php line: 335
+register_controller_admin_activation_request = "Seekquarry User Has Requested Activation"
 ;
-; MainController.php line: 151
-main_controller_click_download = "Use the link below to download Yioop software:"
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = "Dear %s %s,"
 ;
-; MainController.php line: 164
-main_controller_url_error = "URL Format Error!"
+; RegisterController.php line: 338
+register_controller_email_body = "This email was given in a Seekquarry account creation request. If you are interested in a Seekquarry account please use the address below to complete the registration process."
 ;
-; MainController.php line: 173
-main_controller_expired_url = "Expire Url. Please fill out the form again to download!"
+; RegisterController.php line: 372
+register_controller_account_request_made = "Account registration request has been sent!"
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = "Seekquarry User Has Requested Activation"
 ;
-; AdminView.php line: 71
-admin_view_admin = "Admin"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = "User %s %s with username %s has requested activation of their account."
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
+; RegisterController.php line: 419
+register_controller_email_verification_error = "Email verification error!!"
+;
+; RegisterController.php line: 425
+register_controller_already_activated = "Account has already been activated!"
+;
+; RegisterController.php line: 432
+register_controller_account_activated = "Account successfully activated!!"
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = "Email verification error!!"
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = "Unable to recover account!"
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = "Unable to recover account!"
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = "Recover Account Email Sent!!"
+;
+; RegisterController.php line: 500
+register_controller_recover_request = "Seekquarry Account Recovery Request"
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = "Dear %s %s,"
+;
+; RegisterController.php line: 503
+register_controller_recover_body = "A request was made to recover your Seekquarry password. If this is correct, please paste the link below into a browser and complete the form presented."
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = "Unable to recover account!"
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = "Unable to recover account!"
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = "Unable to recover account!"
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = "Recover email already used!"
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = "Recover email has expired!"
+;
+; RegisterController.php line: 579
+register_controller_password_changed = "Password changed!"
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = "Passwords don&#039;t match!"
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = "Recover email already used!"
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = "Recover email has expired!"
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = "Format of URL is invalid!"
+;
+; RegisterController.php line: 736
+register_controller_error_fields = "Starred fields need to be filled in correctly!"
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = "Hash Code Did Not Match!"
+;
+; RegisterController.php line: 759
+register_controller_failed_human = "Got human check questions wrong!"
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = "Captcha Mis-entered!"
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = "Suggest URL buffer is full! Please try again later!"
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = "Suggested URL saved!"
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = "Cookies need to be enabled to register or log in to a Seekquarry!"
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = "Got human check questions wrong!"
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = "Captcha Mis-entered!"
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = "Hash Code Did Not Match!"
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = "Starred fields need to be filled in correctly!"
+;
+; RegisterController.php line: 1069
+register_controller_check_email = "Check Email Address!"
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = "Account not created - Username already in use!!"
+;
+; SearchController.php line: 280
+search_controller_web = "Web"
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "Logout Successful!!"
+;
+; SearchController.php line: 549
+search_controller_mix_info = "Using Crawl Mix: %s"
+;
+; SearchController.php line: 555
+search_controller_crawl_info = "Index: %s -- Size: %s pages/%s urls"
+;
+; SearchController.php line: 591
+search_controller_search = "Search"
+;
+; SearchController.php line: 695
+search_controller_no_index_set = "No Search Index Set For Use!"
+;
+; SearchController.php line: 698
+search_controller_no_index_set = "No Search Index Set For Use!"
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = "Advertise for %s"
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = "Do keyword advertising on Yioop!"
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = "Download Fetcher: %s"
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = "The website in question has requested this page not be archived."
+;
+; SearchController.php line: 1441
+search_controller_site_cache = "Yioop Cache"
+;
+; SearchController.php line: 1446
+search_controller_original_page = "This image appeared on the page:"
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = "Extracted Title"
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = "Extracted Description"
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = "Extracted Links"
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = "Extracted Allowed To Crawl Paths"
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = "Extracted Disallowed To Crawl Paths"
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = "SeekquarryBot Crawl Delay"
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = "Seekquarry Cache Page... This page has been modified to add a robots directive,  make links absolute, add extracted summaries, and to highlight query terms."
+;
+; SearchController.php line: 1559
+search_controller_site_cache = "Yioop Cache"
+;
+; SearchController.php line: 1594
+search_controller_cached_version = "This cached version of %s was obtained by the Seekquarry crawler on %s."
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = "Download Fetcher: %s"
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = "Toggle Extracted Headers and Summaries"
+;
+; SearchController.php line: 1821
+search_controller_history = "Toggle History"
+;
+; SearchController.php line: 1991
+search_controller_all_cached = "All Cached Versions - Change Year and/or Months to see Links"
+;
+; SearchController.php line: 2022
+search_controller_year = "Year:"
+;
+; SearchController.php line: 2023
+search_controller_month = "Month:"
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = "crawl mix"
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "Settings Saved!"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = "Logout Successful"
+;
+; StaticController.php line: 146
+static_controller_complete_title = "%s"
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "Logout Successful!!"
+;
+; MainController.php line: 102
+main_controller_store = "Store"
+;
+; MainController.php line: 105
+advertisement_component_month = "Month"
+;
+; MainController.php line: 112
+advertisement_component_year = "Year"
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = "Missing Fields! Form not processed!"
+;
+; MainController.php line: 165
+main_controller_already_purchased = "Ad Script for that Name Server already purchased!"
+;
+; MainController.php line: 172
+main_controller_processing_error = "Error processing request!"
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = "Purchase completed!"
+;
+; MainController.php line: 200
+main_controller_download = "Download Form"
+;
+; MainController.php line: 217
+main_controller_missing_fields = "Missing Fields! Form not processed!"
+;
+; MainController.php line: 252
+main_controller_yioop_download = "Yioop Download Information"
+;
+; MainController.php line: 253
+main_controller_click_download = "Use the link below to download Yioop software:"
+;
+; MainController.php line: 266
+main_controller_url_error = "URL Format Error!"
+;
+; MainController.php line: 275
+main_controller_expired_url = "Expire Url. Please fill out the form again to download!"
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "Admin"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = "Currently Processing"
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "Delete"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = "No Previous Crawls"
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = "%s Wiki Page Discussion"
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = "Feed"
+; ActivityElement.php line: 56
+activity_element_activities = "Activities"
 ;
-; GroupView.php line: 104
-group_view_wiki = "Wiki"
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = "Use Wiki Public Main Page as Landing Page:"
 ;
-; GroupView.php line: 106
-group_view_user = "%s User"
+; AppearanceElement.php line: 77
+appearance_element_background_color = "Background Color:"
 ;
-; GroupView.php line: 109
-group_view_myfeeds = "My Feeds"
+; AppearanceElement.php line: 84
+appearance_element_background_image = "Background Image:"
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
+; AppearanceElement.php line: 91
+appearance_element_background_image = "Background Image:"
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = "No Monitored Machines"
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = "Foreground Color:"
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = "Media Updater Mode:"
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = "Top Bar Color:"
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = "Name Server"
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = "Side Bar Color:"
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = "Distributed"
+; AppearanceElement.php line: 115
+appearance_element_site_logo = "Site Logo:"
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = "Name Server"
+; AppearanceElement.php line: 122
+appearance_element_site_logo = "Site Logo:"
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = "Distributed"
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = "Mobile Logo:"
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = "Name Server"
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = "Mobile Logo:"
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = "Media Updater"
+; AppearanceElement.php line: 148
+appearance_element_favicon = "Favicon:"
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = "Log"
+; AppearanceElement.php line: 155
+appearance_element_favicon = "Favicon:"
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = "Are you sure you want to Delete?"
+; AppearanceElement.php line: 163
+appearance_element_toolbar = "Search Toolbar"
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = "Delete"
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = "Timezone:"
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = "Machine Not Configured!"
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = "Web Cookie Name:"
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = "Mirrors"
+; AppearanceElement.php line: 184
+appearance_element_token_name = "Web Token Name:"
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = "Log"
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = "Auxiliary Style Directives"
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = "Queue Server"
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = "Reset Customizations"
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = "Log"
+; AppearanceElement.php line: 199
+appearance_element_save = "Save"
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = "Queue Server"
+; ConfigureElement.php line: 72
+configure_element_work_directory = "Search Engine Work Directory"
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = "Machine has no queue server"
+; ConfigureElement.php line: 76
+configure_element_load_or_create = "Load or Create"
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = "Media Updater"
+; ConfigureElement.php line: 92
+configure_element_component_check = "Component Check"
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = "Log"
+; ConfigureElement.php line: 96
+configure_element_profile_settings = "Profile Settings"
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = "Machine has no fetchers"
+; ConfigureElement.php line: 101
+configure_element_default_language = "Default Language:"
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = "Fetchers"
+; ConfigureElement.php line: 108
+configure_element_debug_display = "Debug Display"
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = "Log"
+; ConfigureElement.php line: 114
+configure_element_error_info = "Error Info"
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = "Did not have cache of requested item."
+; ConfigureElement.php line: 120
+configure_element_query_info = "Query Info"
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = "Summary Data stored in Seekquarry for Item"
+; ConfigureElement.php line: 126
+configure_element_test_info = "Test Info"
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = "Recover Account"
+; ConfigureElement.php line: 131
+configure_element_site_access = "Search Access"
 ;
-; RecoverView.php line: 104
-register_view_new_password = "New Password"
+; ConfigureElement.php line: 136
+configure_element_web_access = "Web"
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = "Re-type password:"
+; ConfigureElement.php line: 141
+configure_element_rss_access = "RSS"
 ;
-; RecoverView.php line: 131
-recover_view_username = "Username:"
+; ConfigureElement.php line: 146
+configure_element_api_access = "API"
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = "Recovery Info:"
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = "Crawl Robot Set-up"
 ;
-; RecoverView.php line: 153
-register_view_human_check = "Human Check:"
+; ConfigureElement.php line: 152
+configure_element_robot_name = "Crawl Robot Name:"
 ;
-; RecoverView.php line: 185
-register_view_human_check = "Human Check:"
+; ConfigureElement.php line: 160
+configure_element_robot_instance = "Robot Instance:"
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = "Recover Account"
+; ConfigureElement.php line: 166
+configure_element_robot_description = "Robot Description"
 ;
-; RecoverView.php line: 211
-recover_view_return = "Return to Yioop"
+; ConfigureElement.php line: 175
+serversettings_element_save = "Save"
 ;
-; RegisterView.php line: 76
-register_view_question0_most = "Which lives or lasts the longest?"
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "Back"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = "Which lives or lasts the shortest?"
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = "Modify Active Crawl"
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = "lightning,bacteria,ant,dog,horse,person,oak tree,planet,star,galaxy"
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = "Edit Crawl Options"
 ;
-; RegisterView.php line: 79
-register_view_question1_most = "Which is more abundant?"
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = "Web Crawl"
 ;
-; RegisterView.php line: 80
-register_view_question1_least = "Which is less abundant?"
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = "Archive Crawl"
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = "continents,countries,subways,cities,doctors,people,hands,teeth,hair,cells,molecules,atoms,protons"
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = "Get Crawl Options From:"
 ;
-; RegisterView.php line: 82
-register_view_question2_most = "Which is usually more pricey?"
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = "Crawl Order:"
 ;
-; RegisterView.php line: 83
-register_view_question2_least = "Which is usually less pricey?"
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = "Restrict Sites By Url:"
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = "a postage stamp,cup of coffee,movie ticket,shoes,bicycle,one month&#039;s rent,car,house,a power plant"
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = "Allowed To Crawl Sites"
 ;
-; RegisterView.php line: 85
-register_view_question3_most = "Which is more round?"
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = "Disallowed Sites/Sites with Quotas"
 ;
-; RegisterView.php line: 86
-register_view_question3_least = "Which is less round?"
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = "Seed Sites"
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = "a chair,the letter T,a banana,a pear,an apple,an orange,a sphere"
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = "Add User Suggest data"
 ;
-; RegisterView.php line: 88
-register_view_question4_most = "Which is usually the largest?"
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = "Sites to Inject into Current Crawl"
 ;
-; RegisterView.php line: 89
-register_view_question4_least = "Which is usually the smallest?"
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = "Add User Suggest data"
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = "a coin,a baseball,a milk gallon,shopping cart,refrigerator,giraffe,house,volcano,the Moon,the Earth"
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = "Crawl or Arc Folder to Re-index:"
 ;
-; RegisterView.php line: 91
-register_view_question5_most = "Which is taller?"
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = "Seekquarry API access required for mix archive crawls  "
 ;
-; RegisterView.php line: 92
-register_view_question5_least = "Which is shorter?"
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "Save Options"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = "ladybug,mouse,cat,toddler,man,horse,elephant,giraffe,tall building,mountain"
+; EditclassifierElement.php line: 62
+editclassifier_back = "Back"
 ;
-; RegisterView.php line: 94
-register_view_question6_most = "Which takes longer?"
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = "Edit Classifier"
 ;
-; RegisterView.php line: 95
-register_view_question6_least = "Which takes less time?"
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = "Classifier Label:"
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = "blink,lick envelope,comb hair,apply makeup,watch a movie,run marathon,olympics,summer vacation,year"
+; EditclassifierElement.php line: 81
+editclassifier_change = "Change"
 ;
-; RegisterView.php line: 97
-register_view_question7_most = "Which is hotter sounding?"
+; EditclassifierElement.php line: 86
+editclassifier_statistics = "Statistics"
 ;
-; RegisterView.php line: 98
-register_view_question7_least = "Which is colder sounding?"
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = "Positive Examples:"
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = "Pluto,polar exploring,skating,swimming pool,tea,steam,molten iron,sun"
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = "Negative Examples:"
 ;
-; RegisterView.php line: 100
-register_view_question8_most = "Which is the oldest?"
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = "Accuracy:"
 ;
-; RegisterView.php line: 101
-register_view_question8_least = "Which is the newest?"
+; EditclassifierElement.php line: 98
+crawl_component_na = "N/A"
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = "fresh milk,current president,your grandparents,Flight at Kitty Hawk,the Black Death,Egyptian Pyramids,writing,cave paintings,dinosaurs"
+; EditclassifierElement.php line: 103
+editclassifier_update = "Update"
 ;
-; RegisterView.php line: 103
-register_view_question9_most = "Which holds more?"
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = "Add Examples"
 ;
-; RegisterView.php line: 104
-register_view_question9_least = "Which holds less?"
+; EditclassifierElement.php line: 113
+editclassifier_source = "Source:"
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = "teaspoon,saucer,cup,bowl,teapot,wash basin,barrel,pickup truck,moving van,oil tanker"
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = "Default Crawl"
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = "Animal you like the best:"
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = "Label By Hand"
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = "Animal you like the least:"
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = "All In Class"
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = "ant,bunny,cat,cockroach,dog,goldfish,hamster,horse,snake,spider,tiger,whale"
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = "None In Class"
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = "Color you like the most:"
+; EditclassifierElement.php line: 136
+editclassifier_keywords = "Keywords:"
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = "Color you like the least:"
+; EditclassifierElement.php line: 145
+editclassifier_load = "Load"
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = "no color,aquamarine,blue,brown,gold,green,gray,mauve,pink,periwinkle,purple,red,silver,turquoise,yellow"
+; EditclassifierElement.php line: 151
+editclassifier_finalize = "Finalize"
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = "Food you like the most:"
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = "No Documents"
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = "Food you like the least:"
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = "Back"
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = "apple,banana,chicken,fish,lamb,nuts,orange,pork,potato,tomato,steak"
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = "Edit Locale: %s"
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = "Drink you like the most:"
+; EditlocalesElement.php line: 78
+editlocales_element_show = "Show:"
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = "Drink you like the least:"
+; EditlocalesElement.php line: 82
+editlocales_element_filter = "Filter:"
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = "apple juice,beer,coffee,hot tea,ice tea,lemonade,orange juice,soda,sparkling water,still water,wine"
+; EditlocalesElement.php line: 87
+editlocales_element_go = "Go"
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = "Game you like the most:"
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = "No Matching Strings Left To Translate!"
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = "Game you like the least:"
+; EditlocalesElement.php line: 127
+editlocales_element_save = "Save"
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = "basketball,backgammon,checkers,chess,football,hockey,skate,ski,tennis,volleyball"
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = "Back"
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = "Sound you like the most:"
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = "Edit Crawl Mix"
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = "Sound you like the least:"
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = "Mix Name"
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = "accordian,drum,flute,guitar,harmonica,harp,horn,oboe,piano,triangle,trumpet,violin,whistle,xylophone"
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = "Mix Components"
 ;
-; RegisterView.php line: 153
-register_view_create_account = "Create Account"
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = "At Maximum Number of Search Fragments!"
 ;
-; RegisterView.php line: 190
-register_view_firstname = "First Name:"
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = "Add Search Result Fragment"
 ;
-; RegisterView.php line: 205
-register_view_lastname = "Last Name:"
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = "Save"
 ;
-; RegisterView.php line: 219
-register_view_username = "Username:"
+; FooterElement.php line: 58
+footer_element_blog = "Blog"
 ;
-; RegisterView.php line: 232
-register_view_email = "Email:"
+; FooterElement.php line: 60
+footer_element_privacy = "Privacy"
 ;
-; RegisterView.php line: 246
-register_view_password = "Password:"
+; FooterElement.php line: 62
+footer_element_terms = "Terms"
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = "Re-type password:"
+; FooterElement.php line: 64
+footer_element_tools = "Tools"
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = "Recovery Info:"
+; FooterElement.php line: 66
+footer_element_bot = "SeekquarryBot"
 ;
-; RegisterView.php line: 281
-register_view_human_check = "Human Check:"
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = "Developed at SeekQuarry"
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = "Recovery Info:"
+; FooterElement.php line: 74
+footer_element_copyright_site = "(c) This Site"
 ;
-; RegisterView.php line: 315
-register_view_human_check = "Human Check:"
+; FooterElement.php line: 76
+footer_element_this_search_engine = "This Search Engine"
 ;
-; RegisterView.php line: 329
-register_view_i_agree = "By clicking Create Account, I agree to the"
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = "Add Group"
 ;
-; RegisterView.php line: 331
-register_view_terms = "Yioop Terms"
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = "Request Add Group"
 ;
-; RegisterView.php line: 333
-register_view_and = "and"
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = "Edit Page"
 ;
-; RegisterView.php line: 335
-register_view_privacy = "Privacy Policy"
+; GroupfeedElement.php line: 118
+groupfeed_element_back = "My Group Feeds"
 ;
-; RegisterView.php line: 336
-register_view_period = "."
+; GroupfeedElement.php line: 121
+groupfeed_element_back = "My Group Feeds"
 ;
-; RegisterView.php line: 346
-register_view_create_account = "Create Account"
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = "Group Activity"
 ;
-; RegisterView.php line: 355
-register_view_return = "Return to Yioop"
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = "%s Wiki Page Discussion"
 ;
-; SearchView.php line: 92
-search_view_title = "Yioop! PHP Search Engine"
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = "Feed"
 ;
-; SearchView.php line: 119
-search_view_input_label = "Enter the terms you would like to search the web for"
+; GroupfeedElement.php line: 160
+group_view_wiki = "Wiki"
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "Type what to find"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = "%s User Feed"
 ;
-; SearchView.php line: 126
-search_view_search = "Search"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = "Comment"
 ;
-; SearchView.php line: 155
-search_view_no_index_set = "No Default Index Set"
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = "wiki"
 ;
-; SearchView.php line: 164
-search_view_more_statistics = "More Statistics"
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = "%s posts, %s threads"
 ;
-; SearchView.php line: 201
-search_view_calculated = "%s seconds."
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = "Last Post:"
 ;
-; SearchView.php line: 203
-search_view_results = "Showing %s - %s of %s"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = "Comment"
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = "Thesaurus Results"
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = "Start New Thread"
 ;
-; SearchView.php line: 339
-search_view_word_cloud = "Words:"
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = "Start New Thread"
 ;
-; SearchView.php line: 380
-search_view_cache = "Cached"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = "This group has no posts yet!"
 ;
-; SearchView.php line: 382
-search_view_as_text = "View&nbsp;as&nbsp;text"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = "Thread does not exist! Maybe it was deleted?"
 ;
-; SearchView.php line: 393
-search_view_similar = "Similar"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = "Edit"
 ;
-; SearchView.php line: 402
-search_view_inlink = "Inlinks"
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = "Delete"
 ;
-; SearchView.php line: 419
-search_view_rank = "Rank:%s "
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = "%s posts"
 ;
-; SearchView.php line: 421
-search_view_relevancy = "Rel:%s "
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = "%s views"
 ;
-; SearchView.php line: 423
-search_view_proximity = "Prox:%s"
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = "Start New Thread in %s"
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = "Thesaurus: %s"
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = "Start New Thread in %s"
 ;
-; SearchView.php line: 436
-search_view_score = "Score:%s"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = "Last Edited: %s"
 ;
-; SettingsView.php line: 66
-settings_view_settings = "Settings"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = "Vote:"
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "Results/Page:"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = "Last Post:"
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = "Open in Tabs:"
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = "Comment"
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "Search Index:"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = "Drag items into the textarea to add them..."
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "Language:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = "or click to select them."
 ;
-; SettingsView.php line: 106
-settings_view_return = "Return"
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = "Add a Comment"
 ;
-; SettingsView.php line: 109
-settings_view_save = "Save Settings"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = "Save"
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = "Install Yioop! Open Search Plugin"
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = "Subject"
 ;
-; SigninView.php line: 68
-signin_view_signin = "Signin"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = "Post"
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = "Logging on"
+; GroupfeedElement.php line: 648
+groupfeed_element_save = "Save"
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = "Login Failed!"
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = "Edit Post"
 ;
-; SigninView.php line: 92
-signin_view_username = "Username"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = "Subject"
 ;
-; SigninView.php line: 99
-signin_view_password = "Password"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = "Post"
 ;
-; SigninView.php line: 109
-signin_view_login = "Login"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = "Save"
 ;
-; SigninView.php line: 124
-signin_view_recover_password = "Forgot Password?"
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = "Group Feeds No Longer Updating!"
 ;
-; SigninView.php line: 129
-signin_view_create_account = "Create Account"
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = "Back"
 ;
-; SigninView.php line: 133
-signin_view_return = "Return"
+; MachinelogElement.php line: 62
+machinelog_element_filter = "Filter:"
 ;
-; StaticView.php line: 68
-static_view_title = "PHP Search Engine - Yioop!"
+; MachinelogElement.php line: 69
+machinelog_element_log_file = "%s Log File"
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = "Statistics"
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = "Turn Auto Refresh Off"
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = "Calculating... Please be patient."
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = "Turn Auto Refresh On"
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = "Error Codes Seen"
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = "Toggle whether account information is editable"
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = "File Sizes Downloaded"
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = "Welcome, %s!"
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = "Average Links per Page"
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = "From this page you can access and control aspects of your account."
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = "Page Modified Dates"
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = "Account Details"
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = "DNS Lookup Time"
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = "User Icon"
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = "Page Download Time"
+; ManageaccountElement.php line: 117
+manageusers_element_username = "Username"
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = "Top Level Domains"
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = "First Name"
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = "File Extension"
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = "Last Name"
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = "Media Type"
+; ManageaccountElement.php line: 136
+manageusers_element_email = "Email"
 ;
-; StatisticsView.php line: 103
-statistics_view_language = "Web Page Language"
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = "Advertise With Us"
 ;
-; StatisticsView.php line: 104
-statistics_view_server = "Web Server"
+; ManageaccountElement.php line: 159
+manageaccount_element_password = "Password:"
 ;
-; StatisticsView.php line: 105
-statistics_view_os = "Operating System (if detected)"
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "New Password: "
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = "General Index Info"
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "Retype: "
 ;
-; StatisticsView.php line: 109
-statistics_view_description = "Index Description"
+; ManageaccountElement.php line: 184
+manageaccount_element_save = "Save"
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = "Timestamp"
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = "Language and Search Settings"
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = "Crawl Start Time"
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = "Crawls and Indexes"
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = "Downloaded Pages"
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = "Crawl and index the web or an existing archive and create a searchable index."
 ;
-; StatisticsView.php line: 117
-statistics_view_url = "Seen Urls"
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = "You have %s active crawls, %s previous crawl indexes."
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = "Hostnames Seen"
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = "Manage Crawls and Indexes"
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = "Suggest A URL"
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = "Groups and Feeds"
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = "Suggest a site for the next web crawl. Up to ten sites per day can be accepted."
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = "Create or subscribe to groups to communicate with friends."
 ;
-; SuggestView.php line: 95
-suggest_view_url = "URL:"
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = "You belong to %s groups."
 ;
-; SuggestView.php line: 109
-register_view_human_check = "Human Check:"
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = "You belong to 1 group."
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = "Human Check:"
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = "wiki"
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = "Submit"
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = "%s posts, %s threads"
 ;
-; SuggestView.php line: 173
-suggest_view_return = "Return to Yioop"
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = "Last Post:"
 ;
-; View.php line: 61
-view_locale_version14 = "Version 14"
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = "Join/Manage All Groups"
 ;
-; View.php line: 93
-view_logo_alt_text = "Yioop"
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = "See Combined Group Feeds"
 ;
-; WikiView.php line: 86
-wiki_view_read = "Read"
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = "Crawl Mixes"
 ;
-; WikiView.php line: 87
-wiki_view_edit = "Edit"
+; 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."
 ;
-; WikiView.php line: 90
-wiki_view_pages = "Pages"
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = "You have %s crawl mixes."
 ;
-; WikiView.php line: 135
-wiki_view_feed = "Feed"
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = "You have %s crawl mix."
 ;
-; WikiView.php line: 136
-wiki_view_wiki = "Wiki"
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = "Create/Manage Crawl Mixes"
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = "Advertisement List"
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = "Ad Name"
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "Activities"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = "Username"
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = "Use Wiki Public Main Page as Landing Page:"
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = "Keywords"
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = "Background Color:"
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = "Budget"
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = "Background Image:"
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = "Date"
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = "Background Image:"
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = "Views/Clicks"
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = "Foreground Color:"
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = "Status"
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = "Top Bar Color:"
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = "Actions"
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = "Side Bar Color:"
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = "Active"
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = "Site Logo:"
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = "Deactivated"
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = "Site Logo:"
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = "Suspended"
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = "Mobile Logo:"
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = "Completed"
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = "Mobile Logo:"
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = "Edit"
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = "Favicon:"
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = "Edit"
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = "Favicon:"
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = "Deactivate this ad?"
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = "Search Toolbar"
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = "Deactivate"
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = "Timezone:"
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = "Deactivate this ad?"
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = "Web Cookie Name:"
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = "Suspend"
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = "Web Token Name:"
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = "Reactivate this ad?"
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = "Auxiliary Style Directives"
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = "Reactivate"
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = "Reset Customizations"
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = "Create Advertisement form"
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = "Save"
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = "Advertisement Information"
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = "Search Engine Work Directory"
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = "Purchase Ad Listing"
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = "Load or Create"
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = "Ad Creator"
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = "Component Check"
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = "Ad Title"
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = "Profile Settings"
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = "Ad Body"
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = "Default Language:"
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = "Destination URL"
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = "Debug Display"
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = "Campaign Duration"
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = "Error Info"
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = "Start day is day of purchase."
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = "Query Info"
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = "Keywords"
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = "Test Info"
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = "Comma separated list of words"
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = "Search Access"
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = "Minimum Bid Required"
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = "Web"
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = "Expensive word"
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = "RSS"
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = "Calculate Bid"
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = "API"
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = "Update"
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = "Crawl Robot Set-up"
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = "Budget"
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = "Crawl Robot Name:"
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = "Card Number"
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = "Robot Instance:"
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = "CVC"
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = "Robot Description"
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = "Expiration"
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = "Save"
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = "Clicking Purchase charges the above card the Bid Amount in US dollars."
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "Back"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = "Ad Program Terms"
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = "Modify Active Crawl"
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = "Edit Ad"
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = "Edit Crawl Options"
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = "Purchase"
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = "Web Crawl"
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = "Preview"
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = "Archive Crawl"
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = "Search"
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = "Get Crawl Options From:"
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = "Create Advertisement form"
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = "Crawl Order:"
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = "Ad Name"
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = "Restrict Sites By Url:"
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = "Description"
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = "Allowed To Crawl Sites"
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = "Destination URL"
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = "Disallowed Sites/Sites with Quotas"
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = "Keywords"
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = "Seed Sites"
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = "Budget"
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = "Add User Suggest data"
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = "Start Date"
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = "Sites to Inject into Current Crawl"
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = "End Date"
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = "Add User Suggest data"
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = "Available Classifiers"
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = "Crawl or Arc Folder to Re-index:"
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = "Label"
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = "Seekquarry API access required for mix archive crawls  "
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = "Positive"
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "Save Options"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = "Negative"
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = "Back"
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = "Actions"
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = "Edit Classifier"
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = "Edit"
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = "Classifier Label:"
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = "Finalized"
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = "Change"
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = "Finalize"
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = "Statistics"
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = "Finalize"
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = "Positive Examples:"
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = "Finalizing"
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = "Negative Examples:"
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = "Are you sure you want to Delete?"
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = "Accuracy:"
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = "Delete"
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = "N/A"
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = "Manage Classifiers"
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = "Update"
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = "Name"
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = "Add Examples"
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = "Create"
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = "Source:"
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = "Search"
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = "Default Crawl"
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = "Create Classifier Form"
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = "Label By Hand"
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = "Name"
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = "All In Class"
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = "Create Crawl"
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = "None In Class"
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = "Name"
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = "Keywords:"
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = "Start New Crawl"
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = "Load"
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = "Options"
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = "Finalize"
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = "Awaiting Crawl Status"
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = "No Documents"
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = "Crawl Status No Longer Updating"
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = "Back"
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = "Not Subscribed to Groups"
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = "Edit Locale: %s"
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = "Subscribed Groups"
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = "Show:"
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = "Name"
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = "Filter:"
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = "Owner"
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = "Go"
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = "Register"
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = "No Matching Strings Left To Translate!"
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = "Access"
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = "Save"
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = "Voting"
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = "Back"
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = "Post Lifetime"
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = "Edit Crawl Mix"
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = "Actions"
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = "Mix Name"
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = "%s users"
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = "Mix Components"
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = "%s users"
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = "At Maximum Number of Search Fragments!"
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = "wiki"
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = "Add Search Result Fragment"
+; ManagegroupsElement.php line: 229
+managegroups_element_join = "Join"
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = "Save"
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = "Edit"
 ;
-; FooterElement.php line: 58
-footer_element_blog = "Blog"
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = "Edit"
 ;
-; FooterElement.php line: 60
-footer_element_privacy = "Privacy"
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = "Delete"
 ;
-; FooterElement.php line: 62
-footer_element_terms = "Terms"
+; ManagegroupsElement.php line: 249
+managegroups_element_join = "Join"
 ;
-; FooterElement.php line: 64
-footer_element_tools = "Tools"
+; ManagegroupsElement.php line: 254
+managegroups_element_join = "Join"
 ;
-; FooterElement.php line: 66
-footer_element_bot = "SeekquarryBot"
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = "Decline"
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = "Developed at SeekQuarry"
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = "Unsubscribe"
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = "(c) This Site"
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = "Are you sure you want to Delete?"
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = "This Search Engine"
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = "Delete"
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = "Add Group"
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = "Create/Join Group"
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = "Request Add Group"
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = "Edit Group"
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = "Edit Page"
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = "Create Group"
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = "My Group Feeds"
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = "Create/Join Group"
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = "My Group Feeds"
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = "Name"
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = "Group Activity"
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = "Browse"
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = "%s Wiki Page Discussion"
+; ManagegroupsElement.php line: 348
+managegroups_element_register = "Register"
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = "Feed"
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = "Access"
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = "Wiki"
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = "Voting"
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = "%s User Feed"
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = "Post Lifetime"
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = "Comment"
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = "Members"
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = "wiki"
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = "%s users"
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = "%s posts, %s threads"
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = "Owner"
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = "Last Post:"
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = "Delete"
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = "Comment"
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = "Activate"
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = "Start New Thread"
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = "Ban"
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = "Start New Thread"
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = "Reinstate"
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = "This group has no posts yet!"
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = "Delete"
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = "Thread does not exist! Maybe it was deleted?"
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = "Filter"
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = "Edit"
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = "Invite More Users"
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = "Delete"
+; ManagegroupsElement.php line: 503
+managegroups_element_save = "Save"
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = "%s posts"
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = "Edit Group"
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = "%s views"
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = "Invite Users to Group"
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = "Start New Thread in %s"
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = "Name"
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = "Start New Thread in %s"
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = "Usernames (space/comma delimited)"
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = "Last Edited: %s"
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = "Invite More Users"
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = "Vote:"
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = "Create/Join Group"
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = "Last Post:"
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = "Transfer Group Owner"
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = "Comment"
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = "Name"
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = "Drag items into the textarea to add them..."
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = "New Owner"
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = "or click to select them."
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = "Change Owner"
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = "Add a Comment"
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = "Discover Groups"
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = "Save"
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = "Search Subscribed Groups"
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = "Subject"
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = "Create/Join Group"
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = "Post"
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = "Name"
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = "Save"
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = "Owner"
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = "Edit Post"
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = "Register"
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = "Subject"
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = "Access"
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = "Post"
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = "Post Lifetime"
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = "Save"
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = "Locale List"
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = "Group Feeds No Longer Updating!"
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = "Name"
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = "Back"
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = "Tag"
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = "Filter:"
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = "Mode"
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = "%s Log File"
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = "Enabled"
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = "Turn Auto Refresh Off"
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = "Percent"
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = "Turn Auto Refresh On"
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = "Actions"
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = "Toggle whether account information is editable"
+; ManagelocalesElement.php line: 102
+managelocales_element_true = "true"
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = "Welcome, %s!"
+; ManagelocalesElement.php line: 103
+managelocales_element_false = "false"
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = "From this page you can access and control aspects of your account."
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = "Edit"
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = "Account Details"
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = "Are you sure you want to Delete?"
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = "User Icon"
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = "Delete"
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "Username"
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = "Add Locale Form"
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = "First Name"
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = "Edit Locale"
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = "Last Name"
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = "Add Locale"
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = "Email"
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = "Locale Name:"
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = "Advertise With Us"
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = "Locale Tag:"
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = "Password:"
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = "Writing Mode:"
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "New Password: "
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = "Locale Enabled:"
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "Retype: "
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = "Submit"
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = "Save"
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = "Search Locales"
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = "Language and Search Settings"
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = "Add Locale Form"
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = "Crawls and Indexes"
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = "Name"
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = "Crawl and index the web or an existing archive and create a searchable index."
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = "Tag"
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = "You have %s active crawls, %s previous crawl indexes."
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = "Mode"
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = "Manage Crawls and Indexes"
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = "Enabled"
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = "Groups and Feeds"
+; ManagelocalesElement.php line: 231
+managelocales_element_true = "true"
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = "Create or subscribe to groups to communicate with friends."
+; ManagelocalesElement.php line: 232
+managelocales_element_false = "false"
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = "You belong to %s groups."
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = "Add Machine"
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = "You belong to 1 group."
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = "Machine Name:"
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = "wiki"
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = "Machine Url:"
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = "%s posts, %s threads"
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = "Is Mirror:"
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = "Last Post:"
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = "Parent Name:"
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = "Join/Manage All Groups"
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = "Has Queue Server:"
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = "See Combined Group Feeds"
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = "Number of Fetchers:"
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = "Crawl Mixes"
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = "Submit"
 ;
-; 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."
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = "Machine Information"
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = "You have %s crawl mixes."
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = "Awaiting statuses of machines..."
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = "You have %s crawl mix."
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = "Machine status no longer updating..."
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = "Create/Manage Crawl Mixes"
+; ManagerolesElement.php line: 59
+manageroles_element_roles = "Role List"
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = "Advertisement List"
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = "Name"
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = "Ad Name"
+; ManagerolesElement.php line: 68
+manageroles_element_actions = "Actions"
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = "Username"
+; ManagerolesElement.php line: 94
+manageroles_element_edit = "Edit"
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = "Keywords"
+; ManagerolesElement.php line: 99
+manageroles_element_delete = "Delete"
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = "Budget"
+; ManagerolesElement.php line: 103
+confirm_delete_operation = "Are you sure you want to Delete?"
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = "Date"
+; ManagerolesElement.php line: 106
+manageroles_element_delete = "Delete"
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = "Views/Clicks"
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = "Add Role Form"
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = "Status"
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = "Role Information"
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = "Actions"
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "Add Role"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = "Active"
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = "Name"
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = "Deactivated"
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = "Activities"
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = "Suspended"
+; ManagerolesElement.php line: 175
+manageroles_element_delete = "Delete"
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = "Completed"
+; ManagerolesElement.php line: 183
+manageroles_element_delete = "Delete"
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = "Edit"
+; ManagerolesElement.php line: 203
+manageroles_element_save = "Save"
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = "Edit"
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = "Search"
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = "Deactivate this ad?"
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = "Add Role Form"
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = "Deactivate"
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = "Name"
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = "Deactivate this ad?"
+; ManageusersElement.php line: 59
+manageusers_element_users = "User List"
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = "Suspend"
+; ManageusersElement.php line: 68
+manageusers_element_username = "Username"
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = "Reactivate this ad?"
+; ManageusersElement.php line: 70
+manageusers_element_firstname = "First Name"
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = "Reactivate"
+; ManageusersElement.php line: 71
+manageusers_element_lastname = "Last Name"
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = "Create Advertisement form"
+; ManageusersElement.php line: 72
+manageusers_element_email = "Email"
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = "Advertisement Information"
+; ManageusersElement.php line: 73
+manageusers_element_groups = "Groups"
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = "Purchase Ad Listing"
+; ManageusersElement.php line: 75
+manageusers_element_status = "Status"
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = "Ad Creator"
+; ManageusersElement.php line: 76
+manageusers_element_actions = "Actions"
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = "Ad Title"
+; ManageusersElement.php line: 141
+manageusers_element_edit = "Edit"
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = "Ad Body"
+; ManageusersElement.php line: 145
+manageusers_element_edit = "Edit"
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = "Destination URL"
+; ManageusersElement.php line: 151
+manageusers_element_delete = "Delete"
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = "Campaign Duration"
+; ManageusersElement.php line: 155
+confirm_delete_operation = "Are you sure you want to Delete?"
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = "Start day is day of purchase."
+; ManageusersElement.php line: 158
+manageusers_element_delete = "Delete"
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = "Keywords"
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = "Add User Form"
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = "Comma separated list of words"
+; ManageusersElement.php line: 201
+manageusers_element_user_info = "User Information"
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = "Minimum Bid Required"
+; ManageusersElement.php line: 203
+manageusers_element_add_user = "Add User"
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = "Expensive word"
+; ManageusersElement.php line: 228
+manageusers_element_username = "Username"
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = "Calculate Bid"
+; ManageusersElement.php line: 238
+manageusers_element_firstname = "First Name"
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = "Update"
+; ManageusersElement.php line: 244
+manageusers_element_lastname = "Last Name"
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = "Budget"
+; ManageusersElement.php line: 250
+manageusers_element_email = "Email"
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = "Card Number"
+; ManageusersElement.php line: 257
+manageusers_element_status = "Status"
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = "CVC"
+; ManageusersElement.php line: 274
+manageusers_element_roles = "Roles"
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = "Expiration"
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = "%s roles"
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = "Clicking Purchase charges the above card the Bid Amount in US dollars."
+; ManageusersElement.php line: 293
+manageusers_element_delete = "Delete"
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = "Ad Program Terms"
+; ManageusersElement.php line: 303
+manageusers_element_delete = "Delete"
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = "Edit Ad"
+; ManageusersElement.php line: 344
+manageusers_element_filter = "Filter"
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = "Purchase"
+; ManageusersElement.php line: 357
+manageusers_element_add_role = "Add"
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = "Preview"
+; ManageusersElement.php line: 367
+manageusers_element_groups = "Groups"
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = "Search"
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = "%s groups"
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = "Create Advertisement form"
+; ManageusersElement.php line: 392
+manageusers_element_delete = "Delete"
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = "Ad Name"
+; ManageusersElement.php line: 431
+manageusers_element_filter = "Filter"
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = "Description"
+; ManageusersElement.php line: 443
+manageusers_element_add_group = "Add"
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = "Destination URL"
+; ManageusersElement.php line: 456
+manageusers_element_password = "Password"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = "Keywords"
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "Retype Password"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = "Budget"
+; ManageusersElement.php line: 469
+manageusers_element_save = "Save"
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = "Start Date"
+; ManageusersElement.php line: 496
+manageusers_element_search_user = "Search"
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = "End Date"
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = "Add User Form"
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = "Available Classifiers"
+; ManageusersElement.php line: 499
+manageusers_element_username = "Username"
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = "Label"
+; ManageusersElement.php line: 500
+manageusers_element_firstname = "First Name"
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = "Positive"
+; ManageusersElement.php line: 501
+manageusers_element_lastname = "Last Name"
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = "Negative"
+; ManageusersElement.php line: 502
+manageusers_element_email = "Email"
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = "Actions"
+; ManageusersElement.php line: 503
+manageusers_element_status = "Status"
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = "Edit"
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = "Available Mixes"
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = "Finalized"
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = "Name"
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = "Finalize"
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = "Definition"
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = "Finalize"
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = "Actions"
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = "Finalizing"
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = "Mix has no components yet"
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = "Are you sure you want to Delete?"
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = "Share"
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = "Delete"
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = "Edit"
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = "Manage Classifiers"
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = "Set as Index"
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = "Name"
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = "Search Index"
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = "Create"
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = "Are you sure you want to Delete?"
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = "Search"
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = "Delete"
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = "Create Classifier Form"
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = "Back"
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = "Name"
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = "Share Mix With A Group"
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = "Create Crawl"
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = "Mix Name"
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = "Name"
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = "Group:"
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = "Start New Crawl"
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = "Share"
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = "Options"
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = "Make a Crawl Mix"
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = "Awaiting Crawl Status"
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = "Mix Name"
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = "Crawl Status No Longer Updating"
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = "Create"
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = "Not Subscribed to Groups"
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = "Search"
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = "Subscribed Groups"
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = "Make a Mix Form"
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = "Name"
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = "Mix Name"
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = "Owner"
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = "Other Searches"
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = "Register"
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = "Previous"
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = "Access"
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = "Next"
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = "Voting"
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = "My Accounts"
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = "Post Lifetime"
+; MoreoptionsElement.php line: 142
+signin_element_settings = "Settings"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = "Actions"
+; MoreoptionsElement.php line: 151
+signin_element_signin = "Sign In"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = "%s users"
+; MoreoptionsElement.php line: 154
+signin_element_admin = "Admin"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = "%s users"
+; MoreoptionsElement.php line: 167
+signin_view_create_account = "Create Account"
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = "wiki"
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = "Suggest a URL"
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = "Join"
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = "Wiki Pages"
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = "Edit"
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = "Tools"
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = "Edit"
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = "Crawl Time"
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = "Delete"
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = "Search Time"
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = "Join"
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = "Test Options"
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = "Join"
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = "Get Page Options From:"
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = "Decline"
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = "Byte Range to Download (0 - Value):"
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = "Unsubscribe"
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = "Summarizer:"
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = "Are you sure you want to Delete?"
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = "Max Page Summary Length in Bytes:"
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = "Delete"
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = "Cache whole crawled pages:"
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = "Create/Join Group"
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = "Allow Page Recrawl After:"
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = "Edit Group"
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = "Page File Types to Crawl:"
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = "Create Group"
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = "Classifiers and Rankers"
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = "Create/Join Group"
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = "Use to Classify"
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = "Name"
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = "Use to Rank"
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = "Browse"
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = "No classifiers."
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = "Register"
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = "Indexing Plugins"
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = "Access"
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = "Plugin"
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = "Voting"
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = "Use in Crawl"
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = "Post Lifetime"
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = "Configure"
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = "Members"
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = "No compatible indexing plugins found!"
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = "%s users"
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = "Page Field Extraction Rules"
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = "Owner"
+; PageoptionsElement.php line: 247
+page_element_search_page = "Search Page Elements and Links"
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = "Delete"
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = "Word Suggest"
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = "Activate"
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = "Subsearch"
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = "Ban"
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = "Signin"
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = "Reinstate"
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = "Cache"
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = "Delete"
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = "Similar"
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = "Filter"
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = "Inlinks"
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = "Invite More Users"
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = "IP Address"
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = "Save"
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = "Search Ranking Factors"
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = "Edit Group"
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = "Title Weight:"
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = "Invite Users to Group"
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = "Description Weight:"
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = "Name"
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = "Link Weight:"
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = "Usernames (space/comma delimited)"
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = "Search Results Grouping"
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = "Invite More Users"
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = "Minimum Results to Group:"
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = "Create/Join Group"
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = "Server Alpha:"
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = "Transfer Group Owner"
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = "Test Page"
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = "Name"
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = "Type:"
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = "New Owner"
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = "Save"
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = "Change Owner"
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = "Test Process Page"
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = "Discover Groups"
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = "Test Results"
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = "Search Subscribed Groups"
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = "Page truncated from %s to %s bytes."
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = "Create/Join Group"
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = "After page processor extracts summary"
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = "Name"
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = "After page rules applied"
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = "Owner"
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = "Words and positions extracted to index from summary"
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = "Register"
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = "Extracted meta words"
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = "Access"
+; PageoptionsElement.php line: 417
+page_element_plugin_back = "Back"
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = "Post Lifetime"
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = "Test Process Page"
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = "Locale List"
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = "Save"
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = "Name"
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = "Edit Result Page"
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = "Tag"
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = "Edited Urls:"
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = "Mode"
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = "Select a previously edited summary"
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = "Enabled"
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = "Load"
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = "Percent"
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = "URL:"
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = "Actions"
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = "Title:"
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = "true"
+; ResultseditorElement.php line: 93
+resultseditor_element_description = "Description"
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = "false"
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = "Reset"
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = "Edit"
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = "Save Page"
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = "Are you sure you want to Delete?"
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = "Filter Websites from Results"
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = "Delete"
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = "Sites to Filter"
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = "Add Locale Form"
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = "Save Filter"
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = "Edit Locale"
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = "Add Source Form"
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = "Add Locale"
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = "Edit Media Source"
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = "Locale Name:"
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = "Add Media Source"
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = "Locale Tag:"
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = "Type:"
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = "Writing Mode:"
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = "Name:"
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = "Locale Enabled:"
+; SearchsourcesElement.php line: 104
+searchsources_element_url = "URL:"
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = "Submit"
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = "Language:"
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = "Search Locales"
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = "Thumb:"
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = "Add Locale Form"
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = "Provide xpaths to news feed components below:"
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = "Name"
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = "Channel:"
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = "Tag"
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = "Item:"
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = "Mode"
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = "Title:"
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = "Enabled"
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = "Description:"
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = "true"
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = "Link:"
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = "false"
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = "Image XPath:"
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = "Add Machine"
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = "Submit"
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = "Machine Name:"
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = "Media Sources"
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = "Machine Url:"
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = "Name"
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = "Is Mirror:"
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = "Type"
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = "Parent Name:"
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = "Urls"
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = "Has Queue Server:"
+; SearchsourcesElement.php line: 199
+searchsources_element_action = "Action"
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = "Number of Fetchers:"
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = "Edit"
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = "Submit"
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = "Are you sure you want to Delete?"
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = "Machine Information"
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = "Delete"
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = "Awaiting statuses of machines..."
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = "Add Subsearch Form"
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = "Machine status no longer updating..."
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = "Edit Subsearch"
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = "Role List"
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = "Add a Subsearch"
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = "Name"
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = "Folder Name:"
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = "Actions"
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = "Index Source:"
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = "Edit"
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = "Results Per Page:"
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = "Delete"
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = "Submit"
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = "Are you sure you want to Delete?"
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = "Current Subsearches"
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = "Delete"
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = "Folder Name"
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = "Add Role Form"
+; SearchsourcesElement.php line: 303
+searchsources_element_index = "Index"
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = "Role Information"
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = "Localization Identifier"
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "Add Role"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = "Results/Page"
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = "Name"
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = "Actions"
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = "Activities"
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = "Edit"
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = "Delete"
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = "Localize"
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = "Delete"
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = "Localize"
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = "Save"
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = "Delete"
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = "Search"
+; SecurityElement.php line: 58
+security_element_auth_captcha = "Authentication and Captcha Types"
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = "Add Role Form"
+; SecurityElement.php line: 69
+security_element_authentication_type = "Authentication Type"
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = "Name"
+; SecurityElement.php line: 81
+security_element_zero_unavailable = "BC Math nZero Knowledge Authentication Needs OpenSSL or BC Math!"
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = "User List"
+; SecurityElement.php line: 90
+security_element_captcha_type = "Captcha Type"
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "Username"
+; SecurityElement.php line: 103
+security_element_save = "Save"
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = "First Name"
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = "Captcha and Recovery Questions"
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = "Last Name"
+; SecurityElement.php line: 113
+security_element_edit_recovery = "Edit Account Recovery Questions"
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = "Email"
+; SecurityElement.php line: 118
+security_element_edit_captcha = "Edit Text Captcha Questions"
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = "Groups"
+; SecurityElement.php line: 123
+security_element_edit_recovery = "Edit Account Recovery Questions"
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = "Status"
+; SecurityElement.php line: 126
+security_element_edit_captcha = "Edit Text Captcha Questions"
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = "Actions"
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = "Servers and Registration"
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = "Edit"
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = "Name Server Set-up"
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = "Edit"
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = "Server Key:"
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = "Delete"
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = "Name Server URL:"
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = "Are you sure you want to Delete?"
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = "Use Memcache:"
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = "Delete"
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = "Memcache Servers"
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = "Add User Form"
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = "Use Filecache:"
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = "User Information"
+; ServersettingsElement.php line: 110
+configure_element_database_setup = "Database Set-up"
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = "Add User"
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = "Database System:"
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "Username"
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = "Database Name:"
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = "First Name"
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = "Hostname:"
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = "Last Name"
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = "Database User:"
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = "Email"
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = "Database Password:"
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = "Status"
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = "Account Registration"
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = "Roles"
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = "Sender Email:"
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = "%s roles"
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = "Send Mail From Media Updater"
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = "Delete"
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = "Use PHP mail() function"
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = "Delete"
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = "SMTP Server:"
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = "Filter"
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = "Server Port:"
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = "Add"
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = "Mail Username:"
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = "Groups"
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = "Mail Password:"
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = "%s groups"
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = "Mail Security:"
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = "Delete"
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = "Proxy Servers"
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = "Filter"
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = "Tor Proxy  (.onion urls only):"
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = "Add"
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = "Crawl via Proxies"
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "Password"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = "Proxy Servers (One per line. Format: address:port or address:port:proxytype)"
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "Retype Password"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = "Ad Server Configuration"
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = "Save"
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = "Advertising Source"
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = "Search"
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = "No Ad Payment Processing Script Configured"
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = "Add User Form"
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = "Purchase Payment Scripts At Seekquarry.com"
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "Username"
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = "Ad Location"
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = "First Name"
+; ServersettingsElement.php line: 287
+serversettings_element_top = "Top"
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = "Last Name"
+; ServersettingsElement.php line: 292
+serversettings_element_side = "Side"
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = "Email"
+; ServersettingsElement.php line: 297
+serversettings_element_both = "Both"
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = "Status"
+; ServersettingsElement.php line: 302
+serversettings_element_none = "None"
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = "Available Mixes"
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = "Global Ad Script"
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = "Name"
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = "Top Ad Script"
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = "Definition"
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = "Side Ad Script"
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = "Actions"
+; ServersettingsElement.php line: 329
+serversettings_element_save = "Save"
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = "Mix has no components yet"
+; SigninElement.php line: 73
+signin_element_settings = "Settings"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = "Share"
+; SigninElement.php line: 77
+signin_element_signin = "Sign In"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = "Edit"
+; SigninElement.php line: 81
+signin_element_signout = "Sign Out"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = "Set as Index"
+; SubsearchElement.php line: 69
+subsearch_element_more = "More"
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = "Search Index"
+; WikiElement.php line: 121
+wiki_view_back = "Back"
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = "Are you sure you want to Delete?"
+; WikiElement.php line: 139
+groupfeed_element_feed = "Feed"
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = "Delete"
+; WikiElement.php line: 140
+wiki_view_wiki = "Wiki"
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = "Back"
+; WikiElement.php line: 144
+wiki_view_page = "%s Page"
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = "Share Mix With A Group"
+; WikiElement.php line: 148
+wiki_view_read = "Read"
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = "Mix Name"
+; WikiElement.php line: 149
+wiki_view_edit = "Edit"
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = "Group:"
+; WikiElement.php line: 152
+wiki_view_pages = "Pages"
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = "Share"
+; WikiElement.php line: 237
+wiki_element_redirect_to = "Redirects to:"
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = "Make a Crawl Mix"
+; WikiElement.php line: 245
+wiki_view_page_no_exist = "%s page does not exist."
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = "Mix Name"
+; WikiElement.php line: 246
+wiki_view_create_edit = "You can create this page by clicking on the edit link above."
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = "Create"
+; WikiElement.php line: 247
+wiki_view_use_form_below = "Or you can use the form below to create or edit a different page."
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = "Search"
+; WikiElement.php line: 259
+wiki_element_submit = "Submit"
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = "Make a Mix Form"
+; WikiElement.php line: 265
+wiki_view_syntax_summary = "Wiki Syntax Guide"
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = "Mix Name"
+; WikiElement.php line: 268
+wiki_view_page_no_exist = "%s page does not exist."
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = "Other Searches"
+; 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."
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = "Previous"
+; WikiElement.php line: 272
+wiki_view_page_no_exist = "%s page does not exist."
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = "Next"
+; WikiElement.php line: 302
+wiki_element_history = "History"
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = "My Accounts"
+; WikiElement.php line: 306
+wiki_element_discuss = "Discuss"
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "Settings"
+; WikiElement.php line: 342
+wiki_element_locale_name = "Locale: %s"
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "Sign In"
+; WikiElement.php line: 346
+wiki_element_page = "Page: %s"
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "Admin"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = "Settings"
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = "Create Account"
+; WikiElement.php line: 353
+wiki_element_page_type = "Page Type:"
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = "Suggest a URL"
+; WikiElement.php line: 361
+wiki_element_page_alias = "Alias Page To:"
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = "Wiki Pages"
+; WikiElement.php line: 369
+wiki_element_page_border = "Page Border:"
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = "Tools"
+; WikiElement.php line: 376
+wiki_element_table_of_contents = "Table of Contents:"
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = "Crawl Time"
+; WikiElement.php line: 385
+wiki_element_title = "Title:"
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = "Search Time"
+; WikiElement.php line: 391
+wiki_element_meta_author = "Author:"
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = "Test Options"
+; WikiElement.php line: 397
+wiki_element_meta_robots = "Meta Robots:"
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = "Get Page Options From:"
+; WikiElement.php line: 404
+wiki_element_meta_description = "Meta Description:"
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = "Byte Range to Download (0 - Value):"
+; WikiElement.php line: 411
+wiki_element_page_header = "Header Page Name:"
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = "Summarizer:"
+; WikiElement.php line: 417
+wiki_element_page_footer = "Footer Page Name:"
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = "Max Page Summary Length in Bytes:"
+; 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."
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = "Cache whole crawled pages:"
+; WikiElement.php line: 443
+wiki_element_edit_reason = "Edit Reason:"
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = "Allow Page Recrawl After:"
+; WikiElement.php line: 450
+wiki_element_savebutton = "Save"
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = "Page File Types to Crawl:"
+; WikiElement.php line: 454
+wiki_element_media_list = "Media List Page"
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = "Classifiers and Rankers"
+; 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."
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = "Use to Classify"
+; WikiElement.php line: 458
+wiki_view_page_resources = "Page Resources"
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = "Use to Rank"
+; WikiElement.php line: 493
+wiki_view_upload = "Upload"
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = "No classifiers."
+; WikiElement.php line: 497
+wiki_element_resources_info = "Resources are images, videos, or files associated with this page."
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = "Indexing Plugins"
+; WikiElement.php line: 512
+wiki_element_rename_failed = "Rename Failed!"
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = "Plugin"
+; WikiElement.php line: 578
+wiki_element_rename = "Rename"
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = "Use in Crawl"
+; WikiElement.php line: 582
+wiki_element_add_to_page = "Add to Page"
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = "Configure"
+; WikiElement.php line: 602
+wiki_element_no_resources = "No resources have been saved to this page yet."
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = "No compatible indexing plugins found!"
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = "%s Group Wiki Page List"
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = "Page Field Extraction Rules"
+; WikiElement.php line: 637
+wiki_view_filter_or_create = "Search group page titles"
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = "Search Page Elements and Links"
+; WikiElement.php line: 639
+wiki_element_go = "Go"
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = "Word Suggest"
+; WikiElement.php line: 644
+wiki_view_create_page = "Create Page: %s"
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = "Subsearch"
+; WikiElement.php line: 655
+wiki_element_redirect_to = "Redirects to:"
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = "Signin"
+; 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."
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = "Cache"
+; WikiElement.php line: 700
+wiki_view_back = "Back"
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = "Similar"
+; WikiElement.php line: 716
+wiki_view_difference = "Difference:"
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = "Inlinks"
+; WikiElement.php line: 722
+wiki_view_go = "Go"
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = "IP Address"
+; WikiElement.php line: 741
+wiki_view_diff_first = "First"
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = "Search Ranking Factors"
+; WikiElement.php line: 743
+wiki_view_diff_second = "Second"
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = "Title Weight:"
+; WikiElement.php line: 747
+wiki_view_diff_first = "First"
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = "Description Weight:"
+; WikiElement.php line: 748
+wiki_view_diff_second = "Second"
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = "Link Weight:"
+; WikiElement.php line: 754
+wiki_view_edited_by = "Edited by %s. "
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = "Search Results Grouping"
+; WikiElement.php line: 758
+wiki_view_page_len = "(%s bytes)."
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = "Minimum Results to Group:"
+; WikiElement.php line: 760
+wiki_view_revert = "Revert"
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = "Server Alpha:"
+; WikiElement.php line: 763
+wiki_view_revert = "Revert"
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = "Test Page"
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = "%s Wiki Page Discussion"
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = "Type:"
+; GroupView.php line: 96
+group_view_feed = "Feed"
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = "Save"
+; GroupView.php line: 104
+group_view_wiki = "Wiki"
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = "Test Process Page"
+; GroupView.php line: 106
+group_view_user = "%s User"
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = "Test Results"
+; GroupView.php line: 109
+group_view_myfeeds = "My Feeds"
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = "Page truncated from %s to %s bytes."
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = "After page processor extracts summary"
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = "After page rules applied"
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = "News Results for %s"
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = "Words and positions extracted to index from summary"
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = "1 hour ago"
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = "Extracted meta words"
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = "%s m %s s ago"
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = "Back"
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = "%s hours ago"
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = "Test Process Page"
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = "Drag items into the textarea to add them..."
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = "Save"
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = "or click to select them."
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = "Edit Result Page"
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = "Drag or ..."
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = "Edited Urls:"
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = "choose."
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = "Select a previously edited summary"
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = "Invalid Filetype!"
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = "Load"
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = "File Size is Too Big!"
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = "URL:"
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = "Upload Progress: "
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = "Title:"
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = "Upload Progress Meter Disabled"
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = "Description"
+; FileuploadHelper.php line: 125
+basic_js_upload_error = "Upload Error!"
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = "Reset"
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = "Upload Canceled!"
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = "Save Page"
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = "Trying to add too many files!"
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = "Filter Websites from Results"
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = "?"
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = "Sites to Filter"
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = "Edit"
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = "Save Filter"
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = "Unable to load Help article!"
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = "Add Source Form"
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = "You can create this page by clicking on the edit link above."
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = "Edit Media Source"
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = "%s page does not exist."
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = "Add Media Source"
+; HelpbuttonHelper.php line: 145
+wiki_view_read = "Read"
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = "Type:"
+; ImagesHelper.php line: 55
+images_helper_view_image_results = "View More Image Results..."
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = "Name:"
+; PaginationHelper.php line: 97
+pagination_helper_previous = "Prev"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = "URL:"
+; PaginationHelper.php line: 121
+pagination_helper_next = "Next"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = "Language:"
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = "Search"
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = "Thumb:"
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = "Show"
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = "Provide xpaths to news feed components below:"
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = "Row %s to %s of %s"
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = "Channel:"
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = "Row %s to %s of %s"
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = "Item:"
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = "Show"
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = "Title:"
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = "Search"
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = "Description:"
+; SearchformHelper.php line: 119
+searchform_helper_any = "Any"
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = "Link:"
+; SearchformHelper.php line: 148
+searchform_helper_search = "Search"
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = "Image XPath:"
+; ToggleHelper.php line: 59
+toggle_helper_on = "On"
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = "Submit"
+; ToggleHelper.php line: 61
+toggle_helper_off = "Off"
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = "Media Sources"
+; ToggleHelper.php line: 65
+toggle_helper_on = "On"
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = "Name"
+; ToggleHelper.php line: 67
+toggle_helper_off = "Off"
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = "Type"
+; ToggleHelper.php line: 71
+toggle_helper_on = "On"
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = "Urls"
+; ToggleHelper.php line: 73
+toggle_helper_off = "Off"
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = "Action"
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = "Edit"
+; RssLayout.php line: 62
+rss_layout_title = "Open Source Search Engine - Seekquarry : %s"
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = "Are you sure you want to Delete?"
+; RssLayout.php line: 69
+rss_layout_description = "Search results for: %s"
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = "Delete"
+; WebLayout.php line: 63
+web_layout_title = "Open Source Search Engine - Seekquarry"
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = "Add Subsearch Form"
+; WebLayout.php line: 73
+web_layout_description = "Free and Open Source Crawler and Search Engine Software"
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = "Edit Subsearch"
+; WebLayout.php line: 75
+web_layout_site_author = "Chris Pollett"
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = "Add a Subsearch"
+; WebLayout.php line: 219
+web_layout_query_statistics = "Query Statistics"
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = "Folder Name:"
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = "Total Elapsed Time for Queries: %s seconds."
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = "Index Source:"
+; WebLayout.php line: 228
+web_layout_query_time = "Time: %s seconds."
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = "Results Per Page:"
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = "No Monitored Machines"
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = "Submit"
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = "Media Updater Mode:"
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = "Current Subsearches"
+; MachinestatusView.php line: 73
+machinestatus_name_server = "Name Server"
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = "Folder Name"
+; MachinestatusView.php line: 75
+machinestatus_distributed = "Distributed"
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = "Index"
+; MachinestatusView.php line: 78
+machinestatus_name_server = "Name Server"
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = "Localization Identifier"
+; MachinestatusView.php line: 80
+machinestatus_distributed = "Distributed"
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = "Results/Page"
+; MachinestatusView.php line: 85
+machinestatus_name_server = "Name Server"
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = "Actions"
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = "Media Updater"
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = "Edit"
+; MachinestatusView.php line: 96
+machinestatus_view_log = "Log"
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = "Localize"
+; MachinestatusView.php line: 125
+confirm_delete_operation = "Are you sure you want to Delete?"
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = "Localize"
+; MachinestatusView.php line: 126
+machinestatus_view_delete = "Delete"
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = "Delete"
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = "Machine Not Configured!"
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = "Authentication and Captcha Types"
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = "Mirrors"
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = "Authentication Type"
+; MachinestatusView.php line: 161
+machinestatus_view_log = "Log"
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = "BC Math nZero Knowledge Authentication Needs OpenSSL or BC Math!"
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = "Queue Server"
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = "Captcha Type"
+; MachinestatusView.php line: 179
+machinestatus_view_log = "Log"
 ;
-; SecurityElement.php line: 103
-security_element_save = "Save"
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = "Queue Server"
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = "Captcha and Recovery Questions"
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = "Machine has no queue server"
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = "Edit Account Recovery Questions"
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = "Media Updater"
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = "Edit Text Captcha Questions"
+; MachinestatusView.php line: 207
+machinestatus_view_log = "Log"
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = "Edit Account Recovery Questions"
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = "Machine has no fetchers"
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = "Edit Text Captcha Questions"
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = "Fetchers"
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = "Servers and Registration"
+; MachinestatusView.php line: 248
+machinestatus_view_log = "Log"
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = "Name Server Set-up"
+; NocacheView.php line: 54
+nocache_view_no_cache = "Did not have cache of requested item."
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = "Server Key:"
+; NocacheView.php line: 59
+nocache_view_summary_contents = "Summary Data stored in Seekquarry for Item"
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = "Name Server URL:"
+; RecoverView.php line: 71
+recover_view_recover_password = "Recover Account"
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = "Use Memcache:"
+; RecoverView.php line: 104
+register_view_new_password = "New Password"
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = "Memcache Servers"
+; RecoverView.php line: 116
+register_view_retypepassword = "Re-type password:"
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = "Use Filecache:"
+; RecoverView.php line: 131
+recover_view_username = "Username:"
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = "Database Set-up"
+; RecoverView.php line: 146
+register_view_account_recovery = "Recovery Info:"
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = "Database System:"
+; RecoverView.php line: 153
+register_view_human_check = "Human Check:"
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = "Database Name:"
+; RecoverView.php line: 185
+register_view_human_check = "Human Check:"
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = "Hostname:"
+; RecoverView.php line: 202
+recover_view_recover_password = "Recover Account"
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = "Database User:"
+; RecoverView.php line: 211
+recover_view_return = "Return to Yioop"
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = "Database Password:"
+; RegisterView.php line: 76
+register_view_question0_most = "Which lives or lasts the longest?"
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = "Account Registration"
+; RegisterView.php line: 77
+register_view_question0_least = "Which lives or lasts the shortest?"
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = "Sender Email:"
+; RegisterView.php line: 78
+register_view_question0_choices = "lightning,bacteria,ant,dog,horse,person,oak tree,planet,star,galaxy"
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = "Send Mail From Media Updater"
+; RegisterView.php line: 79
+register_view_question1_most = "Which is more abundant?"
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = "Use PHP mail() function"
+; RegisterView.php line: 80
+register_view_question1_least = "Which is less abundant?"
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = "SMTP Server:"
+; RegisterView.php line: 81
+register_view_question1_choices = "continents,countries,subways,cities,doctors,people,hands,teeth,hair,cells,molecules,atoms,protons"
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = "Server Port:"
+; RegisterView.php line: 82
+register_view_question2_most = "Which is usually more pricey?"
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = "Mail Username:"
+; RegisterView.php line: 83
+register_view_question2_least = "Which is usually less pricey?"
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = "Mail Password:"
+; RegisterView.php line: 84
+register_view_question2_choices = "a postage stamp,cup of coffee,movie ticket,shoes,bicycle,one month&#039;s rent,car,house,a power plant"
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = "Mail Security:"
+; RegisterView.php line: 85
+register_view_question3_most = "Which is more round?"
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = "Proxy Servers"
+; RegisterView.php line: 86
+register_view_question3_least = "Which is less round?"
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = "Tor Proxy  (.onion urls only):"
+; RegisterView.php line: 87
+register_view_question3_choices = "a chair,the letter T,a banana,a pear,an apple,an orange,a sphere"
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = "Crawl via Proxies"
+; RegisterView.php line: 88
+register_view_question4_most = "Which is usually the largest?"
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = "Proxy Servers (One per line. Format: address:port or address:port:proxytype)"
+; RegisterView.php line: 89
+register_view_question4_least = "Which is usually the smallest?"
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = "Ad Server Configuration"
+; RegisterView.php line: 90
+register_view_question4_choices = "a coin,a baseball,a milk gallon,shopping cart,refrigerator,giraffe,house,volcano,the Moon,the Earth"
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = "Advertising Source"
+; RegisterView.php line: 91
+register_view_question5_most = "Which is taller?"
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = "No Ad Payment Processing Script Configured"
+; RegisterView.php line: 92
+register_view_question5_least = "Which is shorter?"
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = "Purchase Payment Scripts At Seekquarry.com"
+; RegisterView.php line: 93
+register_view_question5_choices = "ladybug,mouse,cat,toddler,man,horse,elephant,giraffe,tall building,mountain"
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = "Ad Location"
+; RegisterView.php line: 94
+register_view_question6_most = "Which takes longer?"
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = "Top"
+; RegisterView.php line: 95
+register_view_question6_least = "Which takes less time?"
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = "Side"
+; RegisterView.php line: 96
+register_view_question6_choices = "blink,lick envelope,comb hair,apply makeup,watch a movie,run marathon,olympics,summer vacation,year"
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = "Both"
+; RegisterView.php line: 97
+register_view_question7_most = "Which is hotter sounding?"
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = "None"
+; RegisterView.php line: 98
+register_view_question7_least = "Which is colder sounding?"
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = "Global Ad Script"
+; RegisterView.php line: 99
+register_view_question7_choices = "Pluto,polar exploring,skating,swimming pool,tea,steam,molten iron,sun"
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = "Top Ad Script"
+; RegisterView.php line: 100
+register_view_question8_most = "Which is the oldest?"
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = "Side Ad Script"
+; RegisterView.php line: 101
+register_view_question8_least = "Which is the newest?"
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = "Save"
+; RegisterView.php line: 102
+register_view_question8_choices = "fresh milk,current president,your grandparents,Flight at Kitty Hawk,the Black Death,Egyptian Pyramids,writing,cave paintings,dinosaurs"
 ;
-; SigninElement.php line: 73
-signin_element_settings = "Settings"
+; RegisterView.php line: 103
+register_view_question9_most = "Which holds more?"
 ;
-; SigninElement.php line: 77
-signin_element_signin = "Sign In"
+; RegisterView.php line: 104
+register_view_question9_least = "Which holds less?"
 ;
-; SigninElement.php line: 81
-signin_element_signout = "Sign Out"
+; RegisterView.php line: 105
+register_view_question9_choices = "teaspoon,saucer,cup,bowl,teapot,wash basin,barrel,pickup truck,moving van,oil tanker"
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = "More"
+; RegisterView.php line: 108
+register_view_recovery1_more = "Animal you like the best:"
 ;
-; WikiElement.php line: 121
-wiki_view_back = "Back"
+; RegisterView.php line: 109
+register_view_recovery1_less = "Animal you like the least:"
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = "Feed"
+; RegisterView.php line: 110
+register_view_recovery1_choices = "ant,bunny,cat,cockroach,dog,goldfish,hamster,horse,snake,spider,tiger,whale"
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = "Wiki"
+; RegisterView.php line: 111
+register_view_recovery2_more = "Color you like the most:"
 ;
-; WikiElement.php line: 144
-wiki_view_page = "%s Page"
+; RegisterView.php line: 112
+register_view_recovery2_less = "Color you like the least:"
 ;
-; WikiElement.php line: 148
-wiki_view_read = "Read"
+; RegisterView.php line: 113
+register_view_recovery2_choices = "no color,aquamarine,blue,brown,gold,green,gray,mauve,pink,periwinkle,purple,red,silver,turquoise,yellow"
 ;
-; WikiElement.php line: 149
-wiki_view_edit = "Edit"
+; RegisterView.php line: 114
+register_view_recovery3_more = "Food you like the most:"
 ;
-; WikiElement.php line: 152
-wiki_view_pages = "Pages"
+; RegisterView.php line: 115
+register_view_recovery3_less = "Food you like the least:"
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = "Redirects to:"
+; RegisterView.php line: 116
+register_view_recovery3_choices = "apple,banana,chicken,fish,lamb,nuts,orange,pork,potato,tomato,steak"
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = "%s page does not exist."
+; RegisterView.php line: 117
+register_view_recovery4_more = "Drink you like the most:"
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = "You can create this page by clicking on the edit link above."
+; RegisterView.php line: 118
+register_view_recovery4_less = "Drink you like the least:"
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = "Or you can use the form below to create or edit a different page."
+; RegisterView.php line: 119
+register_view_recovery4_choices = "apple juice,beer,coffee,hot tea,ice tea,lemonade,orange juice,soda,sparkling water,still water,wine"
 ;
-; WikiElement.php line: 259
-wiki_element_submit = "Submit"
+; RegisterView.php line: 120
+register_view_recovery5_more = "Game you like the most:"
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = "Wiki Syntax Guide"
+; RegisterView.php line: 121
+register_view_recovery5_less = "Game you like the least:"
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = "%s page does not exist."
+; RegisterView.php line: 122
+register_view_recovery5_choices = "basketball,backgammon,checkers,chess,football,hockey,skate,ski,tennis,volleyball"
 ;
-; 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."
+; RegisterView.php line: 123
+register_view_recovery6_more = "Sound you like the most:"
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = "%s page does not exist."
+; RegisterView.php line: 124
+register_view_recovery6_less = "Sound you like the least:"
 ;
-; WikiElement.php line: 302
-wiki_element_history = "History"
+; RegisterView.php line: 125
+register_view_recovery6_choices = "accordian,drum,flute,guitar,harmonica,harp,horn,oboe,piano,triangle,trumpet,violin,whistle,xylophone"
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = "Discuss"
+; RegisterView.php line: 153
+register_view_create_account = "Create Account"
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = "Locale: %s"
+; RegisterView.php line: 190
+register_view_firstname = "First Name:"
 ;
-; WikiElement.php line: 346
-wiki_element_page = "Page: %s"
+; RegisterView.php line: 205
+register_view_lastname = "Last Name:"
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = "Settings"
+; RegisterView.php line: 219
+register_view_username = "Username:"
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = "Page Type:"
+; RegisterView.php line: 232
+register_view_email = "Email:"
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = "Alias Page To:"
+; RegisterView.php line: 246
+register_view_password = "Password:"
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = "Page Border:"
+; RegisterView.php line: 261
+register_view_retypepassword = "Re-type password:"
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = "Table of Contents:"
+; RegisterView.php line: 277
+register_view_account_recovery = "Recovery Info:"
 ;
-; WikiElement.php line: 385
-wiki_element_title = "Title:"
+; RegisterView.php line: 281
+register_view_human_check = "Human Check:"
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = "Author:"
+; RegisterView.php line: 283
+register_view_account_recovery = "Recovery Info:"
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = "Meta Robots:"
+; RegisterView.php line: 315
+register_view_human_check = "Human Check:"
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = "Meta Description:"
+; RegisterView.php line: 329
+register_view_i_agree = "By clicking Create Account, I agree to the"
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = "Header Page Name:"
+; RegisterView.php line: 331
+register_view_terms = "Yioop Terms"
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = "Footer Page Name:"
+; RegisterView.php line: 333
+register_view_and = "and"
 ;
-; 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."
+; RegisterView.php line: 335
+register_view_privacy = "Privacy Policy"
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = "Edit Reason:"
+; RegisterView.php line: 336
+register_view_period = "."
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = "Save"
+; RegisterView.php line: 346
+register_view_create_account = "Create Account"
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = "Media List Page"
+; RegisterView.php line: 355
+register_view_return = "Return to Yioop"
 ;
-; 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."
+; SearchView.php line: 92
+search_view_title = "Yioop! PHP Search Engine"
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = "Page Resources"
+; SearchView.php line: 119
+search_view_input_label = "Enter the terms you would like to search the web for"
 ;
-; WikiElement.php line: 493
-wiki_view_upload = "Upload"
+; SearchView.php line: 123
+search_view_input_placeholder = "Type what to find"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = "Resources are images, videos, or files associated with this page."
+; SearchView.php line: 126
+search_view_search = "Search"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = "Rename Failed!"
+; SearchView.php line: 155
+search_view_no_index_set = "No Default Index Set"
 ;
-; WikiElement.php line: 578
-wiki_element_rename = "Rename"
+; SearchView.php line: 164
+search_view_more_statistics = "More Statistics"
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = "Add to Page"
+; SearchView.php line: 201
+search_view_calculated = "%s seconds."
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = "No resources have been saved to this page yet."
+; SearchView.php line: 203
+search_view_results = "Showing %s - %s of %s"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = "%s Group Wiki Page List"
+; SearchView.php line: 229
+search_view_thesaurus_results = "Thesaurus Results"
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = "Search group page titles"
+; SearchView.php line: 339
+search_view_word_cloud = "Words:"
 ;
-; WikiElement.php line: 639
-wiki_element_go = "Go"
+; SearchView.php line: 380
+search_view_cache = "Cached"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = "Create Page: %s"
+; SearchView.php line: 382
+search_view_as_text = "View&nbsp;as&nbsp;text"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = "Redirects to:"
+; SearchView.php line: 393
+search_view_similar = "Similar"
 ;
-; 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."
+; SearchView.php line: 402
+search_view_inlink = "Inlinks"
 ;
-; WikiElement.php line: 700
-wiki_view_back = "Back"
+; SearchView.php line: 419
+search_view_rank = "Rank:%s "
 ;
-; WikiElement.php line: 716
-wiki_view_difference = "Difference:"
+; SearchView.php line: 421
+search_view_relevancy = "Rel:%s "
 ;
-; WikiElement.php line: 722
-wiki_view_go = "Go"
+; SearchView.php line: 423
+search_view_proximity = "Prox:%s"
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = "First"
+; SearchView.php line: 427
+search_view_thesaurus_score = "Thesaurus: %s"
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = "Second"
+; SearchView.php line: 436
+search_view_score = "Score:%s"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = "First"
+; SettingsView.php line: 66
+settings_view_settings = "Settings"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = "Second"
+; SettingsView.php line: 73
+settings_view_results_per_page = "Results/Page:"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = "Edited by %s. "
+; SettingsView.php line: 79
+settings_view_open_in_tabs = "Open in Tabs:"
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = "(%s bytes)."
+; SettingsView.php line: 86
+settings_view_search_index = "Search Index:"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = "Revert"
+; SettingsView.php line: 92
+settings_view_language_label = "Language:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = "Revert"
+; SettingsView.php line: 106
+settings_view_return = "Return"
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "Save Settings"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = "News Results for %s"
+; SettingsView.php line: 116
+settings_install_search_plugin = "Install Yioop! Open Search Plugin"
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = "1 hour ago"
+; SigninView.php line: 68
+signin_view_signin = "Signin"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = "%s m %s s ago"
+; SigninView.php line: 81
+sigin_view_signing_in = "Logging on"
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = "%s hours ago"
+; SigninView.php line: 84
+sigin_view_login_failed = "Login Failed!"
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = "Drag items into the textarea to add them..."
+; SigninView.php line: 92
+signin_view_username = "Username"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = "or click to select them."
+; SigninView.php line: 99
+signin_view_password = "Password"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = "Drag or ..."
+; SigninView.php line: 109
+signin_view_login = "Login"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = "choose."
+; SigninView.php line: 124
+signin_view_recover_password = "Forgot Password?"
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = "Invalid Filetype!"
+; SigninView.php line: 129
+signin_view_create_account = "Create Account"
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = "File Size is Too Big!"
+; SigninView.php line: 133
+signin_view_return = "Return"
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = "Upload Progress: "
+; StaticView.php line: 68
+static_view_title = "PHP Search Engine - Yioop!"
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = "Upload Progress Meter Disabled"
+; StatisticsView.php line: 75
+statistics_view_statistics = "Statistics"
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = "Upload Error!"
+; StatisticsView.php line: 80
+statistics_view_calculating = "Calculating... Please be patient."
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = "Upload Canceled!"
+; StatisticsView.php line: 94
+statistics_view_error_codes = "Error Codes Seen"
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = "Trying to add too many files!"
+; StatisticsView.php line: 95
+statistics_view_sizes = "File Sizes Downloaded"
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = "?"
+; StatisticsView.php line: 96
+statistics_view_links_per_page = "Average Links per Page"
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = "Edit"
+; StatisticsView.php line: 97
+statistics_view_page_date = "Page Modified Dates"
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = "Unable to load Help article!"
+; StatisticsView.php line: 98
+statistics_view_dns_time = "DNS Lookup Time"
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = "You can create this page by clicking on the edit link above."
+; StatisticsView.php line: 99
+statistics_view_download_time = "Page Download Time"
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = "%s page does not exist."
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = "Top Level Domains"
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = "Read"
+; StatisticsView.php line: 101
+statistics_view_file_extension = "File Extension"
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = "View More Image Results..."
+; StatisticsView.php line: 102
+statistics_view_media_type = "Media Type"
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "Prev"
+; StatisticsView.php line: 103
+statistics_view_language = "Web Page Language"
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "Next"
+; StatisticsView.php line: 104
+statistics_view_server = "Web Server"
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = "Search"
+; StatisticsView.php line: 105
+statistics_view_os = "Operating System (if detected)"
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = "Show"
+; StatisticsView.php line: 108
+statistics_view_general_info = "General Index Info"
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = "Row %s to %s of %s"
+; StatisticsView.php line: 109
+statistics_view_description = "Index Description"
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = "Row %s to %s of %s"
+; StatisticsView.php line: 111
+statistics_view_timestamp = "Timestamp"
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = "Show"
+; StatisticsView.php line: 113
+statistics_view_crawl_date = "Crawl Start Time"
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = "Search"
+; StatisticsView.php line: 115
+statistics_view_pages = "Downloaded Pages"
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = "Any"
+; StatisticsView.php line: 117
+statistics_view_url = "Seen Urls"
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = "Search"
+; StatisticsView.php line: 120
+statistics_view_number_hosts = "Hostnames Seen"
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = "On"
+; SuggestView.php line: 69
+suggest_view_suggest_url = "Suggest A URL"
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = "Off"
+; SuggestView.php line: 71
+suggest_view_instructions = "Suggest a site for the next web crawl. Up to ten sites per day can be accepted."
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = "On"
+; SuggestView.php line: 95
+suggest_view_url = "URL:"
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = "Off"
+; SuggestView.php line: 109
+register_view_human_check = "Human Check:"
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = "On"
+; SuggestView.php line: 143
+suggest_view_human_check = "Human Check:"
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = "Off"
+; SuggestView.php line: 164
+suggest_view_submit_url = "Submit"
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = "Return to Yioop"
 ;
-; RssLayout.php line: 62
-rss_layout_title = "Open Source Search Engine - Seekquarry : %s"
+; View.php line: 61
+view_locale_version14 = "Version 14"
 ;
-; RssLayout.php line: 69
-rss_layout_description = "Search results for: %s"
+; View.php line: 93
+view_logo_alt_text = "Yioop"
 ;
-; WebLayout.php line: 63
-web_layout_title = "Open Source Search Engine - Seekquarry"
+; WikiView.php line: 86
+wiki_view_read = "Read"
 ;
-; WebLayout.php line: 73
-web_layout_description = "Free and Open Source Crawler and Search Engine Software"
+; WikiView.php line: 87
+wiki_view_edit = "Edit"
 ;
-; WebLayout.php line: 75
-web_layout_site_author = "Chris Pollett"
+; WikiView.php line: 90
+wiki_view_pages = "Pages"
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = "Query Statistics"
+; WikiView.php line: 135
+wiki_view_feed = "Feed"
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = "Total Elapsed Time for Queries: %s seconds."
+; WikiView.php line: 136
+wiki_view_wiki = "Wiki"
 ;
-; WebLayout.php line: 228
-web_layout_query_time = "Time: %s seconds."
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = "Download Form"
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = "Thank you for your interest in Yioop Search Engine Software. To obtain an email with a download link please fill out the form below. We use the information collected to better understand our users and to connect our users with services available for our software."
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = "Full Name"
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = "Email"
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = "Organization"
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = "Briefly Describe your Interest in Yioop Software:"
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = "Send Download Email"
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = "Return"
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = "Please Fill-in the Required Fields!"
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = "Full Name Required!"
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = "Please Enter a Valid Email!"
 ;
-; StoreView.php line: 65
-download_view_form = "Download Form"
+; StoreView.php line: 71
+store_view_get_form = "Ad Payment Script"
 ;
-; StoreView.php line: 74
-download_view_thank_you = "Thank you for your interest in Yioop Search Engine Software. To obtain an email with a download link please fill out the form below. We use the information collected to better understand our users and to connect our users with services available for our software."
+; StoreView.php line: 81
+store_view_keyword_purchase = "If you have previously paid for the keyword advertising payment processing with Stripe.com script for your name server, you can use the form below to download the script again. If not, fill in the form and you will be given the opportunity to buy the script. The value of the Name Server URL field below can be found on your Yioop instance under Server Settings. "
 ;
-; StoreView.php line: 76
-download_view_full_name = "Full Name"
+; StoreView.php line: 83
+download_view_email = "Email"
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = "Name Server URL"
+;
+; StoreView.php line: 94
+store_view_get_script = "Get Keyword Ad Script"
+;
+; StoreView.php line: 100
+store_view_return_main = "Return"
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = "Purchase Ad Payment Script "
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = "Email"
 ;
-; StoreView.php line: 85
-download_view_business = "Organization"
+; StoreView.php line: 162
+store_view_name_server = "Name Server URL"
 ;
-; StoreView.php line: 90
-download_view_interest = "Briefly Describe your Interest in Yioop Software:"
+; StoreView.php line: 168
+store_view_cost = "Cost (USD)"
 ;
-; StoreView.php line: 96
-download_view_get_email = "Send Download Email"
+; StoreView.php line: 176
+store_view_card_number = "Card Number"
 ;
-; StoreView.php line: 102
-download_view_return_main = "Return"
+; StoreView.php line: 187
+store_view_cvc = "CVC"
 ;
-; StoreView.php line: 115
-download_view_required_fields = "Please Fill-in the Required Fields!"
+; StoreView.php line: 196
+store_view_expiration = "Expiration"
 ;
-; StoreView.php line: 119
-download_view_name_required = "Full Name Required!"
+; StoreView.php line: 215
+store_view_get_script = "Get Keyword Ad Script"
 ;
-; StoreView.php line: 123
-download_view_valid_email = "Please Enter a Valid Email!"
+; StoreView.php line: 240
+store_view_return_main = "Return"
+;
+; StoreView.php line: 252
+store_view_valid_email = "Please enter a valid email!"
+;
+; StoreView.php line: 267
+store_view_show_form = "Download Ad Payment Script"
+;
+; StoreView.php line: 271
+store_view_show_instructions = "Instructions"
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = "Copy and paste the script in the text area below into a text editor. "
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = "Edit the value for PUBLISHABLE_KEY and SECRET_KEY according to your Stripe.com public and secret key. Edit the CHARGE_CURRENCY to the currency you would like to receive payments in and edit CHARGE_DESCRIPTION to what you like charges to appear as to ad buyers."
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = "Finally, save the file as:"
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = "Here WORK_DIRECTORY should be your Yioop Instance&#039;s WORK_DIRECTORY folder (you may need to create the subfolders listed)."
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = "Word Filter Settings Saved!"
diff --git a/locale/en_US/statistics.txt b/locale/en_US/statistics.txt
index 5a165df..b6bef56 100755
--- a/locale/en_US/statistics.txt
+++ b/locale/en_US/statistics.txt
@@ -1 +1 @@
-d:100;
\ No newline at end of file
+d:99;
\ No newline at end of file
diff --git a/locale/es/configure.ini b/locale/es/configure.ini
index fa75322..875b4bd 100755
--- a/locale/es/configure.ini
+++ b/locale/es/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "Se ha cerrado la sesi&oacute;n con &eacute;xito!!"
-;
-; SearchController.php line: 549
-search_controller_mix_info = "Usando Rastreo Mix: %s"
-;
-; SearchController.php line: 555
-search_controller_crawl_info = "Usando &Iacute;ndice: %s -- Size: %s pages/%s urls"
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = "No se dispone de &iacute;ndice de b&uacute;squeda para su uso!"
-;
-; SearchController.php line: 698
-search_controller_no_index_set = "No se dispone de &iacute;ndice de b&uacute;squeda para su uso!"
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = "T&iacute;tulo extra&iacute;do"
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = "Descripci&oacute;n Extra&iacute;da"
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = "Enlaces (links) extra&iacute;dos"
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = "Rutas permitidas extra&iacute;das para ser rastreadas"
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = "Rutas No permitidas extra&iacute;das para no ser rastreadas"
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = "Rastreo Retrasado de YioopBot"
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = "P&aacute;gina de cache Yioop ... Esta p&aacute;gina ha sido modificada para a&ntilde;adir una directiva robots, hacer enlaces absolutos, a&ntilde;adir res&uacute;menes extra&iacute;dos, y para resaltar los t&eacute;rminos de la consulta."
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = "Esta versi&oacute;n en cach&eacute; de %s se obtuvo mediante el rastreador Yioop en %s."
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = "rastreo mix"
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "Configuraci&oacute;n guardada!"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = "Entrada Aprobada"
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "Se ha cerrado la sesi&oacute;n con &eacute;xito!!"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = "Administrador"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = "Auto-cerrar la sesi&oacute;n en un minuto!"
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "Se ha cerrado la sesi&oacute;n con &eacute;xito!!"
+;
+; SearchController.php line: 549
+search_controller_mix_info = "Usando Rastreo Mix: %s"
+;
+; SearchController.php line: 555
+search_controller_crawl_info = "Usando &Iacute;ndice: %s -- Size: %s pages/%s urls"
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = "No se dispone de &iacute;ndice de b&uacute;squeda para su uso!"
+;
+; SearchController.php line: 698
+search_controller_no_index_set = "No se dispone de &iacute;ndice de b&uacute;squeda para su uso!"
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = "T&iacute;tulo extra&iacute;do"
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = "Descripci&oacute;n Extra&iacute;da"
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = "Enlaces (links) extra&iacute;dos"
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = "Rutas permitidas extra&iacute;das para ser rastreadas"
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = "Rutas No permitidas extra&iacute;das para no ser rastreadas"
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = "Rastreo Retrasado de YioopBot"
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = "P&aacute;gina de cache Yioop ... Esta p&aacute;gina ha sido modificada para a&ntilde;adir una directiva robots, hacer enlaces absolutos, a&ntilde;adir res&uacute;menes extra&iacute;dos, y para resaltar los t&eacute;rminos de la consulta."
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = "Esta versi&oacute;n en cach&eacute; de %s se obtuvo mediante el rastreador Yioop en %s."
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = "rastreo mix"
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "Configuraci&oacute;n guardada!"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "Se ha cerrado la sesi&oacute;n con &eacute;xito!!"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "Administrador"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = "Auto-cerrar la sesi&oacute;n en un minuto!"
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = "Actualmente Processando"
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "Eliminar"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = "Rastreos noanteriores"
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = "Actividades"
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = "Auto-cerrar la sesi&oacute;n en un minuto!"
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = "Motor de b&uacute;squeda de directorio de trabajo"
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = "Cargar o crear"
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = "Configuraci&oacute;n del perfil"
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = "Idioma predeterminado:"
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = "Error de Informaci&oacute;n"
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = "Informaci&oacute;n de consulta"
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = "Informaci&oacute;n de prueba"
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = "Web"
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = "RSS"
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = "API"
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = "Nombre de robot rastreador:"
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = "Robot Instance:"
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = "Descripci&oacute;n del robot"
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "Atr&aacute;s"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = "Modificar rastreo (&iacute;ndice) activo"
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = "Editar opciones de Rastreo"
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = "Rastreo Web"
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = "Archivo de rastreo"
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = "Obtener Opciones de navegaci&oacute;n desde:"
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = "Orden de Rastreo:"
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = "Restringir los sitios por URL:"
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = "Permitido para rastrear sitios"
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = "Sitios no permitidos/Sites with Quotas"
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = "Sitios para inyectar en rastreo actual"
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "Guardar opciones"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = ""
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "Buscar"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = ""
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = ""
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = ""
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = ""
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = ""
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = ""
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = ""
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = ""
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = ""
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = ""
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = "Auto-cerrar la sesi&oacute;n en un minuto!"
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "Actividades"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = "Motor de b&uacute;squeda de directorio de trabajo"
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = "Cargar o crear"
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = "Configuraci&oacute;n del perfil"
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = "Idioma predeterminado:"
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = "Error de Informaci&oacute;n"
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = "Informaci&oacute;n de consulta"
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = "Informaci&oacute;n de prueba"
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = "Web"
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = "RSS"
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = "API"
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = "Nombre de robot rastreador:"
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = "Robot Instance:"
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = "Descripci&oacute;n del robot"
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "Atr&aacute;s"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = "Modificar rastreo (&iacute;ndice) activo"
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = "Editar opciones de Rastreo"
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = "Rastreo Web"
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = "Archivo de rastreo"
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = "Obtener Opciones de navegaci&oacute;n desde:"
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = "Orden de Rastreo:"
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = "Restringir los sitios por URL:"
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = "Permitido para rastrear sitios"
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = "Sitios no permitidos/Sites with Quotas"
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = "Sitios para inyectar en rastreo actual"
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "Guardar opciones"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = ""
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = ""
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = ""
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = "Indexaci&oacute;n de complementos"
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = "Complemento"
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = "Usar en el Rastreo"
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = "Elementos de la p&aacute;gina de b&uacute;squeda y v&iacute;nculos"
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = "Sugerencia de Palabra"
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = "Inicia sesi&oacute;n"
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = "Direcci&oacute;n IP"
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = "Nombre URL del servidor:"
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = "Usar Memcache:"
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = "Servidores Memcache"
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = "Utilice Filecache:"
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = "Sistema de la Base de datos:"
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = "Nombre de la Base de Datos"
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = "Nombre del Host (Nombre del equipo):"
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = "Usuario de la Base de datos:"
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = "Contrase&ntilde;a de la Base de datos:"
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = ""
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = ""
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = ""
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = ""
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = ""
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = ""
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = "Indexaci&oacute;n de complementos"
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = "Complemento"
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = "Usar en el Rastreo"
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = "Elementos de la p&aacute;gina de b&uacute;squeda y v&iacute;nculos"
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = "Sugerencia de Palabra"
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = "Inicia sesi&oacute;n"
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = "Direcci&oacute;n IP"
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = "Auto-cerrar la sesi&oacute;n en un minuto!"
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = "?"
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = ""
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = ""
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = "Nombre URL del servidor:"
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = "Usar Memcache:"
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = "Servidores Memcache"
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = "Utilice Filecache:"
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = "Sistema de la Base de datos:"
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = "Nombre de la Base de Datos"
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = "Nombre del Host (Nombre del equipo):"
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = "Usuario de la Base de datos:"
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = "Contrase&ntilde;a de la Base de datos:"
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = ""
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = ""
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = ""
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = ""
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "Buscar"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = ""
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = ""
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = ""
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = ""
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = ""
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = ""
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = ""
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = ""
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = ""
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = ""
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = "?"
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = ""
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = ""
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = "Auto-cerrar la sesi&oacute;n en un minuto!"
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/fa/configure.ini b/locale/fa/configure.ini
index ef58ba5..d0ab9ed 100755
--- a/locale/fa/configure.ini
+++ b/locale/fa/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = "هیچ خطی با این فیلتر مطابق نیست!"
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "با موفقیت خارج شدید!!"
-;
-; SearchController.php line: 549
-search_controller_mix_info = "با استفاده از ترکیب خزش: %s"
-;
-; SearchController.php line: 555
-search_controller_crawl_info = "نمایه: %s -- اندازه: %s صفحات/%s urls"
-;
-; SearchController.php line: 591
-search_controller_search = "بگرد"
-;
-; SearchController.php line: 695
-search_controller_no_index_set = "هیچ نمایهٔ جستجویی برای استفاده تنظیم نشده است!"
-;
-; SearchController.php line: 698
-search_controller_no_index_set = "هیچ نمایهٔ جستجویی برای استفاده تنظیم نشده است!"
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = "وب&zwnj;سایت مورد نظر نمی&zwnj;خواهد این صفحه بایگانی شود."
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = "این تصویر در صفحهٔ زیر دیده شده است: "
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = "عنوان استخراج شده"
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = "توضیح استخراج شده"
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = "لینک&zwnj;های استخراج شده"
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = "مسیرهای مجاز به خزش استخراج شده"
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = "مسیرهای غیرمجاز به خزش استخراج شده"
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = "تاخیر در خزش YioopBot"
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = "صفحه کش Yioop ... این صفحه برای اضافه کردن دستورالعمل ربات، ایجاد لینک های مطلق، اضافه کردن خلاصه&zwnj;های استخراج شده، و برجسته سازی کلمات مورد پرسمان اصلاح شده است."
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = "این نسخه کش شدهٔ ‪%‬s را خزندهٔ Yioop در ‪%‬s به دست آورده است."
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = " وضعیت سرصفحه استخراج شده و خلاصه را عوض کن"
-;
-; SearchController.php line: 1821
-search_controller_history = "وضعیت تاریخچه را عوض کن"
-;
-; SearchController.php line: 1991
-search_controller_all_cached = "همه نسخه های کش شده - سال و/یا ماه را برای دیدن لینک&zwnj;ها تغییر دهید"
-;
-; SearchController.php line: 2022
-search_controller_year = "سال:"
-;
-; SearchController.php line: 2023
-search_controller_month = "ماه:"
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = "خزش ترکیبی"
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "تنظیمات ذخیره شد!"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = "در بررسی مشکلی پیدا نشد."
 ; SystemComponent.php line: 1220
 system_component_using_local_config = "از configs/local_config.php استفاده می&zwnj;شود، بنابراین ممکن است تغییر بالا عمل نکند."
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = "هیچ خطی با این فیلتر مطابق نیست!"
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "با موفقیت خارج شدید!!"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = "مدیر"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = "خروج خودکار تا یک دقیقهٔ دیگر!!"
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "با موفقیت خارج شدید!!"
+;
+; SearchController.php line: 549
+search_controller_mix_info = "با استفاده از ترکیب خزش: %s"
+;
+; SearchController.php line: 555
+search_controller_crawl_info = "نمایه: %s -- اندازه: %s صفحات/%s urls"
+;
+; SearchController.php line: 591
+search_controller_search = "بگرد"
+;
+; SearchController.php line: 695
+search_controller_no_index_set = "هیچ نمایهٔ جستجویی برای استفاده تنظیم نشده است!"
+;
+; SearchController.php line: 698
+search_controller_no_index_set = "هیچ نمایهٔ جستجویی برای استفاده تنظیم نشده است!"
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = "وب&zwnj;سایت مورد نظر نمی&zwnj;خواهد این صفحه بایگانی شود."
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = "این تصویر در صفحهٔ زیر دیده شده است: "
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = "عنوان استخراج شده"
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = "توضیح استخراج شده"
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = "لینک&zwnj;های استخراج شده"
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = "مسیرهای مجاز به خزش استخراج شده"
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = "مسیرهای غیرمجاز به خزش استخراج شده"
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = "تاخیر در خزش YioopBot"
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = "صفحه کش Yioop ... این صفحه برای اضافه کردن دستورالعمل ربات، ایجاد لینک های مطلق، اضافه کردن خلاصه&zwnj;های استخراج شده، و برجسته سازی کلمات مورد پرسمان اصلاح شده است."
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = "این نسخه کش شدهٔ ‪%‬s را خزندهٔ Yioop در ‪%‬s به دست آورده است."
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = " وضعیت سرصفحه استخراج شده و خلاصه را عوض کن"
+;
+; SearchController.php line: 1821
+search_controller_history = "وضعیت تاریخچه را عوض کن"
+;
+; SearchController.php line: 1991
+search_controller_all_cached = "همه نسخه های کش شده - سال و/یا ماه را برای دیدن لینک&zwnj;ها تغییر دهید"
+;
+; SearchController.php line: 2022
+search_controller_year = "سال:"
+;
+; SearchController.php line: 2023
+search_controller_month = "ماه:"
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = "خزش ترکیبی"
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "تنظیمات ذخیره شد!"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "با موفقیت خارج شدید!!"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "مدیر"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = "خروج خودکار تا یک دقیقهٔ دیگر!!"
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = "در حال پردازش"
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "حذف کن"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = "هیچ خزش قبلی موجود نیست"
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = "فعالیت&zwnj;ها"
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = "خروج خودکار تا یک دقیقهٔ دیگر!!"
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = "هیچ دستگاه تحت نظری نیست"
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = "گزارش"
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = "آینه&zwnj;ها"
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = "گزارش"
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = "صف سرور"
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = "گزارش"
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = "صف سرور"
+; ConfigureElement.php line: 72
+configure_element_work_directory = "پوشهٔ کار موتور جستجو"
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = "دستگاه صف سرور ندارد"
+; ConfigureElement.php line: 76
+configure_element_load_or_create = "بارگذاری یا ایجاد"
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = "بررسی مؤلفه&zwnj;ها"
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = "گزارش"
+; ConfigureElement.php line: 96
+configure_element_profile_settings = "تنظیمات پروفایل"
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = "دستگاه واکش ندارد"
+; ConfigureElement.php line: 101
+configure_element_default_language = "زبان پیش&zwnj;فرض:"
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = "واکش&zwnj;ها"
+; ConfigureElement.php line: 108
+configure_element_debug_display = "نمایش اشکال&zwnj;زدایی"
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = "گزارش"
+; ConfigureElement.php line: 114
+configure_element_error_info = "اطلاعات خطا"
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = "کش برای مورد خواسته شده نیست."
+; ConfigureElement.php line: 120
+configure_element_query_info = "اطلاعات پرسمان"
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = "داده&zwnj;های خلاصه در Yioop ذخیره شد"
+; ConfigureElement.php line: 126
+configure_element_test_info = "اطلاعات تست"
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = "دسترسی به جستجو"
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = "وب"
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = "RSS"
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = "API"
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = "تنظیم ربات خزنده"
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = "نام ربات خزنده:"
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = "نمونهٔ ربات:"
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = "توضیح ربات"
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "قبل"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = "تغییر خزش جاری"
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = "ویرایش تنظیمات خزش"
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = "خزش وب"
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = "خزش بایگانی "
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = "تنظیمات خزش را از اینجا بگیر:"
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = "مرتبهٔ خزش:"
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = "سایت&zwnj;ها را بر اساس URL محدود کن:"
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = "اجازهٔ خزیدن در این سایت&zwnj;ها هست"
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = "سایت&zwnj;های غیرمجاز/سایت&zwnj;های با سهمیه بندی"
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = "سایت&zwnj;های seed"
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = "سایت&zwnj;هایی که به خزش جاری اضافه شوند"
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = "این خزش یا پوشهٔ آرک دوباره نمایه&zwnj;بندی شود:"
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = "برای خزش ترکیبی آرشیو، دسترسی به Yioop API لازم است"
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "ذخیرهٔ تنظیمات"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = "قبل"
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = "ویرایش زبان: %s"
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = "قبل"
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = "ویرایش ترکیب خزش"
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = "نام ترکیب:"
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = "اجزا ترکیب"
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = "ذخیره کن"
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = "بلاگ"
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = "حریم شخصی"
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = "YioopBot"
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = "ساخته شده توسط SeekQuarry"
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = "Yioop! موتور جستجوی PHP"
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = "لغاتی که می&zwnj;خواهید در وب جستجو کنید را وارد کنید"
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "چیزی که دنبالش هستید را وارد کنید"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "جستجو"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = "آمار بیشتر"
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = "%s ثانیه"
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = "در حال نمایش %s - %s از %s"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = "کش شده"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = "مشاهده به صورت متنی"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = "مشابه"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = "پیوندهای داخلی"
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = "رتبه: %s"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = "ارتباط: %s"
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = "نزدیکی: %s"
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = "امتیاز: %s"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "تنظیمات"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "نتایج در هر صفحه:"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = "نتایج را در صفحه&zwnj;های جدید باز کن:"
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "نمایهٔ جستجو:"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "زبان:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = "ذخیرهٔ تنظیمات"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = "پلاگین متن&zwnj;باز Yioop! را نصب کنید"
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = "ورود"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = "نام کاربری"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "رمز عبور"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = "ورود"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = "قبل"
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = "فیلتر:"
 ;
-; StaticView.php line: 68
-static_view_title = "موتور جستجوی PHP - Yioop!"
+; MachinelogElement.php line: 69
+machinelog_element_log_file = "%s فایل گزارش"
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = "آمار"
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = "بازآوری خودکار خاموش باشد"
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = "در حال محاسبه ... لطفن صبور باشید."
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = "بازآوری خودکار روشن باشد"
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = "کد خطاهای مشاهده شده"
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = "اندازهٔ فایل&zwnj;های بارگذاری شده"
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = "میانگین پیوندهای هر صفحه"
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = "تاریخ تغییر صفحات"
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = "زمان جستجو در DNS"
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = "زمان بارگذاری صفحه"
+; ManageaccountElement.php line: 117
+manageusers_element_username = "نام کاربر:"
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = "دامنه&zwnj;های سطح بالا"
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = "نوع فایل"
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = "نوع رسانه"
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = "زبان صفحه وب"
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = "وب سرور"
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = "سیستم عامل (اگر شناسایی شده)"
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "رمز عبور جدید:"
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = "اطلاعات کلی نمایه"
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "تکرار رمز عبور جدید:"
 ;
-; StatisticsView.php line: 109
-statistics_view_description = "توضیح نمایه"
+; ManageaccountElement.php line: 184
+manageaccount_element_save = "ذخیره"
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = "برچسب زمان"
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = "زمان شروع خزش"
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = "صفحات بارگذاری شده"
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = "URLهای دیده شده"
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = "میزبان&zwnj;های دیده شده"
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = "خروج خودکار تا یک دقیقهٔ دیگر!!"
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "فعالیت&zwnj;ها"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = "پوشهٔ کار موتور جستجو"
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = "بارگذاری یا ایجاد"
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = "بررسی مؤلفه&zwnj;ها"
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = "تنظیمات پروفایل"
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = "زبان پیش&zwnj;فرض:"
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = "نمایش اشکال&zwnj;زدایی"
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = "اطلاعات خطا"
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = "اطلاعات پرسمان"
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = "اطلاعات تست"
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = "دسترسی به جستجو"
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = "وب"
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = "RSS"
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = "API"
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = "تنظیم ربات خزنده"
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = "نام ربات خزنده:"
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = "نمونهٔ ربات:"
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = "توضیح ربات"
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "قبل"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = "تغییر خزش جاری"
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = "ویرایش تنظیمات خزش"
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = "خزش وب"
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = "خزش بایگانی "
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = "تنظیمات خزش را از اینجا بگیر:"
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = "مرتبهٔ خزش:"
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = "سایت&zwnj;ها را بر اساس URL محدود کن:"
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = "اجازهٔ خزیدن در این سایت&zwnj;ها هست"
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = "سایت&zwnj;های غیرمجاز/سایت&zwnj;های با سهمیه بندی"
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = "سایت&zwnj;های seed"
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = "سایت&zwnj;هایی که به خزش جاری اضافه شوند"
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = "این خزش یا پوشهٔ آرک دوباره نمایه&zwnj;بندی شود:"
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = "برای خزش ترکیبی آرشیو، دسترسی به Yioop API لازم است"
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "ذخیرهٔ تنظیمات"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = "ایجاد خزش"
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = "نام"
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = "آغاز خزش جدید"
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = "تنظیمات"
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = "منتظر وضعیت خزش"
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = "وضعیت خزش دیگر به روز نمی&zwnj;شود"
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = "قبل"
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = "ویرایش زبان: %s"
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = "قبل"
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = "ویرایش ترکیب خزش"
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = "نام ترکیب:"
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = "اجزا ترکیب"
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = "ذخیره کن"
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = "بلاگ"
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = "حریم شخصی"
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = "YioopBot"
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = "ساخته شده توسط SeekQuarry"
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = "لیست زبان&zwnj;ها"
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = "نام زبان"
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = "قبل"
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = "برچسب زبان"
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = "فیلتر:"
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = "حالت نوشتار"
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = "%s فایل گزارش"
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = "بازآوری خودکار خاموش باشد"
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = "درصد ترجمه شده"
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = "بازآوری خودکار روشن باشد"
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "نام کاربر:"
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = "زبان اضافه کن"
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = "نام زبان:"
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = "برچسب زبان:"
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = "حالت نوشتار:"
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "رمز عبور جدید:"
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "تکرار رمز عبور جدید:"
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = "ارسال"
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = "ذخیره"
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = "نام زبان"
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = "برچسب زبان"
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = "حالت نوشتار"
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = "دستگاهی اضافه کن"
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = "نام دستگاه:"
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = "URL دستگاه:"
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = "آینه است:"
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = "نام پدر:"
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = "صف سرور دارد:"
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = "تعداد واکش&zwnj;ها:"
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = "ارسال"
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = "اطلاعات دستگاه"
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = "منتظر وضعیت دستگاه&zwnj;ها..."
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = "وضعیت دستگاه دیگر به روز نمی&zwnj;شود..."
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = "نام نقش:"
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "نقشی اضافه کن"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = "نام نقش:"
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = "نام نقش:"
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = "نام کاربر:"
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = "نام کاربر:"
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "رمز عبور:"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "رمز عبور را دوباره بنویسید:"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = "نام کاربر:"
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = "ترکیب&zwnj;های موجود"
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = "نام"
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = "تعریف"
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = "فرمان&zwnj;ها"
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = "ترکیب هنوز هیچ جزئی ندارد"
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = "ویرایش"
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = "برای نمایه قرار بده"
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = "نمایهٔ جستجو"
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = "حذف"
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = "ایجاد خزش"
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = "نام"
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = "آغاز خزش جدید"
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = "تنظیمات"
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = "ترکیب خزشی ایجاد کن"
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = "منتظر وضعیت خزش"
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = "نام ترکیب:"
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = "وضعیت خزش دیگر به روز نمی&zwnj;شود"
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = "بساز"
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "تنظیمات"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "ورود"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "مدیر"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = "تنظیمات صفحه در هنگام خزش"
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = "دامنهٔ میزان بایتی که بارگذاری می&zwnj;شود (۰ - میزان):"
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = "بگذار صفحه بعد از این مدت دوباره خزیده شود:"
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = "نوع فایل صفحاتی که خزیده می&zwnj;شوند:"
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = "پلاگین&zwnj;های نمایه&zwnj;بندی"
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = "پلاگین"
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = "در خزش استفاده کن"
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = "لینک&zwnj;ها و عناصر صفحه جستجو"
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = "پیشنهاد کلمه"
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = "زیرجستجو"
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = "ورود"
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = "کش"
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = "مشابه"
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = "لینک&zwnj;های داخلی"
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = "آدرس IP"
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = "وزن عنوان:"
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = "وزن توضیحات:"
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = "وزن پیوند:"
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = "دسته&zwnj;بندی نتایج جستجو"
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = "حداقل تعداد هر دسته:"
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = "آلفای سرور:"
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = "ذخیره"
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = "لیست زبان&zwnj;ها"
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = "ذخیره"
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = "نام زبان"
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = "ویرایش صفحه نتایج"
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = "برچسب زبان"
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = "URLهای ویرایش شده:"
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = "حالت نوشتار"
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = "یک خلاصهٔ ویرایش شدهٔ قبلی را انتخاب کنید"
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = "بارگذاری"
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = "درصد ترجمه شده"
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = "URL:"
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = "عنوان:"
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = "توضیح:"
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = "بازنشانی"
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = "ذخیره صفحه"
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = "فیلتر کردن صفحاتی از نتایج"
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = "سایت&zwnj;هایی که فیلتر شوند"
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = "فیلتر را ذخیره کن"
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = "زبان اضافه کن"
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = "نام زبان:"
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = "منبع رسانه&zwnj;ای اضافه کن"
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = "برچسب زبان:"
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = "نوع:"
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = "حالت نوشتار:"
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = "نام:"
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = "URL:"
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = "ارسال"
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = "زبان:"
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = "تصویر کوچک:"
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = "نام زبان"
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = "برچسب زبان"
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = "حالت نوشتار"
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = "دستگاهی اضافه کن"
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = "ارسال"
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = "نام دستگاه:"
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = "منابع رسانه"
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = "URL دستگاه:"
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = "نام"
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = "آینه است:"
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = "نوع"
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = "نام پدر:"
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = "URLها"
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = "صف سرور دارد:"
+; SearchsourcesElement.php line: 199
+searchsources_element_action = "فرمان"
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = "تعداد واکش&zwnj;ها:"
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = "ارسال"
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = "اطلاعات دستگاه"
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = "حذف"
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = "منتظر وضعیت دستگاه&zwnj;ها..."
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = "وضعیت دستگاه دیگر به روز نمی&zwnj;شود..."
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = "زیرجستجویی اضافه کن"
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = "نام نقش:"
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = "نام پوشه:"
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = "منبع نمایه:"
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = "تعداد نتایج در هر صفحه:"
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = "ارسال"
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = "زیرجستجوهای فعلی"
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = "نام پوشه"
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = "نمایه"
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = "نشانگر محلی&zwnj;سازی"
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "نقشی اضافه کن"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = "نتایج/صفحه"
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = "نام نقش:"
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = "فرمان&zwnj;ها"
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = "محلی سازی"
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = "محلی سازی"
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = "حذف کن"
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = "نام نقش:"
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "نام کاربر:"
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = "تنظیم کردن سرور نام"
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = "کلید سرور:"
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = "URL سرور نام:"
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = "استفاده از مم&zwnj;کش:"
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = "سرورهای مم&zwnj;کش"
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = "استفاده از فایل&zwnj;کش:"
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = "راه&zwnj;اندازی پایگاه داده"
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = "سیستم پایگاه داده:"
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "نام کاربر:"
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = "نام پایگاه داده:"
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = "نام میزبان:"
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = "کاربر پایگاه داده:"
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = "رمز عبور پایگاه داده:"
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "رمز عبور:"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "رمز عبور را دوباره بنویسید:"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "نام کاربر:"
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = "ترکیب&zwnj;های موجود"
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = "نام"
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = "تعریف"
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = "فرمان&zwnj;ها"
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = "ترکیب هنوز هیچ جزئی ندارد"
+; SigninElement.php line: 73
+signin_element_settings = "تنظیمات"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "ورود"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = "ویرایش"
+; SigninElement.php line: 81
+signin_element_signout = "خروج"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = "برای نمایه قرار بده"
+; SubsearchElement.php line: 69
+subsearch_element_more = "بیشتر"
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = "نمایهٔ جستجو"
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = "حذف"
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = "ترکیب خزشی ایجاد کن"
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = "نام ترکیب:"
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = "بساز"
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "تنظیمات"
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "ورود"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "مدیر"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = "تنظیمات صفحه در هنگام خزش"
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = "دامنهٔ میزان بایتی که بارگذاری می&zwnj;شود (۰ - میزان):"
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = "بگذار صفحه بعد از این مدت دوباره خزیده شود:"
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = "نوع فایل صفحاتی که خزیده می&zwnj;شوند:"
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = "پلاگین&zwnj;های نمایه&zwnj;بندی"
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = "پلاگین"
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = "در خزش استفاده کن"
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = "لینک&zwnj;ها و عناصر صفحه جستجو"
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = "پیشنهاد کلمه"
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = "زیرجستجو"
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = "ورود"
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = "کش"
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = "مشابه"
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = "لینک&zwnj;های داخلی"
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = "آدرس IP"
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = "وزن عنوان:"
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = "وزن توضیحات:"
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = "وزن پیوند:"
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = "دسته&zwnj;بندی نتایج جستجو"
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = "حداقل تعداد هر دسته:"
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = "آلفای سرور:"
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = "ذخیره"
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = "خروج خودکار تا یک دقیقهٔ دیگر!!"
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = "نتایج اخبار برای %s"
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = "۱ ساعت پیش"
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = "%s ساعت پیش"
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = "ذخیره"
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = "ویرایش صفحه نتایج"
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = "URLهای ویرایش شده:"
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = "یک خلاصهٔ ویرایش شدهٔ قبلی را انتخاب کنید"
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = "بارگذاری"
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = "URL:"
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = "عنوان:"
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = "توضیح:"
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = "بازنشانی"
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = "ذخیره صفحه"
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = "فیلتر کردن صفحاتی از نتایج"
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = "سایت&zwnj;هایی که فیلتر شوند"
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = "فیلتر را ذخیره کن"
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = "منبع رسانه&zwnj;ای اضافه کن"
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = "نوع:"
+; ImagesHelper.php line: 55
+images_helper_view_image_results = "مشاهدهٔ نتایج تصویری بیشتری ..."
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = "نام:"
+; PaginationHelper.php line: 97
+pagination_helper_previous = "قبل"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = "URL:"
+; PaginationHelper.php line: 121
+pagination_helper_next = "بعد"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = "زبان:"
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = "تصویر کوچک:"
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = "روشن"
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = "ارسال"
+; ToggleHelper.php line: 61
+toggle_helper_off = "خاموش"
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = "منابع رسانه"
+; ToggleHelper.php line: 65
+toggle_helper_on = "روشن"
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = "نام"
+; ToggleHelper.php line: 67
+toggle_helper_off = "خاموش"
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = "نوع"
+; ToggleHelper.php line: 71
+toggle_helper_on = "روشن"
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = "URLها"
+; ToggleHelper.php line: 73
+toggle_helper_off = "خاموش"
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = "فرمان"
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = "موتور جستجوی PHP - Yioop! : %s"
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = "نتایج جستجو برای: %s"
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = "حذف"
+; WebLayout.php line: 63
+web_layout_title = "موتور جستجوی PHP - Yioop!"
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = "نرم&zwnj;افزار خزنده و موتور جستجوی PHP"
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = "زیرجستجویی اضافه کن"
+; WebLayout.php line: 219
+web_layout_query_statistics = "آمار پرسمان"
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = "نام پوشه:"
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = "زمان کل پرسمان: %s ثانیه."
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = "منبع نمایه:"
+; WebLayout.php line: 228
+web_layout_query_time = "زمان: %s ثانیه."
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = "تعداد نتایج در هر صفحه:"
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = "هیچ دستگاه تحت نظری نیست"
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = "ارسال"
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = "زیرجستجوهای فعلی"
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = "نام پوشه"
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = "نمایه"
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = "نشانگر محلی&zwnj;سازی"
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = "نتایج/صفحه"
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = "فرمان&zwnj;ها"
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = "گزارش"
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = "محلی سازی"
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = "محلی سازی"
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = "حذف کن"
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = "آینه&zwnj;ها"
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = "گزارش"
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = "صف سرور"
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = "گزارش"
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = "صف سرور"
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = "دستگاه صف سرور ندارد"
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = "گزارش"
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = "دستگاه واکش ندارد"
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = "واکش&zwnj;ها"
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = "گزارش"
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = "تنظیم کردن سرور نام"
+; NocacheView.php line: 54
+nocache_view_no_cache = "کش برای مورد خواسته شده نیست."
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = "کلید سرور:"
+; NocacheView.php line: 59
+nocache_view_summary_contents = "داده&zwnj;های خلاصه در Yioop ذخیره شد"
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = "URL سرور نام:"
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = "استفاده از مم&zwnj;کش:"
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = "سرورهای مم&zwnj;کش"
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = "استفاده از فایل&zwnj;کش:"
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = "راه&zwnj;اندازی پایگاه داده"
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = "سیستم پایگاه داده:"
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = "نام پایگاه داده:"
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = "نام میزبان:"
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = "کاربر پایگاه داده:"
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = "رمز عبور پایگاه داده:"
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "تنظیمات"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "ورود"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "خروج"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = "بیشتر"
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = "Yioop! موتور جستجوی PHP"
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = "لغاتی که می&zwnj;خواهید در وب جستجو کنید را وارد کنید"
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = "چیزی که دنبالش هستید را وارد کنید"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "جستجو"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = "آمار بیشتر"
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = "%s ثانیه"
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "در حال نمایش %s - %s از %s"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = "کش شده"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = "مشاهده به صورت متنی"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = "مشابه"
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = "پیوندهای داخلی"
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "رتبه: %s"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = "ارتباط: %s"
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = "نزدیکی: %s"
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = "امتیاز: %s"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "تنظیمات"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "نتایج در هر صفحه:"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = "نتایج را در صفحه&zwnj;های جدید باز کن:"
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = "نمایهٔ جستجو:"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "زبان:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "ذخیرهٔ تنظیمات"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = "نتایج اخبار برای %s"
+; SettingsView.php line: 116
+settings_install_search_plugin = "پلاگین متن&zwnj;باز Yioop! را نصب کنید"
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = "۱ ساعت پیش"
+; SigninView.php line: 68
+signin_view_signin = "ورود"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = "%s ساعت پیش"
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "نام کاربری"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "رمز عبور"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "ورود"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = "موتور جستجوی PHP - Yioop!"
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = "آمار"
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = "در حال محاسبه ... لطفن صبور باشید."
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = "کد خطاهای مشاهده شده"
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = "اندازهٔ فایل&zwnj;های بارگذاری شده"
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = "میانگین پیوندهای هر صفحه"
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = "تاریخ تغییر صفحات"
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = "زمان جستجو در DNS"
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = "زمان بارگذاری صفحه"
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = "دامنه&zwnj;های سطح بالا"
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = "نوع فایل"
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = "مشاهدهٔ نتایج تصویری بیشتری ..."
+; StatisticsView.php line: 102
+statistics_view_media_type = "نوع رسانه"
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "قبل"
+; StatisticsView.php line: 103
+statistics_view_language = "زبان صفحه وب"
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "بعد"
+; StatisticsView.php line: 104
+statistics_view_server = "وب سرور"
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = "سیستم عامل (اگر شناسایی شده)"
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = "اطلاعات کلی نمایه"
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = "توضیح نمایه"
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = "برچسب زمان"
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = "زمان شروع خزش"
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = "صفحات بارگذاری شده"
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = "URLهای دیده شده"
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = "میزبان&zwnj;های دیده شده"
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = "روشن"
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = "خاموش"
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = "روشن"
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = "خاموش"
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = "روشن"
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = "خاموش"
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = "موتور جستجوی PHP - Yioop! : %s"
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = "نتایج جستجو برای: %s"
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = "موتور جستجوی PHP - Yioop!"
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = "نرم&zwnj;افزار خزنده و موتور جستجوی PHP"
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = "آمار پرسمان"
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = "زمان کل پرسمان: %s ثانیه."
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = "زمان: %s ثانیه."
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = "خروج خودکار تا یک دقیقهٔ دیگر!!"
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/fa/statistics.txt b/locale/fa/statistics.txt
index 187cb44..b261553 100755
--- a/locale/fa/statistics.txt
+++ b/locale/fa/statistics.txt
@@ -1 +1 @@
-d:32;
\ No newline at end of file
+d:31;
\ No newline at end of file
diff --git a/locale/fr_FR/configure.ini b/locale/fr_FR/configure.ini
index 9163f93..59ee9d2 100755
--- a/locale/fr_FR/configure.ini
+++ b/locale/fr_FR/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = ""
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = "L&#039;index: %s -- Taille: %s pages / %s urls"
-;
-; SearchController.php line: 591
-search_controller_search = "Afficher les r&eacute;sultats pour "
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = "Ann&eacute;e:"
-;
-; SearchController.php line: 2023
-search_controller_month = "Mois:"
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "Configurations sauvegard&eacute;es"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = ""
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = "Administration"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = ""
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = "L&#039;index: %s -- Taille: %s pages / %s urls"
+;
+; SearchController.php line: 591
+search_controller_search = "Afficher les r&eacute;sultats pour "
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = "Ann&eacute;e:"
+;
+; SearchController.php line: 2023
+search_controller_month = "Mois:"
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "Configurations sauvegard&eacute;es"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = ""
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "Administration"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = "Blog"
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = "Confidentialit&eacute;"
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = "Termes"
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = "Outils"
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = "YioopBot"
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = "D&eacute;velopp&eacute; &agrave; Seekquarry"
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = "Moteur de recherche PHP -Yioop!"
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = "&Eacute;crivez les limites de recherche"
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "Trouvez ce que vous cherchez"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "Rechercher"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = "Plus de statistiques"
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = "%s secondes."
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = "Affichage de %s - %s sur %s r&eacute;sultats"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = "En&nbsp;Cache"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = "Version&nbsp;texte"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = "Pages&nbsp;similaires"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = "Liens retour"
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = "Rang: %s"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = "Pertinence: %s"
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = "Proximit&eacute;: %s"
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = "Total: %s"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "Pr&eacute;f&eacute;rences"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "R&eacute;sultats par page"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = "Ouvrez les r&eacute;sultats dans un nouvel onglet"
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "L&#039;index de recherche:"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "Langage:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = "Enregistrer les pr&eacute;f&eacute;rences"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = "Installez Yioop embrochable"
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = "Connexion"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = "Nom de l&#039;utilisateur:"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "Mot de passe"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = "Se connecter"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = "Outre"
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = "Sur"
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "Nouveau Mot de passe:"
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "Veuillez resaisir votre mot de passe:     "
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = "Blog"
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = "Confidentialit&eacute;"
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = "Termes"
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = "Outils"
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = "YioopBot"
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = "D&eacute;velopp&eacute; &agrave; Seekquarry"
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = "Outre"
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = "Sur"
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "Nouveau Mot de passe:"
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "Veuillez resaisir votre mot de passe:     "
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "Mot de passe:"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "Veuillez resaisir votre mot de passe:"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "Param&egrave;tres de recherche"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "Connexion"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "Administration"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "Mot de passe:"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "Veuillez resaisir votre mot de passe:"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = "Param&egrave;tres de recherche"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "Connexion"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = "D&eacute;connexion"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = "Plus"
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "Param&egrave;tres de recherche"
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "Connexion"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "Administration"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = "R&eacute;sultats de nouvelles pour %s"
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = "il y a une heure"
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = "il y a %s heures"
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = "?"
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = "Visualisez plus de r&eacute;sultats d&#039;image..."
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = "Pr&eacute;c."
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = "Proch."
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = "Sur"
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = "Outre"
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = "Sur"
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = "Outre"
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = "Sur"
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = "Outre"
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = "Moteur de recherche PHP -Yioop! %s"
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = "%s R&eacute;sultats"
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = "Moteur de recherche PHP -Yioop!"
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = "Trouvez ce que vous cherchez"
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "Param&egrave;tres de recherche"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "Connexion"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "D&eacute;connexion"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = "Plus"
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = "Moteur de recherche PHP -Yioop!"
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = "&Eacute;crivez les limites de recherche"
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = "Trouvez ce que vous cherchez"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "Rechercher"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = "Plus de statistiques"
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = "%s secondes."
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "Affichage de %s - %s sur %s r&eacute;sultats"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = "En&nbsp;Cache"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = "Version&nbsp;texte"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = "Pages&nbsp;similaires"
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = "Liens retour"
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "Rang: %s"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = "Pertinence: %s"
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = "Proximit&eacute;: %s"
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = "Total: %s"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "Pr&eacute;f&eacute;rences"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "R&eacute;sultats par page"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = "Ouvrez les r&eacute;sultats dans un nouvel onglet"
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = "L&#039;index de recherche:"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "Langage:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "Enregistrer les pr&eacute;f&eacute;rences"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = "R&eacute;sultats de nouvelles pour %s"
+; SettingsView.php line: 116
+settings_install_search_plugin = "Installez Yioop embrochable"
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = "il y a une heure"
+; SigninView.php line: 68
+signin_view_signin = "Connexion"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = "il y a %s heures"
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "Nom de l&#039;utilisateur:"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "Mot de passe"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "Se connecter"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = "?"
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = "Visualisez plus de r&eacute;sultats d&#039;image..."
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "Pr&eacute;c."
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "Proch."
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = "Sur"
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = "Outre"
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = "Sur"
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = "Outre"
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = "Sur"
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = "Outre"
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = "Moteur de recherche PHP -Yioop! %s"
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = "%s R&eacute;sultats"
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = "Moteur de recherche PHP -Yioop!"
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = "Trouvez ce que vous cherchez"
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/he/configure.ini b/locale/he/configure.ini
index 3ddbe84..d660990 100755
--- a/locale/he/configure.ini
+++ b/locale/he/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "התנתקות הצליחה"
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = ""
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "התנתקות הצליחה"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = ""
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "התנתקות הצליחה"
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = ""
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "התנתקות הצליחה"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = ""
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "מחק"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = "פעיליות"
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "חזור"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "שמור אפשרויות"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = "חזור"
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = "שמור"
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = ""
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "חפש"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = ""
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = ""
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "הגדרות"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = ""
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = ""
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = ""
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = ""
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = ""
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "סיסמא"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = ""
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ":סיסמא חדשה"
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = "שמור"
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "פעיליות"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "חזור"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "שמור אפשרויות"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = "שם"
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = "חזור"
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = "שמור"
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ":סיסמא חדשה"
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = "הגש"
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = "שמור"
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = "שם"
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = ""
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = ""
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = ""
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = "הגש"
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = ""
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = ""
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = ""
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = ""
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = ""
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = ""
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = ""
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = ""
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = ""
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = ""
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = ""
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = ""
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "חפש"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = ""
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = ""
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "הגדרות"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = ""
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = ""
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = ""
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = ""
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = ""
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "סיסמא"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = ""
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = ""
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = ""
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/hi/configure.ini b/locale/hi/configure.ini
index 4510b25..3004c18 100755
--- a/locale/hi/configure.ini
+++ b/locale/hi/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "लॉग आउट सफल"
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = "क्रॉल जानकारी "
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "सेटिंग्स सहेज दी गई है"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "लॉग आउट सफल"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = ""
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "लॉग आउट सफल"
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = "क्रॉल जानकारी "
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "सेटिंग्स सहेज दी गई है"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "लॉग आउट सफल"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = ""
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "यहाँ लिखें की आप क्या खोजना चाहते हैं!"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "खोज"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = ""
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = ""
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "सेटिंग्स"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "परिणाम प्रति पृष्ठ "
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "खोज अनुक्रमणिका"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "भाषा"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = "परिवर्तन सहेजें "
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = "साइन इन"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = "उपयोगकर्ता का नाम"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "पासवर्ड"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = "लॉग इन करें"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "सेटिंग्स"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "साइन इन करें"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "प्रशासक"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = "सेटिंग्स"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "साइन इन करें"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = "साइन आउट करें"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "सेटिंग्स"
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "साइन इन करें"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "प्रशासक"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = ""
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = ""
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "सेटिंग्स"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "साइन इन करें"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "साइन आउट करें"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = "यहाँ लिखें की आप क्या खोजना चाहते हैं!"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "खोज"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = ""
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = ""
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "सेटिंग्स"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "परिणाम प्रति पृष्ठ "
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = "खोज अनुक्रमणिका"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "भाषा"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "परिवर्तन सहेजें "
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = "साइन इन"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "उपयोगकर्ता का नाम"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "पासवर्ड"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "लॉग इन करें"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = ""
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = ""
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/hi/statistics.txt b/locale/hi/statistics.txt
index ada6b5a..fdbc9d3 100755
--- a/locale/hi/statistics.txt
+++ b/locale/hi/statistics.txt
@@ -1 +1 @@
-d:2;
\ No newline at end of file
+d:1;
\ No newline at end of file
diff --git a/locale/in_ID/configure.ini b/locale/in_ID/configure.ini
index 88ca75f..2f52b3a 100755
--- a/locale/in_ID/configure.ini
+++ b/locale/in_ID/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "Logout berhasil"
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = ""
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "Logout berhasil"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = "Administratif"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "Logout berhasil"
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = ""
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "Logout berhasil"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "Administratif"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = ""
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "Cari"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = "Hasil"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = "Urutan"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = ""
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = ""
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = ""
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = ""
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = ""
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = ""
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "Kata sandi"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = ""
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = "username"
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "username"
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "Tambah role"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = "username"
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = "username"
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "Kata sandi"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "Masukin lagi kata sandi"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = "username"
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = ""
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "Masuk"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "Administratif"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "Tambah role"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "username"
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "username"
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "Kata sandi"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "Masukin lagi kata sandi"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "username"
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = ""
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "Masuk"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = "Keluar"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = ""
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "Masuk"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "Administratif"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = "Sebelum"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = "Sesudah"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = ""
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "Masuk"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "Keluar"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = ""
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "Cari"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "Hasil"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "Urutan"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = ""
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = ""
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = ""
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = ""
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = ""
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = ""
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "Kata sandi"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = ""
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "Sebelum"
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "Sesudah"
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/it/configure.ini b/locale/it/configure.ini
index 9fdf9a4..53b5f11 100755
--- a/locale/it/configure.ini
+++ b/locale/it/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "Accesso eseguito!!"
-;
-; SearchController.php line: 549
-search_controller_mix_info = "Unione Scansioni in uso: %s"
-;
-; SearchController.php line: 555
-search_controller_crawl_info = "Indice in uso: %s -- Dimensioni: %s pagine/%s URL"
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = "Nessun Indice in uso!"
-;
-; SearchController.php line: 698
-search_controller_no_index_set = "Nessun Indice in uso!"
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = "Titolo estratto"
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = "Descrizione estratta"
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = "Link estratti"
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = "Percorsi scansionabili ammessi estratti"
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = "Percorsi scansionabili non ammessi estratti"
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = "Ritardo Scansione YioopBot"
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = "Pagina archiviata Yioop... Questa pagina &egrave; stata modificata per aggiungere una direttiva al Robot, creare link assoluti, aggiungere sommari estratti, e evidenziari termini di ricerca."
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = "Questa versione archiviata di %s &egrave; stata ottenuta dal Crawler di Yioop il %s."
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = "unione scansioni"
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "Settaggi salvati!"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = "Controllo passato."
 ; SystemComponent.php line: 1220
 system_component_using_local_config = "Usando configs/local_config.php la Cartella di Lavoro sopra potrebbe non funzionare."
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "Accesso eseguito!!"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = "Amministratore"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = "Fine Accesso in un minuto!!"
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "Accesso eseguito!!"
+;
+; SearchController.php line: 549
+search_controller_mix_info = "Unione Scansioni in uso: %s"
+;
+; SearchController.php line: 555
+search_controller_crawl_info = "Indice in uso: %s -- Dimensioni: %s pagine/%s URL"
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = "Nessun Indice in uso!"
+;
+; SearchController.php line: 698
+search_controller_no_index_set = "Nessun Indice in uso!"
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = "Titolo estratto"
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = "Descrizione estratta"
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = "Link estratti"
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = "Percorsi scansionabili ammessi estratti"
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = "Percorsi scansionabili non ammessi estratti"
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = "Ritardo Scansione YioopBot"
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = "Pagina archiviata Yioop... Questa pagina &egrave; stata modificata per aggiungere una direttiva al Robot, creare link assoluti, aggiungere sommari estratti, e evidenziari termini di ricerca."
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = "Questa versione archiviata di %s &egrave; stata ottenuta dal Crawler di Yioop il %s."
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = "unione scansioni"
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "Settaggi salvati!"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "Accesso eseguito!!"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "Amministratore"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = "Fine Accesso in un minuto!!"
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = "In fase di elaborazione"
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "Cancella"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = "Nessuna Scansione precedente"
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = "Attivit&agrave;"
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = "Fine Accesso in un minuto!!"
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = "Nessuna Macchina monitorata"
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = "Log"
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = "Mirror"
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = "Log"
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = "Server di Coda"
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = "Log"
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = "Server di Coda"
+; ConfigureElement.php line: 72
+configure_element_work_directory = "Cartella di Lavoro del Motore di Ricerca"
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = "La Macchina non ha un Server di Coda"
+; ConfigureElement.php line: 76
+configure_element_load_or_create = "Carica o crea"
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = "Controllo componenti"
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = "Log"
+; ConfigureElement.php line: 96
+configure_element_profile_settings = "Impostazioni Profili"
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = "La Macchina non ha acquisitori"
+; ConfigureElement.php line: 101
+configure_element_default_language = "Lingua predefinita:"
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = "Acquisitori"
+; ConfigureElement.php line: 108
+configure_element_debug_display = "Mostra Debug"
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = "Log"
+; ConfigureElement.php line: 114
+configure_element_error_info = "Info Errori"
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = "Non ha un archivio dell&#039;oggetto richiesto."
+; ConfigureElement.php line: 120
+configure_element_query_info = "Info Ricerca"
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = "Dati dei Sommari memorizzati in Yioop "
+; ConfigureElement.php line: 126
+configure_element_test_info = "Info Test"
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = "Accesso ricerca"
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = "Web"
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = "RSS"
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = "API"
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = "Impostazione Robot Scansione"
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = "Nome Robot Scansione:"
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = "Istanza Robot:"
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = "Descrizione Robot"
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "Indietro"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = "Modifica Scansione attiva"
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = "Modifica opzioni Scansione"
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = "Scansione Web"
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = "Scansione Archivio"
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = "Carica opzioni Scansione da:"
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = "Ordine Scansione:"
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = "Limita siti con URL:"
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = "Siti ammessi alla Scansione"
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = "Siti non ammessi/Siti con limiti"
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = "Siti di partenza"
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = "Siti da aggiungere alla Scansione corrente"
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = "Scansione o Cartella archivi da reindicizzare:"
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "Salva opzioni"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = "Indietro"
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = "Modifica Lingua: %s"
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = "Indietro"
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = "Modifica Unione Scansioni"
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = "Nome Unione:"
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = "Componenti Unione"
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = "Salva"
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = "Blog"
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = "Privacy"
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = "YioopBot"
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = "Sviluppato da SeekQuarry"
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = "Yioop! Motore di Ricerca in PHP"
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = "Inserisci i termini di ricerca"
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "Scrivi quello che stai cercando"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "Cerca"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = "Altre statistiche"
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = "Calccolati in %s secondi."
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = "Mostra risultati %s - %s di %s"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = "Archivio"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = "Vedi&nbsp;come&nbsp;testo"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = "Simile"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = "Inlink"
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = "Pos.: %s "
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = "Rel: %s "
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = "Pros: %s"
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = "Punteggio %s"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "Impostazioni"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "Risultati per Pagina:"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "Cerca nell&#039;Indice:"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "Lingua:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = "Salva impostazioni"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = "Accedi"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = "Utente"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "Password"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = "Accedi"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = "Indietro"
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = "Yioop! Motore di Ricerca in PHP"
+; MachinelogElement.php line: 69
+machinelog_element_log_file = "%s File Log"
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = "Statistiche"
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = "Disabilita auto-aggiornamento"
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = "Calcolo in corso... si prega di aspettare."
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = "Abilita auto-aggiornamento"
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = "Codici di errore"
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = "Dimensioni file scaricati"
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = "Media link per pagina"
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = "Data modifica Pagina"
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = "Tempo di risposta DNS"
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = "Tempo di scaricamento Pagina"
+; ManageaccountElement.php line: 117
+manageusers_element_username = "Utente: "
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = "Domini di Primo Livello"
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = "Tipo di estensione"
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = "Tipo Media"
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = "Lingua Pagina"
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = "Web Server"
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = "Sistema Operativo (se rilevato)"
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "Nuova Password: "
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = "Info generari Indice"
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "Riscrivi Password: "
 ;
-; StatisticsView.php line: 109
-statistics_view_description = "Descrizione Indice"
+; ManageaccountElement.php line: 184
+manageaccount_element_save = "Salva"
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = "Marca Temporale"
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = "Inizio Scansione"
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = "Pagine Scaricate"
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = "URL visti"
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = "Hostname Visti"
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = "Fine Accesso in un minuto!!"
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "Attivit&agrave;"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = "Cartella di Lavoro del Motore di Ricerca"
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = "Carica o crea"
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = "Controllo componenti"
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = "Impostazioni Profili"
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = "Lingua predefinita:"
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = "Mostra Debug"
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = "Info Errori"
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = "Info Ricerca"
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = "Info Test"
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = "Accesso ricerca"
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = "Web"
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = "RSS"
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = "API"
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = "Impostazione Robot Scansione"
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = "Nome Robot Scansione:"
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = "Istanza Robot:"
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = "Descrizione Robot"
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "Indietro"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = "Modifica Scansione attiva"
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = "Modifica opzioni Scansione"
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = "Scansione Web"
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = "Scansione Archivio"
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = "Carica opzioni Scansione da:"
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = "Ordine Scansione:"
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = "Limita siti con URL:"
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = "Siti ammessi alla Scansione"
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = "Siti non ammessi/Siti con limiti"
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = "Siti di partenza"
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = "Siti da aggiungere alla Scansione corrente"
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = "Scansione o Cartella archivi da reindicizzare:"
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "Salva opzioni"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = "Crea Scansione"
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = "Nome"
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = "Inizia Nuova Scansione"
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = "Opzioni"
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = "Attesa stato Scansione"
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = "Stato Scansione non aggiornato"
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = "Indietro"
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = "Modifica Lingua: %s"
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = "Indietro"
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = "Modifica Unione Scansioni"
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = "Nome Unione:"
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = "Componenti Unione"
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = "Salva"
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = "Blog"
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = "Privacy"
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = "YioopBot"
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = "Sviluppato da SeekQuarry"
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = "Lista Lingue"
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = "Nome Lingua"
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = "Indietro"
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = "TAG Lingua"
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = "Modo scrittura"
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = "%s File Log"
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = "Disabilita auto-aggiornamento"
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = "Percentuale tradotta"
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = "Abilita auto-aggiornamento"
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "Utente: "
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = "Aggiungi Lingua"
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = "Nome Lingua:"
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = "TAG Lingua:"
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = "Modo scrittura:"
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "Nuova Password: "
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "Riscrivi Password: "
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = "Invia"
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = "Salva"
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = "Nome Lingua"
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = "TAG Lingua"
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = "Modo scrittura"
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = "Aggiungi Macchina"
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = "Nome Macchina:"
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = "URL Macchina:"
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = "&Egrave; un mirror:"
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = "Nome Fonte:"
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = "Ha Server di Coda:"
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = "Numero Acquisitori:"
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = "Invia"
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = "Informazione Macchina"
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = "In attesa stato Macchine..."
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = "Stato Macchine non aggiornato..."
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = "Nome Ruolo: "
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "Aggiungi Ruolo"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = "Nome Ruolo: "
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = "Nome Ruolo: "
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = "Utente: "
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = "Utente: "
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "Password: "
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "Riscrivi Password: "
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = "Utente: "
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = "Unioni disponibili"
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = "Nome"
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = "Definizione"
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = "Azioni"
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = "L&#039;Unione non ha ancora componenti"
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = "Modifica"
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = "Usa come Indice"
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = "Cerca Indice"
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = "Cancella"
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = "Crea Scansione"
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = "Nome"
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = "Inizia Nuova Scansione"
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = "Opzioni"
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = "Crea Unione Scansioni"
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = "Attesa stato Scansione"
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = "Nome Unione:"
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = "Stato Scansione non aggiornato"
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = "Crea"
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "Impostazioni"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "Accedi"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "Amministratore"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = "Opzioni temporali Scansion"
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = "Quantit&agrave; Byte da scaricare (0 - Valore):"
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = "Permetti Scansione pagina dopo:"
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = "Tipologia pagine da Scansionare:"
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = "Plugin di indicizzazione"
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = "Plugin"
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = "Usa nella Scansione"
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = "Elementi e link pagina di ricerca"
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = "Suggerimento parola"
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = "Sotto-ricerca"
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = "Accesso"
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = "Archivio"
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = "Simile"
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = "Inlink"
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = "Indirizzo IP"
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = "Fattori del posto"
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = "Peso Titolo:"
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = "Peso Descrizione:"
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = "Peso Link:"
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = "Raggruppa risultati di ricerca"
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = "Minimo risultati da raggruppare:"
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = "Server Alpha:"
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = "Salva"
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = "Lista Lingue"
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = "Salva"
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = "Nome Lingua"
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = "Modifica Pagina risultati"
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = "TAG Lingua"
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = "URL modificati:"
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = "Modo scrittura"
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = "Seleziona un sommario precedentemente modificato"
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = "Carica"
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = "Percentuale tradotta"
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = "URL:"
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = "Titolo:"
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = "Descrizione"
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = "Azzera"
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = "Salva Pagina"
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = "Filtra siti web dai risultati"
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = "Siti da filtrare"
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = "Salva Filtro"
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = "Aggiungi Lingua"
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = "Nome Lingua:"
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = "TAG Lingua:"
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = "Modo scrittura:"
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = "Invia"
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = "Nome Lingua"
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = "TAG Lingua"
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = "Modo scrittura"
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = "Aggiungi Macchina"
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = "Nome Macchina:"
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = "URL Macchina:"
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = "&Egrave; un mirror:"
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = "Nome Fonte:"
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = "Ha Server di Coda:"
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = "Numero Acquisitori:"
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = "Invia"
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = "Informazione Macchina"
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = "In attesa stato Macchine..."
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = "Stato Macchine non aggiornato..."
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = "Nome Ruolo: "
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "Aggiungi Ruolo"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = "Nome Ruolo: "
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = "Nome Ruolo: "
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "Utente: "
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = "Impostazione Nome Server"
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = "Chiave Server:"
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = "URL Nome Server:"
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = "Usa Memcache:"
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = "Server Memcache"
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = "Usa Filecache:"
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = "Impostazione Database"
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = "Sistema Database:"
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "Utente: "
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = "Nome Database:"
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = "Hostname:"
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = "Utente Database:"
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = "Password Database:"
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "Password: "
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "Riscrivi Password: "
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "Utente: "
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = "Unioni disponibili"
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = "Nome"
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = "Definizione"
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = "Azioni"
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = "L&#039;Unione non ha ancora componenti"
+; SigninElement.php line: 73
+signin_element_settings = "Impostazioni"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "Accedi"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = "Modifica"
+; SigninElement.php line: 81
+signin_element_signout = "Esci"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = "Usa come Indice"
+; SubsearchElement.php line: 69
+subsearch_element_more = "Pi&ugrave;"
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = "Cerca Indice"
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = "Cancella"
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = "Crea Unione Scansioni"
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = "Nome Unione:"
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = "Crea"
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "Impostazioni"
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "Accedi"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "Amministratore"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = "Opzioni temporali Scansion"
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = "Quantit&agrave; Byte da scaricare (0 - Valore):"
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = "Permetti Scansione pagina dopo:"
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = "Tipologia pagine da Scansionare:"
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = "Plugin di indicizzazione"
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = "Plugin"
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = "Usa nella Scansione"
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = "Elementi e link pagina di ricerca"
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = "Suggerimento parola"
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = "Sotto-ricerca"
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = "Accesso"
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = "Archivio"
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = "Simile"
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = "Inlink"
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = "Indirizzo IP"
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = "Fattori del posto"
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = "Peso Titolo:"
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = "Peso Descrizione:"
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = "Peso Link:"
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = "Raggruppa risultati di ricerca"
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = "Minimo risultati da raggruppare:"
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = "Server Alpha:"
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = "Salva"
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = "Fine Accesso in un minuto!!"
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = "Salva"
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = "Modifica Pagina risultati"
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = "URL modificati:"
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = "Seleziona un sommario precedentemente modificato"
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = "Carica"
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = "URL:"
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = "Titolo:"
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = "Descrizione"
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = "Azzera"
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = "Salva Pagina"
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = "Filtra siti web dai risultati"
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = "Siti da filtrare"
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = "Salva Filtro"
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = "Precedente"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = "Prossimo"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = "Acceso"
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = "Spento"
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = "Acceso"
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = "Spento"
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = "Acceso"
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = "Spento"
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = "Yioop! Motore di Ricerca in PHP: %s"
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = "Risultati di ricerca per: %s"
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = "Yioop! Motore di Ricerca in PHP"
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = "Software PHP per la creazione di motori di ricerca"
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = "Statistiche ricerca"
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = "Tempo di ricerca: %s secondi."
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = "Tempo: %s secondi."
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = "Nessuna Macchina monitorata"
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = "Log"
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = "Mirror"
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = "Log"
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = "Server di Coda"
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = "Log"
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = "Server di Coda"
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = "La Macchina non ha un Server di Coda"
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = "Log"
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = "La Macchina non ha acquisitori"
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = "Acquisitori"
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = "Log"
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = "Impostazione Nome Server"
+; NocacheView.php line: 54
+nocache_view_no_cache = "Non ha un archivio dell&#039;oggetto richiesto."
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = "Chiave Server:"
+; NocacheView.php line: 59
+nocache_view_summary_contents = "Dati dei Sommari memorizzati in Yioop "
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = "URL Nome Server:"
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = "Usa Memcache:"
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = "Server Memcache"
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = "Usa Filecache:"
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = "Impostazione Database"
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = "Sistema Database:"
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = "Nome Database:"
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = "Hostname:"
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = "Utente Database:"
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = "Password Database:"
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "Impostazioni"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "Accedi"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "Esci"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = "Pi&ugrave;"
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = "Yioop! Motore di Ricerca in PHP"
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = "Inserisci i termini di ricerca"
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = "Scrivi quello che stai cercando"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "Cerca"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = "Altre statistiche"
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = "Calccolati in %s secondi."
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "Mostra risultati %s - %s di %s"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = "Archivio"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = "Vedi&nbsp;come&nbsp;testo"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = "Simile"
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = "Inlink"
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "Pos.: %s "
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = "Rel: %s "
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = "Pros: %s"
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = "Punteggio %s"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "Impostazioni"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "Risultati per Pagina:"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = "Cerca nell&#039;Indice:"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "Lingua:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "Salva impostazioni"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = "Accedi"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "Utente"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "Password"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "Accedi"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = "Yioop! Motore di Ricerca in PHP"
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = "Statistiche"
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = "Calcolo in corso... si prega di aspettare."
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = "Codici di errore"
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = "Dimensioni file scaricati"
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = "Media link per pagina"
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = "Data modifica Pagina"
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = "Tempo di risposta DNS"
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = "Tempo di scaricamento Pagina"
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = "Domini di Primo Livello"
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = "Tipo di estensione"
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = "Tipo Media"
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "Precedente"
+; StatisticsView.php line: 103
+statistics_view_language = "Lingua Pagina"
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "Prossimo"
+; StatisticsView.php line: 104
+statistics_view_server = "Web Server"
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = "Sistema Operativo (se rilevato)"
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = "Info generari Indice"
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = "Descrizione Indice"
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = "Marca Temporale"
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = "Inizio Scansione"
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = "Pagine Scaricate"
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = "URL visti"
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = "Hostname Visti"
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = "Acceso"
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = "Spento"
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = "Acceso"
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = "Spento"
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = "Acceso"
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = "Spento"
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = "Yioop! Motore di Ricerca in PHP: %s"
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = "Risultati di ricerca per: %s"
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = "Yioop! Motore di Ricerca in PHP"
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = "Software PHP per la creazione di motori di ricerca"
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = "Statistiche ricerca"
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = "Tempo di ricerca: %s secondi."
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = "Tempo: %s secondi."
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = "Fine Accesso in un minuto!!"
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/it/statistics.txt b/locale/it/statistics.txt
index b752bdd..8698e9b 100755
--- a/locale/it/statistics.txt
+++ b/locale/it/statistics.txt
@@ -1 +1 @@
-d:28;
\ No newline at end of file
+d:27;
\ No newline at end of file
diff --git a/locale/ja/configure.ini b/locale/ja/configure.ini
index 08345f1..3a8057c 100755
--- a/locale/ja/configure.ini
+++ b/locale/ja/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "ログアウト成功"
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = "%sのこのキャッシュされたバージョンは%sのウィオップから入手しました。"
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "設定の保存しました"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "ログアウト成功"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = "管理"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = "自動なログアウト一分ぐらい"
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "ログアウト成功"
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = "%sのこのキャッシュされたバージョンは%sのウィオップから入手しました。"
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "設定の保存しました"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "ログアウト成功"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "管理"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = "自動なログアウト一分ぐらい"
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = "現在処理しています"
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "削除"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = "さっきの検索はありません"
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = "アクティビティ"
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = "自動なログアウト一分ぐらい"
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = "作業ディレクトリ"
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = "負荷または作成"
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = "プロフィールの設定"
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = "デフォルトの言語"
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = "デバッグのディスペル"
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = "エラー情報"
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = "アイテムのキャッシュはありません"
+; ConfigureElement.php line: 120
+configure_element_query_info = "キュエリ情報"
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = "テスト情報"
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = "検索ロボット設定"
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = "ロボット名"
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = "ロボット説明"
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "戻る"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = "検索オプションの編集"
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = "検索の順序"
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = "URLで制限"
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = "検索ができます"
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = "シッドサイト"
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "保存オプション"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = "戻る"
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = "ローケルの編集:%s"
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = "探している情報を入力してください。"
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "探している情報を入力してください。"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "検索"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = "%s分で計算しました。"
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = "結果表示%s ー %s の %s"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = "キャッシューしました。"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = "テクストビュー"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = "同じビュー"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = "ランク:%s"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = "関連:%s"
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = "近さ: %s"
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = "スコア %s"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "設定"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "ページごとの結果:"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "検索指数"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "言語:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = "設定の保存"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = "サインイン"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = "ユーザー名"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "パスワード"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = "ログイン"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = "ユーザー名"
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "新しいパスワード"
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "歳入力パスワード"
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = "保存"
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = "自動なログアウト一分ぐらい"
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "アクティビティ"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = "作業ディレクトリ"
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = "負荷または作成"
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = "プロフィールの設定"
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = "デフォルトの言語"
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = "デバッグのディスペル"
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = "エラー情報"
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = "キュエリ情報"
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = "テスト情報"
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = "検索ロボット設定"
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = "ロボット名"
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = "ロボット説明"
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "戻る"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = "検索オプションの編集"
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = "検索の順序"
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = "URLで制限"
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = "検索ができます"
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = "シッドサイト"
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "保存オプション"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = "検索の作成"
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = "説明"
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = "新しい検索を始まる"
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = "オプション"
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = "検索ステータスを待っている"
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = "検索ステータス編集もうできました"
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = "戻る"
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = "ローケルの編集:%s"
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = "ローケルリスト"
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = "ローケル名"
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = "ローケルのタッグ"
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = "書き込みモード"
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = "翻訳%"
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "ユーザー名"
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = "ローケルの追加"
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = "ローケル名"
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = "ローケルタッグ"
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = "書き込みモード"
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "新しいパスワード"
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "歳入力パスワード"
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = "サブミット"
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = "保存"
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = "ローケル名"
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = "ローケルのタッグ"
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = "書き込みモード"
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = "役割名"
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "役割の追加"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = "役割名"
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = "役割名"
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = "ユーザー名"
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = "ユーザー名"
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "パスワード"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "歳入力パスワード"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = "ユーザー名"
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = "検索の作成"
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = "説明"
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = "新しい検索を始まる"
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = "オプション"
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = "検索ステータスを待っている"
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = "検索ステータス編集もうできました"
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "設定"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "サインイン"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "管理"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = "ローケルリスト"
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = "ローケル名"
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = "ローケルのタッグ"
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = "書き込みモード"
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = "翻訳%"
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = "ローケルの追加"
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = "ローケル名"
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = "ローケルタッグ"
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = "書き込みモード"
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = "サブミット"
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = "ローケル名"
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = "ローケルのタッグ"
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = "書き込みモード"
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = "役割名"
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "役割の追加"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = "役割名"
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = "役割名"
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "ユーザー名"
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = "データベースの設定"
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = "データベースシステム"
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "ユーザー名"
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = "データベース名"
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = "データベースユーザー"
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = "データベースパスワード"
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "パスワード"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "歳入力パスワード"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "ユーザー名"
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = "設定"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "サインイン"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = "ログアウト"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "設定"
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "サインイン"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "管理"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = "自動なログアウト一分ぐらい"
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = "前に"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = "次の"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = "ヘルプ 探している情報を見つける。"
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = "キュエリの統計"
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = "経過時間の合計:%s分"
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = "キュエリ時間:%s分"
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = "アイテムのキャッシュはありません"
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = "データベースの設定"
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = "データベースシステム"
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = "データベース名"
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = "データベースユーザー"
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = "データベースパスワード"
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "設定"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "サインイン"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "ログアウト"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = "探している情報を入力してください。"
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = "探している情報を入力してください。"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "検索"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = "%s分で計算しました。"
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "結果表示%s ー %s の %s"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = "キャッシューしました。"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = "テクストビュー"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = "同じビュー"
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "ランク:%s"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = "関連:%s"
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = "近さ: %s"
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = "スコア %s"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "設定"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "ページごとの結果:"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = "検索指数"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "言語:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "設定の保存"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = "サインイン"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "ユーザー名"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "パスワード"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "ログイン"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "前に"
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "次の"
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = "ヘルプ 探している情報を見つける。"
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = "キュエリの統計"
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = "経過時間の合計:%s分"
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = "キュエリ時間:%s分"
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = "自動なログアウト一分ぐらい"
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/kn/configure.ini b/locale/kn/configure.ini
index 173d06a..0d07d47 100755
--- a/locale/kn/configure.ini
+++ b/locale/kn/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = ""
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = ""
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = "ಪರಿಶೀಲನೆ ತೇರ್ಗಡೆ
 ; SystemComponent.php line: 1220
 system_component_using_local_config = "configs/local_config.php ಉಪಯೋಗದಲ್ಲಿದೆ, ಅದರಿಂದ ಮೇಲಿನ ಕಾರ್ಯ ನಿರ್ದೇಶಿಕೆಯನ್ನು ಬದಲಾವಣೆ ನಿಷ್ಕ್ರಿಯವಾಗಬಹುದು "
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = ""
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = ""
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = ""
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = ""
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = ""
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = ""
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = "ಯೂಪ್!, ಪಿಹೆಚಪಿ ಶೋಧನಾ ಯಂತ್ರ "
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = "ನೀವು ಶೋಧಿಸಬೇಕಾದ ಪದ ವನ್ನು ಇಲ್ಲಿ ಬರೆಯಿರಿ "
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "ನಿಮ್ಮ ಪ್ರಶ್ನೆಯನ್ನು ಇಲ್ಲಿ ಬರೆಯಿರಿ "
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "ಹುಡುಕು"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = "ಲೆಕ್ಕಾಚಾರದ ಸಮಯ %s ಸೆಕೆಂಡು"
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = "ತೋರಿಸುತ್ತಿರುವ ಫಲಿತಾಂಶಗಳು %s - %s ಆಫ್ %s"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = "ಸಿದ್ಧ ಸ್ಮೃತಿಕೋಶದಿಂದ ನೋಡಿ"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = "ಪಠ್ಯ ರೂಪದಲ್ಲಿ ನೋಡಿ"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = "ಸಮಾನರೂಪದ"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = "ಒಳ ಕೊಂಡಿ"
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = "ಸ್ಥಾನ: %s"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = "ಪ್ರಾಸ್ತಾವಿಕ: %s"
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = "ಸಾನಿಧ್ಯ: %s"
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = "ಅಂಕ: %s "
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "ನಿಗದಿಗಳು"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "ಪ್ರತಿ ಪುಟದಲ್ಲಿ ಫಲಿತಾಂಶಗಳ ಸಂಖ್ಯೆ:"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "ಶೋಧನಾ ಸೂಚಿಕೆ"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "ಭಾಷೆ:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = "ಈ ಹೊಂದಾಣಿಕೆಯನ್ನು ಉಳಿಸಿ"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = "ಒಳಪ್ರವೇಶಿಸಿ"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = "ಬಳಕೆದಾರನ ಹೆಸರು"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "ಪ್ರವೇಶ ಪದ"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = "ಒಳಪ್ರವೇಶಿಸಿ"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "ನಿಗದಿಗಳು"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "ಒಳಪ್ರವೇಶಿಸಿ"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "ಕಾರ್ಯ ನಿರ್ವಾಹಕ "
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = "ನಿಗದಿಗಳು"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "ಒಳಪ್ರವೇಶಿಸಿ"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = "ನಿಷ್ಕ್ರಮಿಸಿ"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "ನಿಗದಿಗಳು"
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "ಒಳಪ್ರವೇಶಿಸಿ"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "ಕಾರ್ಯ ನಿರ್ವಾಹಕ "
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = "ಹಿಂದಿನ"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = "ಮುಂದಿನ"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = "ಪಿಹೆಚಪಿ ಶೋಧನಾ ಯಂತ್ರ - ಯೂಪ್!: %s"
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = "ಈ ಶೋಧನಾ ಫಲಿತಾಂಶಗಳು ನಿಮ್ಮ ಪ್ರಶ್ನೆ: %s  ಯ ಉತ್ತರ"
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = "ಪಿಹೆಚಪಿ ಶೋಧನಾ ಯಂತ್ರ - ಯೂಪ್!"
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = "ಪಿಹೆಚಪಿ ಕ್ರಾವ್ಲರ್ ಮತ್ತು ಶೋಧನಾ ಯಂತ್ರದ ತಂತ್ರಾಂಶ "
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = "ಸಮಯ: %s ಸೆಕೆಂಡುಗಳು"
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "ನಿಗದಿಗಳು"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "ಒಳಪ್ರವೇಶಿಸಿ"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "ನಿಷ್ಕ್ರಮಿಸಿ"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = "ಯೂಪ್!, ಪಿಹೆಚಪಿ ಶೋಧನಾ ಯಂತ್ರ "
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = "ನೀವು ಶೋಧಿಸಬೇಕಾದ ಪದ ವನ್ನು ಇಲ್ಲಿ ಬರೆಯಿರಿ "
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = "ನಿಮ್ಮ ಪ್ರಶ್ನೆಯನ್ನು ಇಲ್ಲಿ ಬರೆಯಿರಿ "
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "ಹುಡುಕು"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = "ಲೆಕ್ಕಾಚಾರದ ಸಮಯ %s ಸೆಕೆಂಡು"
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "ತೋರಿಸುತ್ತಿರುವ ಫಲಿತಾಂಶಗಳು %s - %s ಆಫ್ %s"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = "ಸಿದ್ಧ ಸ್ಮೃತಿಕೋಶದಿಂದ ನೋಡಿ"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = "ಪಠ್ಯ ರೂಪದಲ್ಲಿ ನೋಡಿ"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = "ಸಮಾನರೂಪದ"
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = "ಒಳ ಕೊಂಡಿ"
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "ಸ್ಥಾನ: %s"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = "ಪ್ರಾಸ್ತಾವಿಕ: %s"
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = "ಸಾನಿಧ್ಯ: %s"
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = "ಅಂಕ: %s "
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "ನಿಗದಿಗಳು"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "ಪ್ರತಿ ಪುಟದಲ್ಲಿ ಫಲಿತಾಂಶಗಳ ಸಂಖ್ಯೆ:"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = "ಶೋಧನಾ ಸೂಚಿಕೆ"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "ಭಾಷೆ:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "ಈ ಹೊಂದಾಣಿಕೆಯನ್ನು ಉಳಿಸಿ"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = "ಒಳಪ್ರವೇಶಿಸಿ"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "ಬಳಕೆದಾರನ ಹೆಸರು"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "ಪ್ರವೇಶ ಪದ"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "ಒಳಪ್ರವೇಶಿಸಿ"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "ಹಿಂದಿನ"
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "ಮುಂದಿನ"
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = "ಪಿಹೆಚಪಿ ಶೋಧನಾ ಯಂತ್ರ - ಯೂಪ್!: %s"
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = "ಈ ಶೋಧನಾ ಫಲಿತಾಂಶಗಳು ನಿಮ್ಮ ಪ್ರಶ್ನೆ: %s  ಯ ಉತ್ತರ"
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = "ಪಿಹೆಚಪಿ ಶೋಧನಾ ಯಂತ್ರ - ಯೂಪ್!"
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = "ಪಿಹೆಚಪಿ ಕ್ರಾವ್ಲರ್ ಮತ್ತು ಶೋಧನಾ ಯಂತ್ರದ ತಂತ್ರಾಂಶ "
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = "ಸಮಯ: %s ಸೆಕೆಂಡುಗಳು"
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/ko/configure.ini b/locale/ko/configure.ini
index d7db92c..d3ded6f 100755
--- a/locale/ko/configure.ini
+++ b/locale/ko/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "로그 아웃 성공!!"
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = "현재 캐시 버젼 %s 은 Yioop 크롤 %s 에 의하여 얻어 졌습니다. "
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "현재 세팅이 저장됐습니다."
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "로그 아웃 성공!!"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = "관리자"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = "1 분내에 자동 로그 아웃 됍니다."
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "로그 아웃 성공!!"
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = "현재 캐시 버젼 %s 은 Yioop 크롤 %s 에 의하여 얻어 졌습니다. "
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "현재 세팅이 저장됐습니다."
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "로그 아웃 성공!!"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "관리자"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = "1 분내에 자동 로그 아웃 됍니다."
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = "현재 실행중"
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "삭제"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = "전 크롤들이 없습니다."
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = "활동들"
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = "1 분내에 자동 로그 아웃 됍니다."
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = "검색 엔진 작업 디렉토리"
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = "로드 또는 생성"
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = "프로필 세팅들"
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = "디폴트 언어:"
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = "디버그 표시"
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = "에러 정보"
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = "요청하신 아이템의 캐시가 없었습니다."
+; ConfigureElement.php line: 120
+configure_element_query_info = "퀘리 정보"
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = "테스트 정보"
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = "크롤 로봇 설정"
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = "로봇 기술 "
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = "크롤 로봇 이름:"
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "뒤"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = "크롤 옵션들 편집"
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = "크롤 순서:"
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = "사이트들을 주소로 제한:"
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = "크롤을 허가한 사이트들"
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = "씨드 사이트들"
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "옵션들 저장하기"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = "뒤"
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = "로케일 편집: %s"
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = "검색하고 싶은 단어들을 적어 주십시요."
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "찾고자 하는걸 적어 주십시요."
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "검색"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = "%s 초 결과 완료"
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = "결과 %s - %s 의 %s"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = "캐시 됀것"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = "일반 텍스트로써 보기"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = "유사성"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = "인링크"
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = "랭크: %s"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = "관련성: %s "
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = "점수 %s"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "세팅"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "한 페이지 당 결과물 "
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "인덱스 찾기:"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "언어:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = "세팅 저장"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = "사인인"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = "아이디"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "비밀 번호"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = "로그인"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = "사용자:"
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "새 비밀번호:"
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "다시 비밀번호를 적어주십시요:"
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = "저장"
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = "1 분내에 자동 로그 아웃 됍니다."
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "활동들"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = "검색 엔진 작업 디렉토리"
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = "로드 또는 생성"
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = "프로필 세팅들"
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = "디폴트 언어:"
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = "디버그 표시"
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = "에러 정보"
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = "퀘리 정보"
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = "테스트 정보"
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = "크롤 로봇 설정"
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = "로봇 기술 "
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = "크롤 로봇 이름:"
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "뒤"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = "크롤 옵션들 편집"
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = "크롤 순서:"
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = "사이트들을 주소로 제한:"
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = "크롤을 허가한 사이트들"
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = "씨드 사이트들"
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "옵션들 저장하기"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = "크롤 생성하기"
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = "기술"
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = "새 크롤 시작하기"
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = "옵션들"
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = "기다리고 있는 크롤 상태"
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = "크롤 상태를 더이상 업데이트 하지 않습니다."
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = "뒤"
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = "로케일 편집: %s"
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = "로케일 리스트"
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = "로케일 이름"
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = "로케일 태그"
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = "쓰기 모드"
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = "번역됀 퍼센트"
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "사용자:"
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = "로케일 추가"
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = "로케일 이름:"
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = "로케일 태그:"
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = "쓰기 모드:"
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "새 비밀번호:"
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "다시 비밀번호를 적어주십시요:"
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = "제출"
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = "저장"
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = "로케일 이름"
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = "로케일 태그"
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = "쓰기 모드"
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = "롤 이름:"
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "롤 추가"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = "롤 이름:"
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = "롤 이름:"
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = "사용자:"
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = "사용자:"
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "비밀번호:"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "비밀번호를 다시 적어주십시요"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = "사용자:"
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = "크롤 생성하기"
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = "기술"
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = "새 크롤 시작하기"
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = "옵션들"
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = "기다리고 있는 크롤 상태"
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = "크롤 상태를 더이상 업데이트 하지 않습니다."
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "세팅"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "로그 인"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "관리자"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = "로케일 리스트"
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = "로케일 이름"
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = "로케일 태그"
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = "쓰기 모드"
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = "번역됀 퍼센트"
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = "로케일 추가"
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = "로케일 이름:"
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = "로케일 태그:"
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = "쓰기 모드:"
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = "제출"
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = "로케일 이름"
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = "로케일 태그"
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = "쓰기 모드"
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = "롤 이름:"
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "롤 추가"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = "롤 이름:"
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = "롤 이름:"
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "사용자:"
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = "데이터베이스 설정"
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = "데이터베이스 시스템:"
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "사용자:"
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = "데이터베이스 이름:"
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = "데이터베이스 사용자:"
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = "데이터베이스 비밀번호:"
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "비밀번호:"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "비밀번호를 다시 적어주십시요"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "사용자:"
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = "세팅"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "로그 인"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = "로그 아웃"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "세팅"
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "로그 인"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "관리자"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = "1 분내에 자동 로그 아웃 됍니다."
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = "이전"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = "다음"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = "PHP 검색 엔진 - Yioop! : %s"
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = "%s 에 대한 서치 결과:"
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = "PHP 검색 엔진 - Yioop!"
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = "찾고자 하는걸 도와드립니다."
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = "퀘리 분석"
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = "퀘리: %s 초."
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = "시간: %s 초."
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = "요청하신 아이템의 캐시가 없었습니다."
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = "데이터베이스 설정"
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = "데이터베이스 시스템:"
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = "데이터베이스 이름:"
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = "데이터베이스 사용자:"
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = "데이터베이스 비밀번호:"
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "세팅"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "로그 인"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "로그 아웃"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = "검색하고 싶은 단어들을 적어 주십시요."
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = "찾고자 하는걸 적어 주십시요."
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "검색"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = "%s 초 결과 완료"
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "결과 %s - %s 의 %s"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = "캐시 됀것"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = "일반 텍스트로써 보기"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = "유사성"
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = "인링크"
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "랭크: %s"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = "관련성: %s "
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = "점수 %s"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "세팅"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "한 페이지 당 결과물 "
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = "인덱스 찾기:"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "언어:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "세팅 저장"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = "사인인"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "아이디"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "비밀 번호"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "로그인"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "이전"
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "다음"
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = "PHP 검색 엔진 - Yioop! : %s"
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = "%s 에 대한 서치 결과:"
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = "PHP 검색 엔진 - Yioop!"
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = "찾고자 하는걸 도와드립니다."
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = "퀘리 분석"
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = "퀘리: %s 초."
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = "시간: %s 초."
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = "1 분내에 자동 로그 아웃 됍니다."
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/ko/statistics.txt b/locale/ko/statistics.txt
index 68101b7..09559c0 100755
--- a/locale/ko/statistics.txt
+++ b/locale/ko/statistics.txt
@@ -1 +1 @@
-d:12;
\ No newline at end of file
+d:11;
\ No newline at end of file
diff --git a/locale/nl/configure.ini b/locale/nl/configure.ini
index 9c8e91a..dc0886d 100755
--- a/locale/nl/configure.ini
+++ b/locale/nl/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = "Cookies die nodig zijn om in te loggen!!"
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = "oplopend"
 ; AdminController.php line: 558
 admin_controller_sort_descending = "aflopend"
 ;
-; MachineController.php line: 193
-machine_controller_nolines = "Geen Lijnen Match Filter!"
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = "Cookies moeten worden ingeschakeld om te registreren of log in om een Yioop!"
-;
-; RegisterController.php line: 315
-register_controller_account_created = "Houdend met succes aangemaakt!!"
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = "Registratie e-mail gestuurd!"
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = "Yioop gebruiker heeft Gevraagde Activering"
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = "Geachte %s %s,"
-;
-; RegisterController.php line: 338
-register_controller_email_body = "Deze e-mail werd gegeven in een rekeningsverwezenlijking verzoek Yioop. Als u ge&iuml;nteresseerd bent in een Yioop rekening zijn wij u hieronder het adres gebruiken het registratieproces te voltooien."
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = "Account registratie aanvraag is verzonden!"
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = "Yioop gebruiker heeft Gevraagde Activering"
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = "Gebruiker %s %s met gebruikersnaam %s heeft verzocht de activering van hun rekening."
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = "E-mail verificatie fout!!"
-;
-; RegisterController.php line: 425
-register_controller_already_activated = "Account is al geactiveerd!"
-;
-; RegisterController.php line: 432
-register_controller_account_activated = "Account succesvol geactiveerd!!"
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = "E-mail verificatie fout!!"
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = "Niet in staat om rekening te herstellen!"
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = "Niet in staat om rekening te herstellen!"
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = "Recover account E Verzonden!!"
-;
-; RegisterController.php line: 500
-register_controller_recover_request = "Yioop Account Recovery Request"
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = "Geachte %s %s,"
-;
-; RegisterController.php line: 503
-register_controller_recover_body = "Een verzoek werd gedaan om uw Yioop wachtwoord te achterhalen. Als dit juist is, dan kunt u plak de onderstaande link in een browser en vul het formulier gepresenteerd."
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = "Niet in staat om rekening te herstellen!"
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = "Niet in staat om rekening te herstellen!"
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = "Niet in staat om rekening te herstellen!"
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = "Recover e-mail al gebruikt!"
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = "Recover e-mail is verlopen!"
-;
-; RegisterController.php line: 579
-register_controller_password_changed = "Wachtwoord veranderd!"
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = "Wachtwoorden komen niet overeen!"
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = "Recover e-mail al gebruikt!"
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = "Recover e-mail is verlopen!"
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = "Formaat van URL is ongeldig!"
-;
-; RegisterController.php line: 736
-register_controller_error_fields = "Starred velden moeten correct worden ingevuld!"
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = "Hash-code niet overeen!"
-;
-; RegisterController.php line: 759
-register_controller_failed_human = "Kreeg de menselijke controle vragen verkeerd!"
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = "Captcha Mis-aangegaan!"
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = "Suggereren URL buffer vol is! Probeer het later opnieuw!"
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = "Gesuggereerd URL gered!"
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = "Cookies moeten worden ingeschakeld om te registreren of log in om een Yioop!"
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = "Kreeg de menselijke controle vragen verkeerd!"
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = "Captcha Mis-aangegaan!"
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = "Hash-code niet overeen!"
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = "Starred velden moeten correct worden ingevuld!"
-;
-; RegisterController.php line: 1069
-register_controller_check_email = "Controleer e-mailadres!"
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = "Geen account aangemaakt - Gebruikersnaam al in gebruik!!"
-;
-; SearchController.php line: 280
-search_controller_web = "web"
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "Afmelden Succesvolle!!"
-;
-; SearchController.php line: 549
-search_controller_mix_info = "Met behulp van Crawl Mix: %s"
-;
-; SearchController.php line: 555
-search_controller_crawl_info = "Index: %s - Grootte: %s paginas / %s urls"
-;
-; SearchController.php line: 591
-search_controller_search = "zoeken"
-;
-; SearchController.php line: 695
-search_controller_no_index_set = "Geen zoeken Index Set Voor gebruik!"
-;
-; SearchController.php line: 698
-search_controller_no_index_set = "Geen zoeken Index Set Voor gebruik!"
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = "Download ophalen: %s"
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = "De website in kwestie heeft verzocht deze pagina niet worden gearchiveerd."
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = "Deze afbeelding verscheen op de pagina:"
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = "onttrokken Titel"
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = "Ge&iuml;xtraheerd Beschrijving"
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = "Ge&iuml;xtraheerd Links"
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = "Ge&iuml;xtraheerd toegestaan te kruipen Paths"
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = "Ge&iuml;xtraheerd Verworpen te kruipen Paths"
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = "YioopBot Crawl Delay"
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = "Yioop Cache Pagina ... Deze pagina is aangepast om een robots richtlijn toe te voegen, maakt links absolute, voeg gewonnen samenvattingen, en om zoektermen te markeren."
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = "Deze cached versie van %s werd verkregen door het Yioop crawler op %s."
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = "Download ophalen: %s"
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = "Toggle Ge&iuml;xtraheerd Headers en Samenvattingen"
-;
-; SearchController.php line: 1821
-search_controller_history = "toggle Geschiedenis"
-;
-; SearchController.php line: 1991
-search_controller_all_cached = "Alle cache versies - Change Jaar en / of maanden naar links zien"
-;
-; SearchController.php line: 2022
-search_controller_year = "jaar:"
-;
-; SearchController.php line: 2023
-search_controller_month = "maand:"
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = "crawl mix"
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "Instellingen Opgeslagen!"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = "Afmelden Succesvolle"
-;
-; StaticController.php line: 146
-static_controller_complete_title = "Yioop! -%S"
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = "Geen berichten Toch"
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = "Controleer Geslaagd."
 ; SystemComponent.php line: 1220
 system_component_using_local_config = "Met behulp van configs / local_config.php dus veranderende werk directory hierboven kan niet werken."
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = "Geen Lijnen Match Filter!"
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "Afmelden Succesvolle!!"
+; RegisterController.php line: 249
+register_controller_need_cookies = "Cookies moeten worden ingeschakeld om te registreren of log in om een Yioop!"
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = "Houdend met succes aangemaakt!!"
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = "Registratie e-mail gestuurd!"
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = "Yioop gebruiker heeft Gevraagde Activering"
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = "Geachte %s %s,"
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = "Deze e-mail werd gegeven in een rekeningsverwezenlijking verzoek Yioop. Als u ge&iuml;nteresseerd bent in een Yioop rekening zijn wij u hieronder het adres gebruiken het registratieproces te voltooien."
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = "Account registratie aanvraag is verzonden!"
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = "Yioop gebruiker heeft Gevraagde Activering"
 ;
-; AdminView.php line: 71
-admin_view_admin = "admin"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = "Gebruiker %s %s met gebruikersnaam %s heeft verzocht de activering van hun rekening."
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = "Automatisch uitloggen in One Minute!!"
+; RegisterController.php line: 419
+register_controller_email_verification_error = "E-mail verificatie fout!!"
+;
+; RegisterController.php line: 425
+register_controller_already_activated = "Account is al geactiveerd!"
+;
+; RegisterController.php line: 432
+register_controller_account_activated = "Account succesvol geactiveerd!!"
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = "E-mail verificatie fout!!"
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = "Niet in staat om rekening te herstellen!"
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = "Niet in staat om rekening te herstellen!"
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = "Recover account E Verzonden!!"
+;
+; RegisterController.php line: 500
+register_controller_recover_request = "Yioop Account Recovery Request"
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = "Geachte %s %s,"
+;
+; RegisterController.php line: 503
+register_controller_recover_body = "Een verzoek werd gedaan om uw Yioop wachtwoord te achterhalen. Als dit juist is, dan kunt u plak de onderstaande link in een browser en vul het formulier gepresenteerd."
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = "Niet in staat om rekening te herstellen!"
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = "Niet in staat om rekening te herstellen!"
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = "Niet in staat om rekening te herstellen!"
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = "Recover e-mail al gebruikt!"
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = "Recover e-mail is verlopen!"
+;
+; RegisterController.php line: 579
+register_controller_password_changed = "Wachtwoord veranderd!"
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = "Wachtwoorden komen niet overeen!"
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = "Recover e-mail al gebruikt!"
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = "Recover e-mail is verlopen!"
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = "Formaat van URL is ongeldig!"
+;
+; RegisterController.php line: 736
+register_controller_error_fields = "Starred velden moeten correct worden ingevuld!"
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = "Hash-code niet overeen!"
+;
+; RegisterController.php line: 759
+register_controller_failed_human = "Kreeg de menselijke controle vragen verkeerd!"
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = "Captcha Mis-aangegaan!"
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = "Suggereren URL buffer vol is! Probeer het later opnieuw!"
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = "Gesuggereerd URL gered!"
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = "Cookies moeten worden ingeschakeld om te registreren of log in om een Yioop!"
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = "Kreeg de menselijke controle vragen verkeerd!"
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = "Captcha Mis-aangegaan!"
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = "Hash-code niet overeen!"
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = "Starred velden moeten correct worden ingevuld!"
+;
+; RegisterController.php line: 1069
+register_controller_check_email = "Controleer e-mailadres!"
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = "Geen account aangemaakt - Gebruikersnaam al in gebruik!!"
+;
+; SearchController.php line: 280
+search_controller_web = "web"
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "Afmelden Succesvolle!!"
+;
+; SearchController.php line: 549
+search_controller_mix_info = "Met behulp van Crawl Mix: %s"
+;
+; SearchController.php line: 555
+search_controller_crawl_info = "Index: %s - Grootte: %s paginas / %s urls"
+;
+; SearchController.php line: 591
+search_controller_search = "zoeken"
+;
+; SearchController.php line: 695
+search_controller_no_index_set = "Geen zoeken Index Set Voor gebruik!"
+;
+; SearchController.php line: 698
+search_controller_no_index_set = "Geen zoeken Index Set Voor gebruik!"
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = "Download ophalen: %s"
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = "De website in kwestie heeft verzocht deze pagina niet worden gearchiveerd."
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = "Deze afbeelding verscheen op de pagina:"
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = "onttrokken Titel"
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = "Ge&iuml;xtraheerd Beschrijving"
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = "Ge&iuml;xtraheerd Links"
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = "Ge&iuml;xtraheerd toegestaan te kruipen Paths"
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = "Ge&iuml;xtraheerd Verworpen te kruipen Paths"
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = "YioopBot Crawl Delay"
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = "Yioop Cache Pagina ... Deze pagina is aangepast om een robots richtlijn toe te voegen, maakt links absolute, voeg gewonnen samenvattingen, en om zoektermen te markeren."
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = "Deze cached versie van %s werd verkregen door het Yioop crawler op %s."
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = "Download ophalen: %s"
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = "Toggle Ge&iuml;xtraheerd Headers en Samenvattingen"
+;
+; SearchController.php line: 1821
+search_controller_history = "toggle Geschiedenis"
+;
+; SearchController.php line: 1991
+search_controller_all_cached = "Alle cache versies - Change Jaar en / of maanden naar links zien"
+;
+; SearchController.php line: 2022
+search_controller_year = "jaar:"
+;
+; SearchController.php line: 2023
+search_controller_month = "maand:"
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = "crawl mix"
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "Instellingen Opgeslagen!"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = "Afmelden Succesvolle"
+;
+; StaticController.php line: 146
+static_controller_complete_title = "Yioop! -%S"
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "Afmelden Succesvolle!!"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "admin"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = "Automatisch uitloggen in One Minute!!"
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = "momenteel wordt verwerkt"
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "verwijderen"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = "Geen Vorige Crawls"
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = " %s Wiki Pagina Overleg"
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = "voeden"
+; ActivityElement.php line: 56
+activity_element_activities = "activiteiten"
 ;
-; GroupView.php line: 104
-group_view_wiki = "wiki"
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = "Gebruik Wiki Openbare hoofdpagina als Landing Pagina:"
 ;
-; GroupView.php line: 106
-group_view_user = " %s Gebruiker"
+; AppearanceElement.php line: 77
+appearance_element_background_color = "Achtergrondkleur:"
 ;
-; GroupView.php line: 109
-group_view_myfeeds = "mijn Feeds"
+; AppearanceElement.php line: 84
+appearance_element_background_image = "Achtergrond Afbeelding:"
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = "Automatisch uitloggen in One Minute!!"
+; AppearanceElement.php line: 91
+appearance_element_background_image = "Achtergrond Afbeelding:"
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = "Geen Bewaakte Machines"
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = "Voorgrondkleur:"
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = "Top Bar Kleur:"
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = "Name Server"
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = "Side bar Kleur:"
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = "Site Logo:"
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = "Name Server"
+; AppearanceElement.php line: 122
+appearance_element_site_logo = "Site Logo:"
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = "Mobile Logo:"
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = "Name Server"
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = "Mobile Logo:"
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = "media Updater"
+; AppearanceElement.php line: 148
+appearance_element_favicon = "favicon:"
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = "Inloggen"
+; AppearanceElement.php line: 155
+appearance_element_favicon = "favicon:"
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
+; AppearanceElement.php line: 163
+appearance_element_toolbar = "Zoek Toolbar:"
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = "verwijderen"
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = "tijdzone:"
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = "Machine Niet geconfigureerd!"
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = "Web Cookie Naam:"
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = "Spiegels %s"
+; AppearanceElement.php line: 184
+appearance_element_token_name = "Web Token Naam:"
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = "Inloggen"
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = "Auxiliary richtlijnen Stijl"
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = "Queue Server"
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = "Reset Aanpassingen"
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = "Inloggen"
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = "Queue Server"
+; ConfigureElement.php line: 72
+configure_element_work_directory = "Zoekmachine Werk Directory"
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = "Machine heeft geen wachtrij server"
+; ConfigureElement.php line: 76
+configure_element_load_or_create = "Laden of aanmaken"
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = "media Updater"
+; ConfigureElement.php line: 92
+configure_element_component_check = "component Controle"
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = "Inloggen"
+; ConfigureElement.php line: 96
+configure_element_profile_settings = "profiel Instellingen"
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = "Machine heeft geen fetchers"
+; ConfigureElement.php line: 101
+configure_element_default_language = "Standaard Taal:"
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = "Fetchers"
+; ConfigureElement.php line: 108
+configure_element_debug_display = "debug Weergave"
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = "Inloggen"
+; ConfigureElement.php line: 114
+configure_element_error_info = "fout Info"
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = "Had geen cache van opgevraagde item."
+; ConfigureElement.php line: 120
+configure_element_query_info = "query-Info"
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = "Samenvatting De gegevens die zijn opgeslagen in Yioop voor post"
+; ConfigureElement.php line: 126
+configure_element_test_info = "Test Info"
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = "Recover account"
+; ConfigureElement.php line: 131
+configure_element_site_access = "zoeken Access"
 ;
-; RecoverView.php line: 104
-register_view_new_password = "nieuw Wachtwoord"
+; ConfigureElement.php line: 136
+configure_element_web_access = "web"
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = "Typ het wachtwoord opnieuw:"
+; ConfigureElement.php line: 141
+configure_element_rss_access = "RSS"
 ;
-; RecoverView.php line: 131
-recover_view_username = "gebruikersnaam:"
+; ConfigureElement.php line: 146
+configure_element_api_access = "API"
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = "Herstel Info:"
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = "Crawl Robot Set-up"
 ;
-; RecoverView.php line: 153
-register_view_human_check = "Human Check:"
+; ConfigureElement.php line: 152
+configure_element_robot_name = "Crawl Robot Naam:"
 ;
-; RecoverView.php line: 185
-register_view_human_check = "Human Check:"
+; ConfigureElement.php line: 160
+configure_element_robot_instance = "Robot aanleg:"
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = "Recover account"
+; ConfigureElement.php line: 166
+configure_element_robot_description = "robot Beschrijving"
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = "Die woont of duurt het langst?"
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "terug"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = "Die woont of duurt het kortste?"
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = "Wijzigen Actief Crawl"
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = "bliksem, bacteriïn, mier, hond, paard, persoon, eik, planeet, ster, melkweg"
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = "Bewerk Crawl Opties"
 ;
-; RegisterView.php line: 79
-register_view_question1_most = "Dat is meer overvloedig?"
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = "web Crawl"
 ;
-; RegisterView.php line: 80
-register_view_question1_least = "Dat is minder overvloedig?"
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = "archief Crawl"
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = "continenten, landen, metros, steden, artsen, mensen, handen, tanden, haar, cellen, moleculen, atomen, protonen"
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = "Krijg Crawl Opties Van:"
 ;
-; RegisterView.php line: 82
-register_view_question2_most = "Dat is meestal meer prijzig?"
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = "Crawl Order:"
 ;
-; RegisterView.php line: 83
-register_view_question2_least = "Dat is meestal minder prijzig?"
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = "Beperken Sites Door Url:"
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = "een postzegel, een kop koffie, bioscoopkaartje, schoenen, fietsen, een maand huur, auto, huis, een elektriciteitscentrale"
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = "Toegestaan te kruipen sites"
 ;
-; RegisterView.php line: 85
-register_view_question3_most = "Dat is meer rond?"
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = "Afgekeurd sites / locaties met quota"
 ;
-; RegisterView.php line: 86
-register_view_question3_least = "Dat is minder ronde?"
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = "zaad sites"
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = "een stoel, de letter T, een banaan, een peer, een appel, een sinaasappel, een bol"
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = "Gebruiker toevoegen Suggestie gegevens"
 ;
-; RegisterView.php line: 88
-register_view_question4_most = "Die is meestal de grootste?"
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = "Sites om te injecteren op Huidige Crawl"
 ;
-; RegisterView.php line: 89
-register_view_question4_least = "Dat is meestal de kleinste?"
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = "Gebruiker toevoegen Suggestie gegevens"
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = "een munt, een honkbal, een melk gallon, winkelwagentje, koelkast, giraf, huis, vulkaan, de Maan, de Aarde"
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = "Kruipen of Arc Map om Re-index:"
 ;
-; RegisterView.php line: 91
-register_view_question5_most = "Welke is groter?"
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = "Yioop API-toegang nodig voor mix archief kruipt"
 ;
-; RegisterView.php line: 92
-register_view_question5_least = "Die korter is?"
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "Opties voor opslaan"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = "lieveheersbeestje, muis, kat, peuter, man, paard, olifant, giraf, hoog gebouw, berg"
+; EditclassifierElement.php line: 62
+editclassifier_back = "terug"
 ;
-; RegisterView.php line: 94
-register_view_question6_most = "Die langer duurt?"
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = "bewerk Classificator"
 ;
-; RegisterView.php line: 95
-register_view_question6_least = "Die kost minder tijd?"
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = "Classifier Label:"
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = "knipperen, lik envelop, kam het haar, make-up toe te passen, een film kijken, lopen marathon, olympics, de zomer vakantie, jaar"
+; EditclassifierElement.php line: 81
+editclassifier_change = "verandering"
 ;
-; RegisterView.php line: 97
-register_view_question7_most = "Die is heter klinkende?"
+; EditclassifierElement.php line: 86
+editclassifier_statistics = "statistiek"
 ;
-; RegisterView.php line: 98
-register_view_question7_least = "Dat is kouder klinkende?"
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = "Positieve voorbeelden:"
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = "Pluto, polaire verkennen, schaatsen, zwembad, thee, stoom, gesmolten ijzer, zon"
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = "Negatieve Voorbeelden:"
 ;
-; RegisterView.php line: 100
-register_view_question8_most = "Dat is de oudste?"
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = "nauwkeurigheid:"
 ;
-; RegisterView.php line: 101
-register_view_question8_least = "Welke is de nieuwste?"
+; EditclassifierElement.php line: 98
+crawl_component_na = "N / A"
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = "verse melk, de huidige president, je grootouders, vlucht bij Kitty Hawk, de Zwarte Dood, Egyptische piramiden, schrijven, grotschilderingen, dinosaurussen"
+; EditclassifierElement.php line: 103
+editclassifier_update = "-update"
 ;
-; RegisterView.php line: 103
-register_view_question9_most = "Die heeft meer?"
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = "Voorbeelden voegen"
 ;
-; RegisterView.php line: 104
-register_view_question9_least = "Die houdt minder?"
+; EditclassifierElement.php line: 113
+editclassifier_source = "bron:"
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = "theelepel, schotel, beker, kom, theepot, wastafel, vat, pick-up truck, verhuiswagen, olietanker"
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = "standaard Crawl"
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = "Dier je wilt de beste:"
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = "Label Door Hand"
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = "Dier je het minst:"
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = "All In Klasse"
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = "mier, konijntje, kat, kakkerlak, hond, goudvis, hamster, paard, slang, spin, tijger, walvis"
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = "Geen In Klasse"
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = "Kleur je het meest:"
+; EditclassifierElement.php line: 136
+editclassifier_keywords = "trefwoorden:"
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = "Kleur je wilt het minst:"
+; EditclassifierElement.php line: 145
+editclassifier_load = "belasting"
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = "geen kleur, aquamarijn, blauw, bruin, goud, groen, grijs, paars, roze, maagdenpalm, paars, rood, zilver, turkoois, geel"
+; EditclassifierElement.php line: 151
+editclassifier_finalize = "afronden"
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = "Voedsel dat je het liefst:"
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = "geen documenten"
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = "Voedsel dat je graag het minst:"
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = "terug"
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = "appel, banaan, kip, vis, lamsvlees, noten, oranje, varkensvlees, aardappel, tomaat, steak"
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = "Bewerken Landinstelling: %s"
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = "Drink je het meest:"
+; EditlocalesElement.php line: 78
+editlocales_element_show = "Toon:"
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = "Drink je het minst:"
+; EditlocalesElement.php line: 82
+editlocales_element_filter = "filter:"
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = "appelsap, bier, koffie, warme thee, ice tea, limonade, fruitsap, frisdrank, bruisend water, stilstaand water, wijn"
+; EditlocalesElement.php line: 87
+editlocales_element_go = "gaan"
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = "Spel je het meest:"
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = "Geen Matching Strings Left To Translate!"
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = "Spel je het minst:"
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = "basketbal, backgammon, dammen, schaken, voetbal, hockey, schaatsen, skiïn, tennis, volleybal"
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = "terug"
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = "Geluid dat u het liefst:"
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = "Bewerk Crawl Mix"
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = "Klinkt als het minst:"
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = "mix Naam"
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = "accordeon, trommel, fluit, gitaar, harmonica, harp, hoorn, hobo, piano, driehoek, trompet, viool, fluit, xylofoon"
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = "mix Components"
 ;
-; RegisterView.php line: 153
-register_view_create_account = "Maak Een Account Aan"
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = "Op Maximum aantal Zoeken Fragmenten!"
 ;
-; RegisterView.php line: 190
-register_view_firstname = "Voornaam:"
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = "Voeg Zoekresultaat Fragment"
 ;
-; RegisterView.php line: 205
-register_view_lastname = "Achternaam:"
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = "Opslaan"
 ;
-; RegisterView.php line: 219
-register_view_username = "gebruikersnaam:"
+; FooterElement.php line: 58
+footer_element_blog = "blog"
 ;
-; RegisterView.php line: 232
-register_view_email = "e-mail:"
+; FooterElement.php line: 60
+footer_element_privacy = "Privacy"
 ;
-; RegisterView.php line: 246
-register_view_password = "wachtwoord:"
+; FooterElement.php line: 62
+footer_element_terms = "Voorwaarden"
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = "Typ het wachtwoord opnieuw:"
+; FooterElement.php line: 64
+footer_element_tools = "gereedschap"
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = "Herstel Info:"
+; FooterElement.php line: 66
+footer_element_bot = "YioopBot"
 ;
-; RegisterView.php line: 281
-register_view_human_check = "Human Check:"
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = "Ontwikkeld op SeekQuarry"
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = "Herstel Info:"
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = "Human Check:"
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = "Door te klikken op Account, ik ga akkoord met de"
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = "Groep toevoegen"
 ;
-; RegisterView.php line: 331
-register_view_terms = "Yioop Voorwaarden"
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = "Verzoek Groep toevoegen"
 ;
-; RegisterView.php line: 333
-register_view_and = "en"
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = "Pagina bewerken"
 ;
-; RegisterView.php line: 335
-register_view_privacy = "Privacybeleid"
+; GroupfeedElement.php line: 118
+groupfeed_element_back = "Mijn Groep Feeds"
 ;
-; RegisterView.php line: 336
-register_view_period = "."
+; GroupfeedElement.php line: 121
+groupfeed_element_back = "Mijn Groep Feeds"
 ;
-; RegisterView.php line: 346
-register_view_create_account = "Maak Een Account Aan"
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = "Group Activity"
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = " %s Wiki Pagina Overleg"
 ;
-; SearchView.php line: 92
-search_view_title = "Yioop! PHP Zoekmachine"
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = "voeden"
 ;
-; SearchView.php line: 119
-search_view_input_label = "Voer de voorwaarden zou u willen het web zoeken"
+; GroupfeedElement.php line: 160
+group_view_wiki = "wiki"
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "Typ wat te vinden"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = " %s Gebruiker Feed"
 ;
-; SearchView.php line: 126
-search_view_search = "zoeken"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = "commentaar"
 ;
-; SearchView.php line: 155
-search_view_no_index_set = "Geen Standaard Index Set"
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = "wiki"
 ;
-; SearchView.php line: 164
-search_view_more_statistics = "meer Statistiek"
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = " %s berichten, %s discussies"
 ;
-; SearchView.php line: 201
-search_view_calculated = " %s seconden."
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = "Laatste bericht:"
 ;
-; SearchView.php line: 203
-search_view_results = "Toont %s - %s van %s"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = "commentaar"
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = "thesaurus Resultaten"
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = "Start nieuw onderwerp"
 ;
-; SearchView.php line: 339
-search_view_word_cloud = "woorden:"
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = "Start nieuw onderwerp"
 ;
-; SearchView.php line: 380
-search_view_cache = "gecached"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = "Deze groep heeft nog geen berichten!"
 ;
-; SearchView.php line: 382
-search_view_as_text = "Bekijk & nbsp; als & nbsp; tekst"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = "Draad bestaat niet! Misschien was verwijderd?"
 ;
-; SearchView.php line: 393
-search_view_similar = "soortgelijk"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = "uitgeven"
 ;
-; SearchView.php line: 402
-search_view_inlink = "inlinks"
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = "verwijderen"
 ;
-; SearchView.php line: 419
-search_view_rank = "Rang: %s"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = " %s berichten"
 ;
-; SearchView.php line: 421
-search_view_relevancy = "Rel: %s"
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = "uitzicht %s"
 ;
-; SearchView.php line: 423
-search_view_proximity = "Prox: %s"
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = "Start nieuw onderwerp in %s"
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = "Thesaurus: %s"
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = "Start nieuw onderwerp in %s"
 ;
-; SearchView.php line: 436
-search_view_score = "Score: %s"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = "Laatst gewijzigd: %s"
 ;
-; SettingsView.php line: 66
-settings_view_settings = "instellingen"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = "stem:"
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "Resultaten / Pagina:"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = "Laatste bericht:"
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = "Openen in tabbladen:"
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = "commentaar"
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "Zoek Index:"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = "Sleep items in het tekstveld om ze toe te voegen ..."
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "taal:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = "of klik om ze te selecteren."
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = "Voeg een reactie toe"
 ;
-; SettingsView.php line: 109
-settings_view_save = "Instellingen opslaan"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = "Opslaan"
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = "Installeer Yioop! Open Search Plugin"
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = "onderwerp"
 ;
-; SigninView.php line: 68
-signin_view_signin = "Aanmelden"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = "post"
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = "aanmelden"
+; GroupfeedElement.php line: 648
+groupfeed_element_save = "Opslaan"
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = "Inloggen Mislukt!"
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = "Bericht wijzigen"
 ;
-; SigninView.php line: 92
-signin_view_username = "gebruikersnaam"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = "onderwerp"
 ;
-; SigninView.php line: 99
-signin_view_password = "wachtwoord"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = "post"
 ;
-; SigninView.php line: 109
-signin_view_login = "Log In"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = "Opslaan"
 ;
-; SigninView.php line: 124
-signin_view_recover_password = "Wachtwoord Vergeten?"
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = "Groep feeds niet meer updaten!"
 ;
-; SigninView.php line: 129
-signin_view_create_account = "Maak Een Account Aan"
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = "terug"
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = "filter:"
 ;
-; StaticView.php line: 68
-static_view_title = "PHP Search Engine - Yioop!"
+; MachinelogElement.php line: 69
+machinelog_element_log_file = " %s Logbestand"
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = "statistiek"
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = "Schakel automatisch vernieuwen Off"
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = "Berekenen ... Even geduld aub."
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = "Schakel automatisch vernieuwen On"
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = "Foutcodes Seen"
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = "Knevel of de rekeningsinformatie editable is"
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = "Bestandsgrootte Gedownloade"
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = "Welkom, %s!"
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = "Gemiddeld links per pagina"
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = "Vanaf deze pagina kunt u toegang tot en controle aspecten van uw account."
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = "Pagina gewijzigd op Dates"
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = "account Details"
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = "DNS Lookup Tijd"
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = "user Icon"
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = "Pagina Download Tijd"
+; ManageaccountElement.php line: 117
+manageusers_element_username = "gebruikersnaam"
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = "Top Level Domains"
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = "Voornaam"
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = "file Extension"
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = "achternaam"
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = "Mediatype"
+; ManageaccountElement.php line: 136
+manageusers_element_email = "e-mail"
 ;
-; StatisticsView.php line: 103
-statistics_view_language = "Taal voor webpaginas"
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = "web Server"
+; ManageaccountElement.php line: 159
+manageaccount_element_password = "wachtwoord:"
 ;
-; StatisticsView.php line: 105
-statistics_view_os = "Besturingssysteem (indien gedetecteerd)"
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "Nieuw Wachtwoord:"
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = "General Index Info"
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "overtypen:"
 ;
-; StatisticsView.php line: 109
-statistics_view_description = "index Beschrijving"
+; ManageaccountElement.php line: 184
+manageaccount_element_save = "Opslaan"
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = "timestamp"
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = "Taal en zoeken Instellingen"
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = "Crawl Starttijd"
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = "Kruipt en indexen"
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = "gedownloade Pages"
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = "Crawlen en indexeren van de webpagina of een bestaand archief en het cre&iuml;ren van een doorzoekbare index."
 ;
-; StatisticsView.php line: 117
-statistics_view_url = "gezien Urls"
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = "Je hebt %s actief kruipt, %s vorige kruipen indexen."
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = "hostnames Seen"
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = "Beheer Crawls en indexen"
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = "Suggereren Een URL"
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = "Groepen en Feeds"
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = "Suggereer een site voor de volgende web crawl. Tot tien plaatsen per dag kan worden aanvaard."
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = "Maken of zich abonneren op groepen om te communiceren met vrienden."
 ;
-; SuggestView.php line: 95
-suggest_view_url = "URL:"
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = "U behoort tot %s groepen."
 ;
-; SuggestView.php line: 109
-register_view_human_check = "Human Check:"
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = "U behoort tot 1 groep."
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = "Human Check:"
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = "wiki"
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = "voorleggen"
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = " %s berichten, %s discussies"
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = "Laatste bericht:"
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = "Join / beheren Alle groepen"
 ;
-; View.php line: 93
-view_logo_alt_text = "Yioop"
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = "Zie Gecombineerde Groep Feeds"
 ;
-; WikiView.php line: 86
-wiki_view_read = "lezen"
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = "crawl Mixes"
 ;
-; WikiView.php line: 87
-wiki_view_edit = "uitgeven"
+; 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."
 ;
-; WikiView.php line: 90
-wiki_view_pages = "paginas"
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = "Je hebt %s kruipen mixen."
 ;
-; WikiView.php line: 135
-wiki_view_feed = "voeden"
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = "Je hebt %s kruipen mix."
 ;
-; WikiView.php line: 136
-wiki_view_wiki = "wiki"
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = "Maak / beheren Crawl Mixes"
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = "Automatisch uitloggen in One Minute!!"
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "activiteiten"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = "Gebruik Wiki Openbare hoofdpagina als Landing Pagina:"
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = "Achtergrondkleur:"
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = "Achtergrond Afbeelding:"
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = "Achtergrond Afbeelding:"
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = "Voorgrondkleur:"
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = "Top Bar Kleur:"
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = "Side bar Kleur:"
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = "Site Logo:"
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = "Site Logo:"
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = "Mobile Logo:"
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = "Mobile Logo:"
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = "favicon:"
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = "favicon:"
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = "Zoek Toolbar:"
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = "tijdzone:"
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = "Web Cookie Naam:"
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = "Web Token Naam:"
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = "Auxiliary richtlijnen Stijl"
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = "Reset Aanpassingen"
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = "Zoekmachine Werk Directory"
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = "Laden of aanmaken"
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = "component Controle"
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = "profiel Instellingen"
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = "Standaard Taal:"
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = "debug Weergave"
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = "fout Info"
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = "query-Info"
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = "Test Info"
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = "zoeken Access"
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = "web"
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = "RSS"
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = "API"
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = "Crawl Robot Set-up"
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = "Crawl Robot Naam:"
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = "Robot aanleg:"
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = "robot Beschrijving"
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "terug"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = "Wijzigen Actief Crawl"
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = "Bewerk Crawl Opties"
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = "web Crawl"
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = "archief Crawl"
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = "Krijg Crawl Opties Van:"
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = "Crawl Order:"
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = "Beperken Sites Door Url:"
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = "Toegestaan te kruipen sites"
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = "Afgekeurd sites / locaties met quota"
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = "zaad sites"
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = "Gebruiker toevoegen Suggestie gegevens"
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = "Sites om te injecteren op Huidige Crawl"
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = "Gebruiker toevoegen Suggestie gegevens"
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = "beschikbaar Classifiers"
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = "Kruipen of Arc Map om Re-index:"
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = "label"
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = "Yioop API-toegang nodig voor mix archief kruipt"
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = "positief"
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "Opties voor opslaan"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = "negatief"
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = "terug"
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = "acties"
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = "bewerk Classificator"
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = "uitgeven"
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = "Classifier Label:"
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = "afgerond"
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = "verandering"
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = "afronden"
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = "statistiek"
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = "afronden"
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = "Positieve voorbeelden:"
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = "finaliseren"
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = "Negatieve Voorbeelden:"
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = "nauwkeurigheid:"
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = "verwijderen"
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = "N / A"
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = "Beheer Classifiers"
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = "-update"
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = "naam"
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = "Voorbeelden voegen"
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = "cre&iuml;ren"
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = "bron:"
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = "zoeken"
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = "standaard Crawl"
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = "Maak Classificator Form"
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = "Label Door Hand"
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = "naam"
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = "All In Klasse"
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = "Maak Crawl"
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = "Geen In Klasse"
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = "naam"
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = "trefwoorden:"
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = "begin"
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = "belasting"
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = "opties"
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = "afronden"
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = "In afwachting van Crawlstatus"
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = "geen documenten"
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = "Crawlstatus niet meer updaten"
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = "terug"
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = "Geen abonnement op Groepen"
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = "Bewerken Landinstelling: %s"
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = "geabonneerd Groepen"
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = "Toon:"
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = "naam"
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = "filter:"
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = "eigenaar"
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = "gaan"
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = "Registreer"
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = "Geen Matching Strings Left To Translate!"
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = "toegang"
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = "stemming"
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = "terug"
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = "bericht Lifetime"
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = "Bewerk Crawl Mix"
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = "acties"
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = "mix Naam"
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = " %s gebruikers"
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = "mix Components"
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = " %s gebruikers"
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = "Op Maximum aantal Zoeken Fragmenten!"
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = "wiki"
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = "Voeg Zoekresultaat Fragment"
+; ManagegroupsElement.php line: 229
+managegroups_element_join = "toetreden"
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = "Opslaan"
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = "uitgeven"
 ;
-; FooterElement.php line: 58
-footer_element_blog = "blog"
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = "uitgeven"
 ;
-; FooterElement.php line: 60
-footer_element_privacy = "Privacy"
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = "verwijderen"
 ;
-; FooterElement.php line: 62
-footer_element_terms = "Voorwaarden"
+; ManagegroupsElement.php line: 249
+managegroups_element_join = "toetreden"
 ;
-; FooterElement.php line: 64
-footer_element_tools = "gereedschap"
+; ManagegroupsElement.php line: 254
+managegroups_element_join = "toetreden"
 ;
-; FooterElement.php line: 66
-footer_element_bot = "YioopBot"
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = "achteruitgang"
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = "Ontwikkeld op SeekQuarry"
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = "Uitschrijven"
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = "verwijderen"
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = "Groep toevoegen"
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = "Verzoek Groep toevoegen"
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = "Groep bewerken"
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = "Pagina bewerken"
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = "Groep maken"
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = "Mijn Groep Feeds"
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = "Cre&iuml;er / Lid worden van groep"
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = "Mijn Groep Feeds"
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = "naam"
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = "Group Activity"
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = "Blader"
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = " %s Wiki Pagina Overleg"
+; ManagegroupsElement.php line: 348
+managegroups_element_register = "Registreer"
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = "voeden"
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = "toegang"
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = "wiki"
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = "stemming"
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = " %s Gebruiker Feed"
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = "bericht Lifetime"
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = "commentaar"
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = "leden"
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = "wiki"
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = " %s gebruikers"
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = " %s berichten, %s discussies"
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = "eigenaar"
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = "Laatste bericht:"
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = "verwijderen"
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = "commentaar"
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = "activeren"
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = "Start nieuw onderwerp"
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = "ban"
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = "Start nieuw onderwerp"
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = "herstellen"
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = "Deze groep heeft nog geen berichten!"
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = "verwijderen"
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = "Draad bestaat niet! Misschien was verwijderd?"
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = "filter"
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = "uitgeven"
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = "Nodigen Meer Gebruikers"
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = "verwijderen"
+; ManagegroupsElement.php line: 503
+managegroups_element_save = "Opslaan"
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = " %s berichten"
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = "Groep bewerken"
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = "uitzicht %s"
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = "Nodig Gebruikers Groep"
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = "Start nieuw onderwerp in %s"
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = "naam"
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = "Start nieuw onderwerp in %s"
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = "Gebruikersnamen (spatie / kommas gescheiden)"
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = "Laatst gewijzigd: %s"
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = "Nodigen Meer Gebruikers"
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = "stem:"
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = "Laatste bericht:"
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = "Transfer Group eigenaar"
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = "commentaar"
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = "naam"
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = "Sleep items in het tekstveld om ze toe te voegen ..."
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = "nieuwe eigenaar"
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = "of klik om ze te selecteren."
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = "eigenaar wijzigen"
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = "Voeg een reactie toe"
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = "Ontdek Groepen"
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = "Opslaan"
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = "Zoeken Geplaatst Groepen"
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = "onderwerp"
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = "post"
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = "naam"
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = "Opslaan"
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = "eigenaar"
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = "Bericht wijzigen"
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = "Registreer"
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = "onderwerp"
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = "toegang"
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = "post"
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = "bericht Lifetime"
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = "Opslaan"
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = "locale Lijst"
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = "Groep feeds niet meer updaten!"
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = "naam"
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = "terug"
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = "label"
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = "filter:"
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = "mode"
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = " %s Logbestand"
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = "ingeschakeld"
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = "Schakel automatisch vernieuwen Off"
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = "procent"
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = "Schakel automatisch vernieuwen On"
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = "acties"
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = "Knevel of de rekeningsinformatie editable is"
+; ManagelocalesElement.php line: 102
+managelocales_element_true = "TRUE"
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = "Welkom, %s!"
+; ManagelocalesElement.php line: 103
+managelocales_element_false = "VALSE"
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = "Vanaf deze pagina kunt u toegang tot en controle aspecten van uw account."
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = "uitgeven"
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = "account Details"
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = "user Icon"
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = "verwijderen"
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "gebruikersnaam"
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = "Voeg Locale Form"
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = "Voornaam"
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = "bewerk Locale"
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = "achternaam"
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = "Voeg Locale"
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = "e-mail"
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = "Locale Naam:"
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = "Locale tag:"
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = "wachtwoord:"
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = "Schrijven Mode:"
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "Nieuw Wachtwoord:"
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = "Locale Ingeschakeld:"
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "overtypen:"
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = "voorleggen"
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = "Opslaan"
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = "Zoek varianten"
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = "Taal en zoeken Instellingen"
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = "Voeg Locale Form"
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = "Kruipt en indexen"
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = "naam"
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = "Crawlen en indexeren van de webpagina of een bestaand archief en het cre&iuml;ren van een doorzoekbare index."
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = "label"
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = "Je hebt %s actief kruipt, %s vorige kruipen indexen."
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = "mode"
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = "Beheer Crawls en indexen"
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = "ingeschakeld"
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = "Groepen en Feeds"
+; ManagelocalesElement.php line: 231
+managelocales_element_true = "TRUE"
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = "Maken of zich abonneren op groepen om te communiceren met vrienden."
+; ManagelocalesElement.php line: 232
+managelocales_element_false = "VALSE"
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = "U behoort tot %s groepen."
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = "Voeg Machine"
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = "U behoort tot 1 groep."
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = "Machine Naam:"
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = "wiki"
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = "Machine Url:"
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = " %s berichten, %s discussies"
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = "Is Mirror:"
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = "Laatste bericht:"
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = "Ouder Naam:"
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = "Join / beheren Alle groepen"
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = "Heeft Queue Server:"
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = "Zie Gecombineerde Groep Feeds"
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = "Aantal Fetchers:"
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = "crawl Mixes"
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = "voorleggen"
 ;
-; 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."
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = "Informatie over de machine"
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = "Je hebt %s kruipen mixen."
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = "In afwachting van statussen van machines ..."
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = "Je hebt %s kruipen mix."
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = "Status van de machine niet meer updaten ..."
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = "Maak / beheren Crawl Mixes"
+; ManagerolesElement.php line: 59
+manageroles_element_roles = "rol Lijst"
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = "naam"
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = "acties"
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = "uitgeven"
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = "verwijderen"
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = "verwijderen"
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = "Voeg Rol Form"
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = "rol Informatie"
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "Rol toevoegen"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = "naam"
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = "activiteiten"
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = "verwijderen"
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = "verwijderen"
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = "Opslaan"
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = "zoeken"
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = "Voeg Rol Form"
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = "naam"
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = "Gebruikers Lijst"
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = "gebruikersnaam"
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = "Voornaam"
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = "achternaam"
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = "e-mail"
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = "groepen"
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = "toestand"
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = "acties"
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = "uitgeven"
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = "uitgeven"
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = "verwijderen"
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = "verwijderen"
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = "Gebruiker toevoegen Form"
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = "Informatie voor de gebruiker"
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = "Gebruiker toevoegen"
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = "gebruikersnaam"
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = "Voornaam"
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = "achternaam"
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = "e-mail"
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = "toestand"
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = "Rollen"
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = " %s rollen"
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = "verwijderen"
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = "verwijderen"
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = "filter"
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = "toevoegen"
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = "groepen"
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = " %s groepen"
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = "verwijderen"
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = "filter"
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = "toevoegen"
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "wachtwoord"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "Herhaal wachtwoord"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = "Opslaan"
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = "zoeken"
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = "Gebruiker toevoegen Form"
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = "beschikbaar Classifiers"
+; ManageusersElement.php line: 499
+manageusers_element_username = "gebruikersnaam"
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = "label"
+; ManageusersElement.php line: 500
+manageusers_element_firstname = "Voornaam"
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = "positief"
+; ManageusersElement.php line: 501
+manageusers_element_lastname = "achternaam"
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = "negatief"
+; ManageusersElement.php line: 502
+manageusers_element_email = "e-mail"
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = "acties"
+; ManageusersElement.php line: 503
+manageusers_element_status = "toestand"
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = "uitgeven"
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = "beschikbaar Mixes"
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = "afgerond"
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = "naam"
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = "afronden"
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = "definitie"
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = "afronden"
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = "acties"
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = "finaliseren"
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = "Mix heeft nog geen componenten"
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = "aandeel"
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = "verwijderen"
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = "uitgeven"
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = "Beheer Classifiers"
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = "Instellen als Index"
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = "naam"
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = "zoeken Index"
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = "cre&iuml;ren"
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = "zoeken"
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = "verwijderen"
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = "Maak Classificator Form"
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = "terug"
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = "naam"
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = "Delen Mix met een groep"
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = "Maak Crawl"
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = "mix Naam"
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = "naam"
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = "groep:"
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = "begin"
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = "aandeel"
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = "opties"
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = "Maak een Crawl Mix"
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = "In afwachting van Crawlstatus"
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = "mix Naam"
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = "Crawlstatus niet meer updaten"
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = "cre&iuml;ren"
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = "Geen abonnement op Groepen"
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = "zoeken"
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = "geabonneerd Groepen"
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = "Maak een Mix Vorm"
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = "naam"
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = "mix Naam"
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = "eigenaar"
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = "andere zoekopdrachten"
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = "Registreer"
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = "vorig"
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = "toegang"
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = "volgende"
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = "stemming"
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = "mijn accounts"
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = "bericht Lifetime"
+; MoreoptionsElement.php line: 142
+signin_element_settings = "instellingen"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = "acties"
+; MoreoptionsElement.php line: 151
+signin_element_signin = "Aanmelden"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = " %s gebruikers"
+; MoreoptionsElement.php line: 154
+signin_element_admin = "rekening"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = " %s gebruikers"
+; MoreoptionsElement.php line: 167
+signin_view_create_account = "Maak Een Account Aan"
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = "wiki"
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = "Suggereren een URL"
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = "toetreden"
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = "Paginas"
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = "uitgeven"
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = "gereedschap"
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = "uitgeven"
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = "crawl Tijd"
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = "verwijderen"
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = "Zoek Tijd"
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = "toetreden"
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = "Test Opties"
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = "toetreden"
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = "Krijg Pagina opties van:"
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = "achteruitgang"
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = "Byte Range te downloaden (0 - Waarde):"
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = "Uitschrijven"
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = "Summarizer:"
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = "Max Pagina Samenvatting Lengte in Bytes:"
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = "verwijderen"
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = "Cache hele kroop paginas:"
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = "Toestaan pagina opnieuw crawlen Na:"
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = "Groep bewerken"
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = "Pagina Bestandstypen te kruipen:"
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = "Groep maken"
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = "Classifiers en Rankers"
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = "Cre&iuml;er / Lid worden van groep"
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = "Gebruiken om te classificeren"
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = "naam"
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = "Gebruiken om Rank"
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = "Blader"
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = "Geen classificatoren."
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = "Registreer"
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = "indexering Plugins"
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = "toegang"
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = "Inpluggen"
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = "stemming"
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = "Gebruik in Crawl"
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = "bericht Lifetime"
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = "configureren"
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = "leden"
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = "Geen compatibele indexeren plugins gevonden!"
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = " %s gebruikers"
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = "Page Field Extraction Regels"
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = "eigenaar"
+; PageoptionsElement.php line: 247
+page_element_search_page = "Zoek Pagina-elementen en Links"
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = "verwijderen"
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = "Word Suggestie"
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = "activeren"
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = "Subsearch"
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = "ban"
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = "Aanmelden"
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = "herstellen"
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = "cache"
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = "verwijderen"
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = "soortgelijk"
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = "filter"
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = "inlinks"
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = "Nodigen Meer Gebruikers"
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = "IP adres"
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = "Opslaan"
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = "Zoek Ranking Factors"
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = "Groep bewerken"
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = "Titel Gewicht:"
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = "Nodig Gebruikers Groep"
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = "Beschrijving Gewicht:"
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = "naam"
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = "Link Gewicht:"
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = "Gebruikersnamen (spatie / kommas gescheiden)"
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = "Zoekresultaten Groepering"
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = "Nodigen Meer Gebruikers"
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = "Minimum Resultaten Groep:"
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = "Server Alpha:"
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = "Transfer Group eigenaar"
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = "testpagina"
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = "naam"
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = "Type:"
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = "nieuwe eigenaar"
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = "Opslaan"
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = "eigenaar wijzigen"
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = "Test Process Pagina"
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = "Ontdek Groepen"
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = "testresultaten"
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = "Zoeken Geplaatst Groepen"
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = "Pagina afgekapt van %s naar %s bytes."
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = "Cre&iuml;er / Lid worden van groep"
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = "Na pagina processor haalt samenvatting"
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = "naam"
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = "Na pagina regels toegepast"
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = "eigenaar"
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = "Woorden en posities uitgepakt index samenvatting"
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = "Registreer"
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = "Onttrokken meta woorden"
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = "toegang"
+; PageoptionsElement.php line: 417
+page_element_plugin_back = "terug"
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = "bericht Lifetime"
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = "Test Process Pagina"
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = "locale Lijst"
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = "Opslaan"
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = "naam"
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = "Resultaat Pagina bewerken"
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = "label"
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = "Bewerkt Urls:"
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = "mode"
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = "Selecteer een eerder bewerkte samenvatting"
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = "ingeschakeld"
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = "belasting"
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = "procent"
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = "URL:"
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = "acties"
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = "Titel:"
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = "TRUE"
+; ResultseditorElement.php line: 93
+resultseditor_element_description = "beschrijving"
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = "VALSE"
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = "Reset"
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = "uitgeven"
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = "Pagina opslaan"
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = "Filter Websites van resultaten"
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = "verwijderen"
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = "Sites te filteren"
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = "Voeg Locale Form"
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = "opslaan Filter"
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = "bewerk Locale"
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = "Bron Vorm toevoegen"
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = "Voeg Locale"
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = "Media bewerken Bron"
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = "Locale Naam:"
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = "Voeg Media Source"
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = "Locale tag:"
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = "Type:"
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = "Schrijven Mode:"
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = "naam:"
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = "Locale Ingeschakeld:"
+; SearchsourcesElement.php line: 104
+searchsources_element_url = "URL:"
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = "voorleggen"
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = "taal:"
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = "Zoek varianten"
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = "thumb:"
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = "Voeg Locale Form"
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = "Bieden xpaths naar nieuwsfeed onderdelen hieronder:"
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = "naam"
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = "kanaal:"
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = "label"
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = "Item:"
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = "mode"
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = "Titel:"
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = "ingeschakeld"
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = "beschrijving:"
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = "TRUE"
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = "Link:"
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = "VALSE"
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = "Afbeelding XPath:"
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = "Voeg Machine"
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = "voorleggen"
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = "Machine Naam:"
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = "media Bronnen"
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = "Machine Url:"
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = "naam"
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = "Is Mirror:"
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = "type"
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = "Ouder Naam:"
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = "urls"
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = "Heeft Queue Server:"
+; SearchsourcesElement.php line: 199
+searchsources_element_action = "actie"
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = "Aantal Fetchers:"
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = "uitgeven"
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = "voorleggen"
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = "Informatie over de machine"
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = "verwijderen"
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = "In afwachting van statussen van machines ..."
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = "Voeg Subsearch Form"
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = "Status van de machine niet meer updaten ..."
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = "bewerk Subsearch"
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = "rol Lijst"
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = "Voeg een Subsearch"
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = "naam"
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = "Mapnaam:"
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = "acties"
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = "Index Bron:"
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = "uitgeven"
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = "Resultaten per pagina:"
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = "verwijderen"
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = "voorleggen"
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = "huidige Subsearches"
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = "verwijderen"
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = "mapnaam"
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = "Voeg Rol Form"
+; SearchsourcesElement.php line: 303
+searchsources_element_index = "index"
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = "rol Informatie"
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = "lokalisatie Identifier"
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "Rol toevoegen"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = "Resultaten / pagina"
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = "naam"
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = "acties"
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = "activiteiten"
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = "uitgeven"
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = "verwijderen"
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = "lokaliseren"
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = "verwijderen"
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = "lokaliseren"
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = "Opslaan"
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = "verwijderen"
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = "zoeken"
+; SecurityElement.php line: 58
+security_element_auth_captcha = "Authenticatie en Captcha Soorten"
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = "Voeg Rol Form"
+; SecurityElement.php line: 69
+security_element_authentication_type = "Verificatietype"
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = "naam"
+; SecurityElement.php line: 81
+security_element_zero_unavailable = "BC Math Nnul Kennis Authentication Needs OpenSSL of BC Math!"
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = "Gebruikers Lijst"
+; SecurityElement.php line: 90
+security_element_captcha_type = "captcha Type"
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "gebruikersnaam"
+; SecurityElement.php line: 103
+security_element_save = "Opslaan"
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = "Voornaam"
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = "Captcha and Recovery Vragen"
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = "achternaam"
+; SecurityElement.php line: 113
+security_element_edit_recovery = "Wijzig Account Recovery Vragen"
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = "e-mail"
+; SecurityElement.php line: 118
+security_element_edit_captcha = "Tekst bewerken Captcha Vragen"
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = "groepen"
+; SecurityElement.php line: 123
+security_element_edit_recovery = "Wijzig Account Recovery Vragen"
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = "toestand"
+; SecurityElement.php line: 126
+security_element_edit_captcha = "Tekst bewerken Captcha Vragen"
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = "acties"
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = "Servers en Registratie"
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = "uitgeven"
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = "Name Server Set-up"
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = "uitgeven"
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = "Server Key:"
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = "verwijderen"
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = "Name Server URL:"
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = "Gebruik Memcache:"
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = "verwijderen"
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = "memcache Servers"
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = "Gebruiker toevoegen Form"
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = "Gebruik Filecache:"
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = "Informatie voor de gebruiker"
+; ServersettingsElement.php line: 110
+configure_element_database_setup = "Database Set-up"
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = "Gebruiker toevoegen"
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = "Database System:"
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "gebruikersnaam"
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = "Database Naam:"
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = "Voornaam"
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = "hostname:"
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = "achternaam"
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = "Database User:"
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = "e-mail"
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = "Database wachtwoord:"
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = "toestand"
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = "account Registratie"
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = "Rollen"
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = "Afzender E-mail:"
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = " %s rollen"
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = "verwijderen"
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = "Gebruik PHP mail () functie"
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = "verwijderen"
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = "SMTP-server:"
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = "filter"
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = "Server Port:"
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = "toevoegen"
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = "Mail Gebruikersnaam:"
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = "groepen"
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = "Mail Wachtwoord:"
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = " %s groepen"
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = "Mail Security:"
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = "verwijderen"
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = "proxy Servers"
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = "filter"
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = "Tor Proxy (.onion urls alleen):"
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = "toevoegen"
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = "Crawl via Proxies"
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "wachtwoord"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = "Proxy servers (&iuml;&iuml;n per regel Format:. Adres: port of adres: poort: proxyType)"
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "Herhaal wachtwoord"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = "Ad Server Configuration"
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = "Opslaan"
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = "zoeken"
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = "Gebruiker toevoegen Form"
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "gebruikersnaam"
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = "ad Locatie"
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = "Voornaam"
+; ServersettingsElement.php line: 287
+serversettings_element_top = "top"
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = "achternaam"
+; ServersettingsElement.php line: 292
+serversettings_element_side = "kant"
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = "e-mail"
+; ServersettingsElement.php line: 297
+serversettings_element_both = "beide"
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = "toestand"
+; ServersettingsElement.php line: 302
+serversettings_element_none = "geen"
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = "beschikbaar Mixes"
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = "Global Ad Script"
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = "naam"
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = "Top Ad Script"
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = "definitie"
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = "Side Ad Script"
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = "acties"
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = "Mix heeft nog geen componenten"
+; SigninElement.php line: 73
+signin_element_settings = "instellingen"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = "aandeel"
+; SigninElement.php line: 77
+signin_element_signin = "Aanmelden"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = "uitgeven"
+; SigninElement.php line: 81
+signin_element_signout = "uitloggen"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = "Instellen als Index"
+; SubsearchElement.php line: 69
+subsearch_element_more = "meer"
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = "zoeken Index"
+; WikiElement.php line: 121
+wiki_view_back = "terug"
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
+; WikiElement.php line: 139
+groupfeed_element_feed = "voeden"
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = "verwijderen"
+; WikiElement.php line: 140
+wiki_view_wiki = "wiki"
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = "terug"
+; WikiElement.php line: 144
+wiki_view_page = " %s Pagina"
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = "Delen Mix met een groep"
+; WikiElement.php line: 148
+wiki_view_read = "lezen"
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = "mix Naam"
+; WikiElement.php line: 149
+wiki_view_edit = "uitgeven"
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = "groep:"
+; WikiElement.php line: 152
+wiki_view_pages = "paginas"
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = "aandeel"
+; WikiElement.php line: 237
+wiki_element_redirect_to = "Verwijst door naar:"
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = "Maak een Crawl Mix"
+; WikiElement.php line: 245
+wiki_view_page_no_exist = " %s pagina bestaat niet."
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = "mix Naam"
+; WikiElement.php line: 246
+wiki_view_create_edit = "U kunt deze pagina te sturen door te klikken op de bewerken link hierboven."
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = "cre&iuml;ren"
+; 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."
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = "zoeken"
+; WikiElement.php line: 259
+wiki_element_submit = "voorleggen"
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = "Maak een Mix Vorm"
+; WikiElement.php line: 265
+wiki_view_syntax_summary = "Wiki Syntax Gids"
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = "mix Naam"
+; WikiElement.php line: 268
+wiki_view_page_no_exist = " %s pagina bestaat niet."
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = "andere zoekopdrachten"
+; 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."
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = "vorig"
+; WikiElement.php line: 272
+wiki_view_page_no_exist = " %s pagina bestaat niet."
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = "volgende"
+; WikiElement.php line: 302
+wiki_element_history = "geschiedenis"
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = "mijn accounts"
+; WikiElement.php line: 306
+wiki_element_discuss = "bespreken"
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "instellingen"
+; WikiElement.php line: 342
+wiki_element_locale_name = "Locale: %s"
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "Aanmelden"
+; WikiElement.php line: 346
+wiki_element_page = "Pagina: %s"
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "rekening"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = "instellingen"
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = "Maak Een Account Aan"
+; WikiElement.php line: 353
+wiki_element_page_type = "Pagina Type:"
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = "Suggereren een URL"
+; WikiElement.php line: 361
+wiki_element_page_alias = "Alias pagina Aan:"
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = "Paginas"
+; WikiElement.php line: 369
+wiki_element_page_border = "Pagina Border:"
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = "gereedschap"
+; WikiElement.php line: 376
+wiki_element_table_of_contents = "Inhoudsopgave:"
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = "crawl Tijd"
+; WikiElement.php line: 385
+wiki_element_title = "Titel:"
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = "Zoek Tijd"
+; WikiElement.php line: 391
+wiki_element_meta_author = "auteur:"
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = "Test Opties"
+; WikiElement.php line: 397
+wiki_element_meta_robots = "Meta Robots:"
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = "Krijg Pagina opties van:"
+; WikiElement.php line: 404
+wiki_element_meta_description = "Meta Description:"
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = "Byte Range te downloaden (0 - Waarde):"
+; WikiElement.php line: 411
+wiki_element_page_header = "Header Pagina Naam:"
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = "Summarizer:"
+; WikiElement.php line: 417
+wiki_element_page_footer = "Footer Pagina Naam:"
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = "Max Pagina Samenvatting Lengte in Bytes:"
+; 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."
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = "Cache hele kroop paginas:"
+; WikiElement.php line: 443
+wiki_element_edit_reason = "Reden Edit:"
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = "Toestaan pagina opnieuw crawlen Na:"
+; WikiElement.php line: 450
+wiki_element_savebutton = "Opslaan"
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = "Pagina Bestandstypen te kruipen:"
+; WikiElement.php line: 454
+wiki_element_media_list = "Media Lijst Pagina"
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = "Classifiers en Rankers"
+; 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."
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = "Gebruiken om te classificeren"
+; WikiElement.php line: 458
+wiki_view_page_resources = "Bronnen pagina"
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = "Gebruiken om Rank"
+; WikiElement.php line: 493
+wiki_view_upload = "uploaden"
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = "Geen classificatoren."
+; WikiElement.php line: 497
+wiki_element_resources_info = "Middelen zijn afbeeldingen, videos of bestanden die verband houden met deze pagina."
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = "indexering Plugins"
+; WikiElement.php line: 512
+wiki_element_rename_failed = "Hernoemen mislukt!"
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = "Inpluggen"
+; WikiElement.php line: 578
+wiki_element_rename = "andere naam geven"
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = "Gebruik in Crawl"
+; WikiElement.php line: 582
+wiki_element_add_to_page = "Toevoegen aan pagina"
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = "configureren"
+; WikiElement.php line: 602
+wiki_element_no_resources = "Geen middelen zijn nog naar deze pagina opgeslagen."
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = "Geen compatibele indexeren plugins gevonden!"
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = " %s Groep Wiki Pagina Lijst"
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = "Page Field Extraction Regels"
+; WikiElement.php line: 637
+wiki_view_filter_or_create = "Zoek groep paginatitels"
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = "Zoek Pagina-elementen en Links"
+; WikiElement.php line: 639
+wiki_element_go = "gaan"
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = "Word Suggestie"
+; WikiElement.php line: 644
+wiki_view_create_page = "Pagina aanmaken: %s"
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = "Subsearch"
+; WikiElement.php line: 655
+wiki_element_redirect_to = "Verwijst door naar:"
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = "Aanmelden"
+; 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."
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = "cache"
+; WikiElement.php line: 700
+wiki_view_back = "terug"
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = "soortgelijk"
+; WikiElement.php line: 716
+wiki_view_difference = "verschil:"
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = "inlinks"
+; WikiElement.php line: 722
+wiki_view_go = "gaan"
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = "IP adres"
+; WikiElement.php line: 741
+wiki_view_diff_first = "eerste"
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = "Zoek Ranking Factors"
+; WikiElement.php line: 743
+wiki_view_diff_second = "tweede"
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = "Titel Gewicht:"
+; WikiElement.php line: 747
+wiki_view_diff_first = "eerste"
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = "Beschrijving Gewicht:"
+; WikiElement.php line: 748
+wiki_view_diff_second = "tweede"
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = "Link Gewicht:"
+; WikiElement.php line: 754
+wiki_view_edited_by = "Bewerkt door %s."
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = "Zoekresultaten Groepering"
+; WikiElement.php line: 758
+wiki_view_page_len = "( %s bytes)."
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = "Minimum Resultaten Groep:"
+; WikiElement.php line: 760
+wiki_view_revert = "terugkeren"
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = "Server Alpha:"
+; WikiElement.php line: 763
+wiki_view_revert = "terugkeren"
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = "testpagina"
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = " %s Wiki Pagina Overleg"
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = "Type:"
+; GroupView.php line: 96
+group_view_feed = "voeden"
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = "Opslaan"
+; GroupView.php line: 104
+group_view_wiki = "wiki"
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = "Test Process Pagina"
+; GroupView.php line: 106
+group_view_user = " %s Gebruiker"
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = "testresultaten"
+; GroupView.php line: 109
+group_view_myfeeds = "mijn Feeds"
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = "Pagina afgekapt van %s naar %s bytes."
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = "Automatisch uitloggen in One Minute!!"
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = "Na pagina processor haalt samenvatting"
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = "Na pagina regels toegepast"
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = "Nieuws Resultaten voor %s"
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = "Woorden en posities uitgepakt index samenvatting"
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = "1 uur geleden"
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = "Onttrokken meta woorden"
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = " %s m %s s geleden"
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = "terug"
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = " %s uur geleden"
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = "Test Process Pagina"
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = "Sleep items in het tekstveld om ze toe te voegen ..."
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = "Opslaan"
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = "of klik om ze te selecteren."
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = "Resultaat Pagina bewerken"
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = "Slepen of ..."
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = "Bewerkt Urls:"
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = "kiezen."
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = "Selecteer een eerder bewerkte samenvatting"
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = "Ongeldige Filetype!"
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = "belasting"
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = "Bestand te groot is!"
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = "URL:"
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = "Upload Voortgang:"
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = "Titel:"
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = "Upload voortgangsbalk handicap"
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = "beschrijving"
+; FileuploadHelper.php line: 125
+basic_js_upload_error = "Upload Fout!"
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = "Reset"
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = "Uploaden afgelast!"
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = "Pagina opslaan"
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = "Proberen om te veel bestanden toe te voegen!"
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = "Filter Websites van resultaten"
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = "?"
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = "Sites te filteren"
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = "uitgeven"
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = "opslaan Filter"
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = "Niet in staat om Help-artikel laden!"
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = "Bron Vorm toevoegen"
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = "U kunt deze pagina te sturen door te klikken op de bewerken link hierboven."
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = "Media bewerken Bron"
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = " %s pagina bestaat niet."
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = "Voeg Media Source"
+; HelpbuttonHelper.php line: 145
+wiki_view_read = "lezen"
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = "Type:"
+; ImagesHelper.php line: 55
+images_helper_view_image_results = "Bekijk Meer Afbeelding Results ..."
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = "naam:"
+; PaginationHelper.php line: 97
+pagination_helper_previous = "prev"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = "URL:"
+; PaginationHelper.php line: 121
+pagination_helper_next = "volgende"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = "taal:"
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = "zoeken"
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = "thumb:"
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = "tonen"
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = "Bieden xpaths naar nieuwsfeed onderdelen hieronder:"
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = "Rij %s naar %s van %s"
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = "kanaal:"
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = "Rij %s naar %s van %s"
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = "Item:"
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = "tonen"
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = "Titel:"
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = "zoeken"
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = "beschrijving:"
+; SearchformHelper.php line: 119
+searchform_helper_any = "ieder"
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = "Link:"
+; SearchformHelper.php line: 148
+searchform_helper_search = "zoeken"
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = "Afbeelding XPath:"
+; ToggleHelper.php line: 59
+toggle_helper_on = "op"
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = "voorleggen"
+; ToggleHelper.php line: 61
+toggle_helper_off = "af"
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = "media Bronnen"
+; ToggleHelper.php line: 65
+toggle_helper_on = "op"
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = "naam"
+; ToggleHelper.php line: 67
+toggle_helper_off = "af"
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = "type"
+; ToggleHelper.php line: 71
+toggle_helper_on = "op"
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = "urls"
+; ToggleHelper.php line: 73
+toggle_helper_off = "af"
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = "actie"
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = "uitgeven"
+; RssLayout.php line: 62
+rss_layout_title = "PHP Search Engine - Yioop! :%S"
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
+; RssLayout.php line: 69
+rss_layout_description = "Zoek resultaten voor: %s"
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = "verwijderen"
+; WebLayout.php line: 63
+web_layout_title = "PHP Search Engine - Yioop!"
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = "Voeg Subsearch Form"
+; WebLayout.php line: 73
+web_layout_description = "PHP Crawler en Search Engine Software"
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = "bewerk Subsearch"
+; WebLayout.php line: 75
+web_layout_site_author = "Chris Pollett"
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = "Voeg een Subsearch"
+; WebLayout.php line: 219
+web_layout_query_statistics = "vraag Statistieken"
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = "Mapnaam:"
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = "Totale verstreken tijd voor Queries: %s seconden."
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = "Index Bron:"
+; WebLayout.php line: 228
+web_layout_query_time = "Tijd: %s seconden."
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = "Resultaten per pagina:"
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = "Geen Bewaakte Machines"
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = "voorleggen"
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = "huidige Subsearches"
+; MachinestatusView.php line: 73
+machinestatus_name_server = "Name Server"
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = "mapnaam"
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = "index"
+; MachinestatusView.php line: 78
+machinestatus_name_server = "Name Server"
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = "lokalisatie Identifier"
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = "Resultaten / pagina"
+; MachinestatusView.php line: 85
+machinestatus_name_server = "Name Server"
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = "acties"
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = "media Updater"
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = "uitgeven"
+; MachinestatusView.php line: 96
+machinestatus_view_log = "Inloggen"
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = "lokaliseren"
+; MachinestatusView.php line: 125
+confirm_delete_operation = "Weet u zeker dat u wilt verwijderen?"
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = "lokaliseren"
+; MachinestatusView.php line: 126
+machinestatus_view_delete = "verwijderen"
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = "verwijderen"
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = "Machine Niet geconfigureerd!"
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = "Authenticatie en Captcha Soorten"
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = "Spiegels %s"
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = "Verificatietype"
+; MachinestatusView.php line: 161
+machinestatus_view_log = "Inloggen"
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = "BC Math Nnul Kennis Authentication Needs OpenSSL of BC Math!"
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = "Queue Server"
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = "captcha Type"
+; MachinestatusView.php line: 179
+machinestatus_view_log = "Inloggen"
 ;
-; SecurityElement.php line: 103
-security_element_save = "Opslaan"
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = "Queue Server"
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = "Captcha and Recovery Vragen"
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = "Machine heeft geen wachtrij server"
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = "Wijzig Account Recovery Vragen"
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = "media Updater"
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = "Tekst bewerken Captcha Vragen"
+; MachinestatusView.php line: 207
+machinestatus_view_log = "Inloggen"
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = "Wijzig Account Recovery Vragen"
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = "Machine heeft geen fetchers"
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = "Tekst bewerken Captcha Vragen"
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = "Fetchers"
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = "Servers en Registratie"
+; MachinestatusView.php line: 248
+machinestatus_view_log = "Inloggen"
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = "Name Server Set-up"
+; NocacheView.php line: 54
+nocache_view_no_cache = "Had geen cache van opgevraagde item."
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = "Server Key:"
+; NocacheView.php line: 59
+nocache_view_summary_contents = "Samenvatting De gegevens die zijn opgeslagen in Yioop voor post"
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = "Name Server URL:"
+; RecoverView.php line: 71
+recover_view_recover_password = "Recover account"
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = "Gebruik Memcache:"
+; RecoverView.php line: 104
+register_view_new_password = "nieuw Wachtwoord"
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = "memcache Servers"
+; RecoverView.php line: 116
+register_view_retypepassword = "Typ het wachtwoord opnieuw:"
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = "Gebruik Filecache:"
+; RecoverView.php line: 131
+recover_view_username = "gebruikersnaam:"
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = "Database Set-up"
+; RecoverView.php line: 146
+register_view_account_recovery = "Herstel Info:"
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = "Database System:"
+; RecoverView.php line: 153
+register_view_human_check = "Human Check:"
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = "Database Naam:"
+; RecoverView.php line: 185
+register_view_human_check = "Human Check:"
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = "hostname:"
+; RecoverView.php line: 202
+recover_view_recover_password = "Recover account"
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = "Database User:"
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = "Database wachtwoord:"
+; RegisterView.php line: 76
+register_view_question0_most = "Die woont of duurt het langst?"
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = "account Registratie"
+; RegisterView.php line: 77
+register_view_question0_least = "Die woont of duurt het kortste?"
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = "Afzender E-mail:"
+; RegisterView.php line: 78
+register_view_question0_choices = "bliksem, bacteriïn, mier, hond, paard, persoon, eik, planeet, ster, melkweg"
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = "Dat is meer overvloedig?"
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = "Gebruik PHP mail () functie"
+; RegisterView.php line: 80
+register_view_question1_least = "Dat is minder overvloedig?"
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = "SMTP-server:"
+; RegisterView.php line: 81
+register_view_question1_choices = "continenten, landen, metros, steden, artsen, mensen, handen, tanden, haar, cellen, moleculen, atomen, protonen"
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = "Server Port:"
+; RegisterView.php line: 82
+register_view_question2_most = "Dat is meestal meer prijzig?"
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = "Mail Gebruikersnaam:"
+; RegisterView.php line: 83
+register_view_question2_least = "Dat is meestal minder prijzig?"
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = "Mail Wachtwoord:"
+; RegisterView.php line: 84
+register_view_question2_choices = "een postzegel, een kop koffie, bioscoopkaartje, schoenen, fietsen, een maand huur, auto, huis, een elektriciteitscentrale"
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = "Mail Security:"
+; RegisterView.php line: 85
+register_view_question3_most = "Dat is meer rond?"
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = "proxy Servers"
+; RegisterView.php line: 86
+register_view_question3_least = "Dat is minder ronde?"
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = "Tor Proxy (.onion urls alleen):"
+; RegisterView.php line: 87
+register_view_question3_choices = "een stoel, de letter T, een banaan, een peer, een appel, een sinaasappel, een bol"
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = "Crawl via Proxies"
+; RegisterView.php line: 88
+register_view_question4_most = "Die is meestal de grootste?"
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = "Proxy servers (&iuml;&iuml;n per regel Format:. Adres: port of adres: poort: proxyType)"
+; RegisterView.php line: 89
+register_view_question4_least = "Dat is meestal de kleinste?"
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = "Ad Server Configuration"
+; RegisterView.php line: 90
+register_view_question4_choices = "een munt, een honkbal, een melk gallon, winkelwagentje, koelkast, giraf, huis, vulkaan, de Maan, de Aarde"
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = "Welke is groter?"
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = "Die korter is?"
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = "lieveheersbeestje, muis, kat, peuter, man, paard, olifant, giraf, hoog gebouw, berg"
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = "ad Locatie"
+; RegisterView.php line: 94
+register_view_question6_most = "Die langer duurt?"
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = "top"
+; RegisterView.php line: 95
+register_view_question6_least = "Die kost minder tijd?"
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = "kant"
+; RegisterView.php line: 96
+register_view_question6_choices = "knipperen, lik envelop, kam het haar, make-up toe te passen, een film kijken, lopen marathon, olympics, de zomer vakantie, jaar"
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = "beide"
+; RegisterView.php line: 97
+register_view_question7_most = "Die is heter klinkende?"
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = "geen"
+; RegisterView.php line: 98
+register_view_question7_least = "Dat is kouder klinkende?"
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = "Global Ad Script"
+; RegisterView.php line: 99
+register_view_question7_choices = "Pluto, polaire verkennen, schaatsen, zwembad, thee, stoom, gesmolten ijzer, zon"
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = "Top Ad Script"
+; RegisterView.php line: 100
+register_view_question8_most = "Dat is de oudste?"
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = "Side Ad Script"
+; RegisterView.php line: 101
+register_view_question8_least = "Welke is de nieuwste?"
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = "verse melk, de huidige president, je grootouders, vlucht bij Kitty Hawk, de Zwarte Dood, Egyptische piramiden, schrijven, grotschilderingen, dinosaurussen"
 ;
-; SigninElement.php line: 73
-signin_element_settings = "instellingen"
+; RegisterView.php line: 103
+register_view_question9_most = "Die heeft meer?"
 ;
-; SigninElement.php line: 77
-signin_element_signin = "Aanmelden"
+; RegisterView.php line: 104
+register_view_question9_least = "Die houdt minder?"
 ;
-; SigninElement.php line: 81
-signin_element_signout = "uitloggen"
+; RegisterView.php line: 105
+register_view_question9_choices = "theelepel, schotel, beker, kom, theepot, wastafel, vat, pick-up truck, verhuiswagen, olietanker"
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = "meer"
+; RegisterView.php line: 108
+register_view_recovery1_more = "Dier je wilt de beste:"
 ;
-; WikiElement.php line: 121
-wiki_view_back = "terug"
+; RegisterView.php line: 109
+register_view_recovery1_less = "Dier je het minst:"
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = "voeden"
+; RegisterView.php line: 110
+register_view_recovery1_choices = "mier, konijntje, kat, kakkerlak, hond, goudvis, hamster, paard, slang, spin, tijger, walvis"
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = "wiki"
+; RegisterView.php line: 111
+register_view_recovery2_more = "Kleur je het meest:"
 ;
-; WikiElement.php line: 144
-wiki_view_page = " %s Pagina"
+; RegisterView.php line: 112
+register_view_recovery2_less = "Kleur je wilt het minst:"
 ;
-; WikiElement.php line: 148
-wiki_view_read = "lezen"
+; RegisterView.php line: 113
+register_view_recovery2_choices = "geen kleur, aquamarijn, blauw, bruin, goud, groen, grijs, paars, roze, maagdenpalm, paars, rood, zilver, turkoois, geel"
 ;
-; WikiElement.php line: 149
-wiki_view_edit = "uitgeven"
+; RegisterView.php line: 114
+register_view_recovery3_more = "Voedsel dat je het liefst:"
 ;
-; WikiElement.php line: 152
-wiki_view_pages = "paginas"
+; RegisterView.php line: 115
+register_view_recovery3_less = "Voedsel dat je graag het minst:"
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = "Verwijst door naar:"
+; RegisterView.php line: 116
+register_view_recovery3_choices = "appel, banaan, kip, vis, lamsvlees, noten, oranje, varkensvlees, aardappel, tomaat, steak"
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = " %s pagina bestaat niet."
+; RegisterView.php line: 117
+register_view_recovery4_more = "Drink je het meest:"
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = "U kunt deze pagina te sturen door te klikken op de bewerken link hierboven."
+; RegisterView.php line: 118
+register_view_recovery4_less = "Drink je het minst:"
 ;
-; 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."
+; RegisterView.php line: 119
+register_view_recovery4_choices = "appelsap, bier, koffie, warme thee, ice tea, limonade, fruitsap, frisdrank, bruisend water, stilstaand water, wijn"
 ;
-; WikiElement.php line: 259
-wiki_element_submit = "voorleggen"
+; RegisterView.php line: 120
+register_view_recovery5_more = "Spel je het meest:"
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = "Wiki Syntax Gids"
+; RegisterView.php line: 121
+register_view_recovery5_less = "Spel je het minst:"
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = " %s pagina bestaat niet."
+; RegisterView.php line: 122
+register_view_recovery5_choices = "basketbal, backgammon, dammen, schaken, voetbal, hockey, schaatsen, skiïn, tennis, volleybal"
 ;
-; 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."
+; RegisterView.php line: 123
+register_view_recovery6_more = "Geluid dat u het liefst:"
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = " %s pagina bestaat niet."
+; RegisterView.php line: 124
+register_view_recovery6_less = "Klinkt als het minst:"
 ;
-; WikiElement.php line: 302
-wiki_element_history = "geschiedenis"
+; RegisterView.php line: 125
+register_view_recovery6_choices = "accordeon, trommel, fluit, gitaar, harmonica, harp, hoorn, hobo, piano, driehoek, trompet, viool, fluit, xylofoon"
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = "bespreken"
+; RegisterView.php line: 153
+register_view_create_account = "Maak Een Account Aan"
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = "Locale: %s"
+; RegisterView.php line: 190
+register_view_firstname = "Voornaam:"
 ;
-; WikiElement.php line: 346
-wiki_element_page = "Pagina: %s"
+; RegisterView.php line: 205
+register_view_lastname = "Achternaam:"
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = "instellingen"
+; RegisterView.php line: 219
+register_view_username = "gebruikersnaam:"
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = "Pagina Type:"
+; RegisterView.php line: 232
+register_view_email = "e-mail:"
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = "Alias pagina Aan:"
+; RegisterView.php line: 246
+register_view_password = "wachtwoord:"
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = "Pagina Border:"
+; RegisterView.php line: 261
+register_view_retypepassword = "Typ het wachtwoord opnieuw:"
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = "Inhoudsopgave:"
+; RegisterView.php line: 277
+register_view_account_recovery = "Herstel Info:"
 ;
-; WikiElement.php line: 385
-wiki_element_title = "Titel:"
+; RegisterView.php line: 281
+register_view_human_check = "Human Check:"
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = "auteur:"
+; RegisterView.php line: 283
+register_view_account_recovery = "Herstel Info:"
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = "Meta Robots:"
+; RegisterView.php line: 315
+register_view_human_check = "Human Check:"
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = "Meta Description:"
+; RegisterView.php line: 329
+register_view_i_agree = "Door te klikken op Account, ik ga akkoord met de"
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = "Header Pagina Naam:"
+; RegisterView.php line: 331
+register_view_terms = "Yioop Voorwaarden"
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = "Footer Pagina Naam:"
+; RegisterView.php line: 333
+register_view_and = "en"
 ;
-; 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."
+; RegisterView.php line: 335
+register_view_privacy = "Privacybeleid"
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = "Reden Edit:"
+; RegisterView.php line: 336
+register_view_period = "."
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = "Opslaan"
+; RegisterView.php line: 346
+register_view_create_account = "Maak Een Account Aan"
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = "Media Lijst Pagina"
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; 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."
+; SearchView.php line: 92
+search_view_title = "Yioop! PHP Zoekmachine"
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = "Bronnen pagina"
+; SearchView.php line: 119
+search_view_input_label = "Voer de voorwaarden zou u willen het web zoeken"
 ;
-; WikiElement.php line: 493
-wiki_view_upload = "uploaden"
+; SearchView.php line: 123
+search_view_input_placeholder = "Typ wat te vinden"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = "Middelen zijn afbeeldingen, videos of bestanden die verband houden met deze pagina."
+; SearchView.php line: 126
+search_view_search = "zoeken"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = "Hernoemen mislukt!"
+; SearchView.php line: 155
+search_view_no_index_set = "Geen Standaard Index Set"
 ;
-; WikiElement.php line: 578
-wiki_element_rename = "andere naam geven"
+; SearchView.php line: 164
+search_view_more_statistics = "meer Statistiek"
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = "Toevoegen aan pagina"
+; SearchView.php line: 201
+search_view_calculated = " %s seconden."
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = "Geen middelen zijn nog naar deze pagina opgeslagen."
+; SearchView.php line: 203
+search_view_results = "Toont %s - %s van %s"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = " %s Groep Wiki Pagina Lijst"
+; SearchView.php line: 229
+search_view_thesaurus_results = "thesaurus Resultaten"
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = "Zoek groep paginatitels"
+; SearchView.php line: 339
+search_view_word_cloud = "woorden:"
 ;
-; WikiElement.php line: 639
-wiki_element_go = "gaan"
+; SearchView.php line: 380
+search_view_cache = "gecached"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = "Pagina aanmaken: %s"
+; SearchView.php line: 382
+search_view_as_text = "Bekijk & nbsp; als & nbsp; tekst"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = "Verwijst door naar:"
+; SearchView.php line: 393
+search_view_similar = "soortgelijk"
 ;
-; 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."
+; SearchView.php line: 402
+search_view_inlink = "inlinks"
 ;
-; WikiElement.php line: 700
-wiki_view_back = "terug"
+; SearchView.php line: 419
+search_view_rank = "Rang: %s"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = "verschil:"
+; SearchView.php line: 421
+search_view_relevancy = "Rel: %s"
 ;
-; WikiElement.php line: 722
-wiki_view_go = "gaan"
+; SearchView.php line: 423
+search_view_proximity = "Prox: %s"
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = "eerste"
+; SearchView.php line: 427
+search_view_thesaurus_score = "Thesaurus: %s"
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = "tweede"
+; SearchView.php line: 436
+search_view_score = "Score: %s"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = "eerste"
+; SettingsView.php line: 66
+settings_view_settings = "instellingen"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = "tweede"
+; SettingsView.php line: 73
+settings_view_results_per_page = "Resultaten / Pagina:"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = "Bewerkt door %s."
+; SettingsView.php line: 79
+settings_view_open_in_tabs = "Openen in tabbladen:"
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = "( %s bytes)."
+; SettingsView.php line: 86
+settings_view_search_index = "Zoek Index:"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = "terugkeren"
+; SettingsView.php line: 92
+settings_view_language_label = "taal:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = "terugkeren"
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "Instellingen opslaan"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = "Nieuws Resultaten voor %s"
+; SettingsView.php line: 116
+settings_install_search_plugin = "Installeer Yioop! Open Search Plugin"
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = "1 uur geleden"
+; SigninView.php line: 68
+signin_view_signin = "Aanmelden"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = " %s m %s s geleden"
+; SigninView.php line: 81
+sigin_view_signing_in = "aanmelden"
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = " %s uur geleden"
+; SigninView.php line: 84
+sigin_view_login_failed = "Inloggen Mislukt!"
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = "Sleep items in het tekstveld om ze toe te voegen ..."
+; SigninView.php line: 92
+signin_view_username = "gebruikersnaam"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = "of klik om ze te selecteren."
+; SigninView.php line: 99
+signin_view_password = "wachtwoord"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = "Slepen of ..."
+; SigninView.php line: 109
+signin_view_login = "Log In"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = "kiezen."
+; SigninView.php line: 124
+signin_view_recover_password = "Wachtwoord Vergeten?"
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = "Ongeldige Filetype!"
+; SigninView.php line: 129
+signin_view_create_account = "Maak Een Account Aan"
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = "Bestand te groot is!"
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = "Upload Voortgang:"
+; StaticView.php line: 68
+static_view_title = "PHP Search Engine - Yioop!"
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = "Upload voortgangsbalk handicap"
+; StatisticsView.php line: 75
+statistics_view_statistics = "statistiek"
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = "Upload Fout!"
+; StatisticsView.php line: 80
+statistics_view_calculating = "Berekenen ... Even geduld aub."
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = "Uploaden afgelast!"
+; StatisticsView.php line: 94
+statistics_view_error_codes = "Foutcodes Seen"
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = "Proberen om te veel bestanden toe te voegen!"
+; StatisticsView.php line: 95
+statistics_view_sizes = "Bestandsgrootte Gedownloade"
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = "?"
+; StatisticsView.php line: 96
+statistics_view_links_per_page = "Gemiddeld links per pagina"
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = "uitgeven"
+; StatisticsView.php line: 97
+statistics_view_page_date = "Pagina gewijzigd op Dates"
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = "Niet in staat om Help-artikel laden!"
+; StatisticsView.php line: 98
+statistics_view_dns_time = "DNS Lookup Tijd"
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = "U kunt deze pagina te sturen door te klikken op de bewerken link hierboven."
+; StatisticsView.php line: 99
+statistics_view_download_time = "Pagina Download Tijd"
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = " %s pagina bestaat niet."
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = "Top Level Domains"
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = "lezen"
+; StatisticsView.php line: 101
+statistics_view_file_extension = "file Extension"
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = "Bekijk Meer Afbeelding Results ..."
+; StatisticsView.php line: 102
+statistics_view_media_type = "Mediatype"
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "prev"
+; StatisticsView.php line: 103
+statistics_view_language = "Taal voor webpaginas"
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "volgende"
+; StatisticsView.php line: 104
+statistics_view_server = "web Server"
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = "zoeken"
+; StatisticsView.php line: 105
+statistics_view_os = "Besturingssysteem (indien gedetecteerd)"
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = "tonen"
+; StatisticsView.php line: 108
+statistics_view_general_info = "General Index Info"
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = "Rij %s naar %s van %s"
+; StatisticsView.php line: 109
+statistics_view_description = "index Beschrijving"
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = "Rij %s naar %s van %s"
+; StatisticsView.php line: 111
+statistics_view_timestamp = "timestamp"
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = "tonen"
+; StatisticsView.php line: 113
+statistics_view_crawl_date = "Crawl Starttijd"
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = "zoeken"
+; StatisticsView.php line: 115
+statistics_view_pages = "gedownloade Pages"
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = "ieder"
+; StatisticsView.php line: 117
+statistics_view_url = "gezien Urls"
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = "zoeken"
+; StatisticsView.php line: 120
+statistics_view_number_hosts = "hostnames Seen"
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = "op"
+; SuggestView.php line: 69
+suggest_view_suggest_url = "Suggereren Een URL"
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = "af"
+; SuggestView.php line: 71
+suggest_view_instructions = "Suggereer een site voor de volgende web crawl. Tot tien plaatsen per dag kan worden aanvaard."
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = "op"
+; SuggestView.php line: 95
+suggest_view_url = "URL:"
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = "af"
+; SuggestView.php line: 109
+register_view_human_check = "Human Check:"
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = "op"
+; SuggestView.php line: 143
+suggest_view_human_check = "Human Check:"
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = "af"
+; SuggestView.php line: 164
+suggest_view_submit_url = "voorleggen"
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = "PHP Search Engine - Yioop! :%S"
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = "Zoek resultaten voor: %s"
+; View.php line: 93
+view_logo_alt_text = "Yioop"
 ;
-; WebLayout.php line: 63
-web_layout_title = "PHP Search Engine - Yioop!"
+; WikiView.php line: 86
+wiki_view_read = "lezen"
 ;
-; WebLayout.php line: 73
-web_layout_description = "PHP Crawler en Search Engine Software"
+; WikiView.php line: 87
+wiki_view_edit = "uitgeven"
 ;
-; WebLayout.php line: 75
-web_layout_site_author = "Chris Pollett"
+; WikiView.php line: 90
+wiki_view_pages = "paginas"
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = "vraag Statistieken"
+; WikiView.php line: 135
+wiki_view_feed = "voeden"
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = "Totale verstreken tijd voor Queries: %s seconden."
+; WikiView.php line: 136
+wiki_view_wiki = "wiki"
 ;
-; WebLayout.php line: 228
-web_layout_query_time = "Tijd: %s seconden."
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = "Automatisch uitloggen in One Minute!!"
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = "Instellingen woord Filter Opgeslagen!"
diff --git a/locale/nl/statistics.txt b/locale/nl/statistics.txt
index aed3602..0270fb1 100755
--- a/locale/nl/statistics.txt
+++ b/locale/nl/statistics.txt
@@ -1 +1 @@
-d:90;
\ No newline at end of file
+d:89;
\ No newline at end of file
diff --git a/locale/pl/configure.ini b/locale/pl/configure.ini
index 04ca26d..6d231ce 100755
--- a/locale/pl/configure.ini
+++ b/locale/pl/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = ""
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = ""
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = ""
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = ""
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = ""
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = ""
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = ""
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = ""
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = ""
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "Szukaj"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = ""
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = ""
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = ""
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = ""
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = ""
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = ""
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = ""
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = ""
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = ""
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = ""
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = ""
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = ""
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = ""
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = ""
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = ""
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = ""
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = ""
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = ""
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = ""
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = ""
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = ""
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = ""
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = ""
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = ""
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = ""
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "Szukaj"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = ""
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = ""
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = ""
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = ""
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = ""
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = ""
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = ""
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = ""
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = ""
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = ""
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = ""
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = ""
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/pt/configure.ini b/locale/pt/configure.ini
index 010a798..c02c00b 100755
--- a/locale/pt/configure.ini
+++ b/locale/pt/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = ""
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = ""
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = ""
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = ""
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = ""
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = ""
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = ""
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = ""
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = ""
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "Pesquisa"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = ""
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = ""
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = ""
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = ""
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = ""
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = ""
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = ""
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = ""
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = ""
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = ""
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = ""
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = ""
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = ""
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = ""
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = ""
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = ""
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = ""
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = ""
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = ""
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = ""
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = ""
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = ""
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = ""
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = ""
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = ""
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "Pesquisa"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = ""
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = ""
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = ""
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = ""
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = ""
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = ""
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = ""
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = ""
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = ""
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = ""
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = ""
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = ""
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/ru/configure.ini b/locale/ru/configure.ini
index dbcb3d7..8f774af 100755
--- a/locale/ru/configure.ini
+++ b/locale/ru/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = ""
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = ""
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = ""
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = ""
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = ""
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = ""
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = ""
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = ""
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = ""
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "Поиск"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = ""
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = ""
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = ""
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = ""
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = ""
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = ""
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = ""
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = ""
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = ""
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = ""
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = ""
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = ""
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = ""
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = ""
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = ""
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = ""
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = ""
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = ""
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = ""
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = ""
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = ""
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = ""
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = ""
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = ""
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = ""
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "Поиск"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = ""
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = ""
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = ""
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = ""
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = ""
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = ""
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = ""
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = ""
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = ""
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = ""
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = ""
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = ""
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/te/configure.ini b/locale/te/configure.ini
index 4ce324a..c31d342 100755
--- a/locale/te/configure.ini
+++ b/locale/te/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = "లాగిన్ అవడానికి కుకీలు అవసరము!!"
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = "ఆరోహణ క్రమం "
 ; AdminController.php line: 558
 admin_controller_sort_descending = "అవరోహణ క్రమం"
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = "అకౌంట్ సక్సస్ గా క్రియేట్ చేయబడినది!!"
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = "నమోదు ఇమెయిల్ పంపిచబడినది!"
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = "Yioop యూజర్ ఆక్టివేట్ చేయమని అభ్యర్థించారు"
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = "ప్రియమైన %s %s,"
-;
-; RegisterController.php line: 338
-register_controller_email_body = "ఈ ఇమెయిల్ ఖాతా నమోదు అభ్యర్థనలో ఇవ్వబడింది. మీకు Yioop ఖాతాఫై ఆసక్తి ఉంటే, దయచేసి నమోదు ప్రక్రియ పూర్తి చేయడానికి ఈ క్రింది చిరునామాను ఉపయోగించండి."
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = " ఖాతా నమోదు అభ్యర్థన పంపబడింది!"
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = "Yioop యూజర్ ఆక్టివేట్ చేయమని అభ్యర్థించారు"
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = "యూజర్ %s %s పేరు తో %s వారి ఖాతా ఆక్టివేషన్ అభ్యర్థించారు."
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = "ఇమెయిల్ ధృవీకరణ లోపం!!"
-;
-; RegisterController.php line: 425
-register_controller_already_activated = "ఖాతా ఇదివరకే యాక్టివేట్ చేయబడింది!"
-;
-; RegisterController.php line: 432
-register_controller_account_activated = "ఖాతా విజయవంతంగా యాక్టివేట్ చేయబడింది"
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = "ఇమెయిల్ ధృవీకరణ లోపం!!"
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = "ఖాతా పునరుద్ధరించలేకపోయింది!"
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = "ఖాతా పునరుద్ధరించలేకపోయింది!"
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = "ఖాతా పునరుద్ధరన ఇమెయిల్ పంపిచబడినది!!"
-;
-; RegisterController.php line: 500
-register_controller_recover_request = "Yioop ఖాతా పునరుద్ధరన అభ్యర్థన"
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = "ప్రియమైన %s %s,"
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = "ఖాతా పునరుద్ధరించలేకపోయింది!"
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = "ఖాతా పునరుద్ధరించలేకపోయింది!"
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = "ఖాతా పునరుద్ధరించలేకపోయింది!"
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = "పునరుద్ధరన ఇమెయిల్ ఇదివరకే వాడబడినది!"
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = "పునరుద్ధరన ఇమెయిల్ గడువు ముగిసింది!"
-;
-; RegisterController.php line: 579
-register_controller_password_changed = "పాస్ వర్డ్ మార్చబడినది!"
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = "పాస్ వర్డ్స్ సరిపోలడం లేదు!"
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = "పునరుద్ధరన ఇమెయిల్ ఇదివరకే వాడబడినది!"
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = "పునరుద్ధరన ఇమెయిల్ గడువు ముగిసింది!"
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = "యుఆర్ఎల్ యొక్క ఫార్మాట్ చెల్లదు!"
-;
-; RegisterController.php line: 736
-register_controller_error_fields = "స్టార్ ఉన్న ఫీల్డ్స్ తప్పని సరిగా పూర్తి చేయాలి!"
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = "హాష్ కోడ్ సరిపోలడం లేదు!"
-;
-; RegisterController.php line: 759
-register_controller_failed_human = "మానవ చెక్ ప్రశ్నలు తప్పు వచ్చాయి!"
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = "కాప్చ సరికాదు!"
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = "సూచించిన యుఆర్ఎల్ బఫర్ నిండి పోయినది. దయచేసి కాసేపు ఆగి మరలా ప్రయత్నించండి!"
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = "సూచించిన యు ఆర్ ఎల్ సేవ్ చేయబడినది!"
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = "మానవ చెక్ ప్రశ్నలు తప్పు వచ్చాయి!"
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = "కాప్చ సరికాదు!"
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = "హాష్ కోడ్ సరిపోలడం లేదు!"
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = "స్టార్ ఉన్న ఫీల్డ్స్ తప్పని సరిగా పూర్తి చేయాలి!"
-;
-; RegisterController.php line: 1069
-register_controller_check_email = "ఇ-మెయిల్ చిరునామా మరోసారి పరిశీలించండి! "
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = "ఖాతా సృస్టించలేదు - యూజర్ పేరు వాడుకలో వున్నది!!"
-;
-; SearchController.php line: 280
-search_controller_web = "వెబ్"
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "లాగౌట్ విజయవంతం"
-;
-; SearchController.php line: 549
-search_controller_mix_info = "మిక్స్ క్రాల్ ఉపయోగించబడుతోంది: %s"
-;
-; SearchController.php line: 555
-search_controller_crawl_info = "సూచిక: %s -- పరిమాణము: %s పేజీలు /%s URL లు "
-;
-; SearchController.php line: 591
-search_controller_search = "అన్వేషించు"
-;
-; SearchController.php line: 695
-search_controller_no_index_set = "శోధన సూచిక సెట్ అయి లేదు "
-;
-; SearchController.php line: 698
-search_controller_no_index_set = "శోధన సూచిక సెట్ అయి లేదు "
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = "డౌన్లోడ్ ఫెచ్చర్: %s"
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = "ఈ వెబ్ సైట్ ఈ పేజీ ఆర్కైవ్ చేయరాదని  అభ్యర్థించారు "
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = "ఈ చిత్రం  కనిపించిన పేజి:"
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = "సేకరించిన శీర్షిక "
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = "సేకరించిన వివరణ "
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = "సేకరించిన లింకులు "
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = "సేకరించిన అనుమతి ఉన్న క్రాల్  మార్గాలు"
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = "సేకరించిన అనుమతి లేని క్రాల్  మార్గాలు"
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = "యూప్ బాట్ క్రాల్ అలస్యం"
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = "యూప్కా ష్ పేజ్ ... ఈ పేజీకి, ఒక రోబోట్ ఆదేశం జోడించండి లింకులు సంపూర్ణ తయారు, సేకరించిన సారాంశాలు జోడించడానికి మరియు ప్రశ్న నిబంధనలు హైలైట్ కు మార్చబడింది"
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = "ఈ కేషెడ్ వెర్షన్ %s యూప్ క్రాలర్ ద్వారా పొందారు %s"
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = "డౌన్లోడ్ ఫెచ్చర్: %s"
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = "టాగుల్ చరిత్ర"
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = "సంవత్సరం:"
-;
-; SearchController.php line: 2023
-search_controller_month = "నెల:"
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = "క్రాల్ మిక్స్ "
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "సెట్టింగ్స్ సేవ్ చేయబడినవి!!"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = "లాగ్అవుట్ విజయవంతం!"
-;
-; StaticController.php line: 146
-static_controller_complete_title = "Yioop! -%s"
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = "ఇంకా పోస్ట్లు ఏవీ లేవు"
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "లాగౌట్ విజయవంతం"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = "అకౌంట్ సక్సస్ గా క్రియేట్ చేయబడినది!!"
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = "నమోదు ఇమెయిల్ పంపిచబడినది!"
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = "Yioop యూజర్ ఆక్టివేట్ చేయమని అభ్యర్థించారు"
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = "ప్రియమైన %s %s,"
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = "ఈ ఇమెయిల్ ఖాతా నమోదు అభ్యర్థనలో ఇవ్వబడింది. మీకు Yioop ఖాతాఫై ఆసక్తి ఉంటే, దయచేసి నమోదు ప్రక్రియ పూర్తి చేయడానికి ఈ క్రింది చిరునామాను ఉపయోగించండి."
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = " ఖాతా నమోదు అభ్యర్థన పంపబడింది!"
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = "Yioop యూజర్ ఆక్టివేట్ చేయమని అభ్యర్థించారు"
 ;
-; AdminView.php line: 71
-admin_view_admin = "అడ్మిన్ "
+; RegisterController.php line: 377
+register_controller_admin_activation_message = "యూజర్ %s %s పేరు తో %s వారి ఖాతా ఆక్టివేషన్ అభ్యర్థించారు."
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = "ఒక నిమిషం లో ఆటో లాగ్అవుట్ అవుతుంది!!"
+; RegisterController.php line: 419
+register_controller_email_verification_error = "ఇమెయిల్ ధృవీకరణ లోపం!!"
+;
+; RegisterController.php line: 425
+register_controller_already_activated = "ఖాతా ఇదివరకే యాక్టివేట్ చేయబడింది!"
+;
+; RegisterController.php line: 432
+register_controller_account_activated = "ఖాతా విజయవంతంగా యాక్టివేట్ చేయబడింది"
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = "ఇమెయిల్ ధృవీకరణ లోపం!!"
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = "ఖాతా పునరుద్ధరించలేకపోయింది!"
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = "ఖాతా పునరుద్ధరించలేకపోయింది!"
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = "ఖాతా పునరుద్ధరన ఇమెయిల్ పంపిచబడినది!!"
+;
+; RegisterController.php line: 500
+register_controller_recover_request = "Yioop ఖాతా పునరుద్ధరన అభ్యర్థన"
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = "ప్రియమైన %s %s,"
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = "ఖాతా పునరుద్ధరించలేకపోయింది!"
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = "ఖాతా పునరుద్ధరించలేకపోయింది!"
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = "ఖాతా పునరుద్ధరించలేకపోయింది!"
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = "పునరుద్ధరన ఇమెయిల్ ఇదివరకే వాడబడినది!"
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = "పునరుద్ధరన ఇమెయిల్ గడువు ముగిసింది!"
+;
+; RegisterController.php line: 579
+register_controller_password_changed = "పాస్ వర్డ్ మార్చబడినది!"
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = "పాస్ వర్డ్స్ సరిపోలడం లేదు!"
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = "పునరుద్ధరన ఇమెయిల్ ఇదివరకే వాడబడినది!"
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = "పునరుద్ధరన ఇమెయిల్ గడువు ముగిసింది!"
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = "యుఆర్ఎల్ యొక్క ఫార్మాట్ చెల్లదు!"
+;
+; RegisterController.php line: 736
+register_controller_error_fields = "స్టార్ ఉన్న ఫీల్డ్స్ తప్పని సరిగా పూర్తి చేయాలి!"
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = "హాష్ కోడ్ సరిపోలడం లేదు!"
+;
+; RegisterController.php line: 759
+register_controller_failed_human = "మానవ చెక్ ప్రశ్నలు తప్పు వచ్చాయి!"
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = "కాప్చ సరికాదు!"
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = "సూచించిన యుఆర్ఎల్ బఫర్ నిండి పోయినది. దయచేసి కాసేపు ఆగి మరలా ప్రయత్నించండి!"
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = "సూచించిన యు ఆర్ ఎల్ సేవ్ చేయబడినది!"
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = "మానవ చెక్ ప్రశ్నలు తప్పు వచ్చాయి!"
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = "కాప్చ సరికాదు!"
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = "హాష్ కోడ్ సరిపోలడం లేదు!"
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = "స్టార్ ఉన్న ఫీల్డ్స్ తప్పని సరిగా పూర్తి చేయాలి!"
+;
+; RegisterController.php line: 1069
+register_controller_check_email = "ఇ-మెయిల్ చిరునామా మరోసారి పరిశీలించండి! "
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = "ఖాతా సృస్టించలేదు - యూజర్ పేరు వాడుకలో వున్నది!!"
+;
+; SearchController.php line: 280
+search_controller_web = "వెబ్"
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "లాగౌట్ విజయవంతం"
+;
+; SearchController.php line: 549
+search_controller_mix_info = "మిక్స్ క్రాల్ ఉపయోగించబడుతోంది: %s"
+;
+; SearchController.php line: 555
+search_controller_crawl_info = "సూచిక: %s -- పరిమాణము: %s పేజీలు /%s URL లు "
+;
+; SearchController.php line: 591
+search_controller_search = "అన్వేషించు"
+;
+; SearchController.php line: 695
+search_controller_no_index_set = "శోధన సూచిక సెట్ అయి లేదు "
+;
+; SearchController.php line: 698
+search_controller_no_index_set = "శోధన సూచిక సెట్ అయి లేదు "
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = "డౌన్లోడ్ ఫెచ్చర్: %s"
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = "ఈ వెబ్ సైట్ ఈ పేజీ ఆర్కైవ్ చేయరాదని  అభ్యర్థించారు "
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = "ఈ చిత్రం  కనిపించిన పేజి:"
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = "సేకరించిన శీర్షిక "
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = "సేకరించిన వివరణ "
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = "సేకరించిన లింకులు "
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = "సేకరించిన అనుమతి ఉన్న క్రాల్  మార్గాలు"
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = "సేకరించిన అనుమతి లేని క్రాల్  మార్గాలు"
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = "యూప్ బాట్ క్రాల్ అలస్యం"
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = "యూప్కా ష్ పేజ్ ... ఈ పేజీకి, ఒక రోబోట్ ఆదేశం జోడించండి లింకులు సంపూర్ణ తయారు, సేకరించిన సారాంశాలు జోడించడానికి మరియు ప్రశ్న నిబంధనలు హైలైట్ కు మార్చబడింది"
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = "ఈ కేషెడ్ వెర్షన్ %s యూప్ క్రాలర్ ద్వారా పొందారు %s"
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = "డౌన్లోడ్ ఫెచ్చర్: %s"
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = "టాగుల్ చరిత్ర"
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = "సంవత్సరం:"
+;
+; SearchController.php line: 2023
+search_controller_month = "నెల:"
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = "క్రాల్ మిక్స్ "
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "సెట్టింగ్స్ సేవ్ చేయబడినవి!!"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = "లాగ్అవుట్ విజయవంతం!"
+;
+; StaticController.php line: 146
+static_controller_complete_title = "Yioop! -%s"
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "లాగౌట్ విజయవంతం"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "అడ్మిన్ "
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = "ఒక నిమిషం లో ఆటో లాగ్అవుట్ అవుతుంది!!"
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = "ప్రస్తుతం ప్రాసెస్ అవుతున్నవి "
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "తొలగించు"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = "మునుపటి క్రాల్స్ ఏమి లేవు"
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = "% వికీ పేజీ చర్చ"
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = "చర్యలు"
 ;
-; GroupView.php line: 104
-group_view_wiki = "వికీ "
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = "వికీ ప్రధాన పేజీని ల్యాండింగ్ పేజీగా ఉపయోగించండి:"
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = "వెనుకవైపు రంగు:"
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = "వెనుకవైపు చిత్రం:"
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = "ఒక నిమిషం లో ఆటో లాగ్అవుట్ అవుతుంది!!"
+; AppearanceElement.php line: 91
+appearance_element_background_image = "వెనుకవైపు చిత్రం:"
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = "ముందువైపు రంగు:"
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = "టాప్ బార్ రంగు:"
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = "సైడ్ బార్ రంగు:"
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = "సైట్ చిహ్నం:"
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = "సైట్ చిహ్నం:"
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = "మొబైల్ చిహ్నం:"
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = "మొబైల్ చిహ్నం:"
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = "ఫవికన్:"
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = "ఫవికన్:"
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
+; AppearanceElement.php line: 163
+appearance_element_toolbar = "శోధన టూల్ బార్"
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = "టైం జోన్:"
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = "వెబ్ కుకీ పేరు:"
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = "వెబ్ టోకెన్ పేరు:"
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = "సెర్చ్ ఇంజిన్ వర్క్ డైరెక్టరీ"
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = "లోడ్ లేదా సృష్టించు "
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = "ప్రొఫైల్ సెట్టింగ్స్"
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = "డిఫాల్ట్ భాష:"
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = "డీబగ్ డిస్ప్లే"
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = "లోపాల సమాచారం"
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = "క్వరీ సమాచారం"
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = "టెస్ట్ సమాచారం"
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = "శోధన యాక్సెస్"
 ;
-; RecoverView.php line: 104
-register_view_new_password = "క్రొత్త పాస్ వర్డ్ "
+; ConfigureElement.php line: 136
+configure_element_web_access = "వెబ్"
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = "పాస్ వర్డ్ మరలా టైపు చెయ్యండి:"
+; ConfigureElement.php line: 141
+configure_element_rss_access = "ఆర్ఎస్ఎస్"
 ;
-; RecoverView.php line: 131
-recover_view_username = "యూజర్ పేరు:"
+; ConfigureElement.php line: 146
+configure_element_api_access = "ఎపిఐ"
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = "క్రాల్ రోబోట్ పేరు:"
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = "రోబోట్ ఇన్ స్టెన్స్:"
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = "రోబోట్ వివరణ"
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "వెనుకకు"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = "మోడిఫై ఆక్టివ్ క్రాల్"
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = "ఎడిట్ క్రాల్ ఆప్షన్స్"
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = "వెబ్ క్రాల్"
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = "ఆర్కైవ్ క్రాల్"
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "సేవ్ ఆప్షన్స్"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = "వెనుకకు"
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = "ఎడిట్ క్లాస్సిఫైర్"
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = "క్లాస్సిఫైర్ లేబుల్:"
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = "చేంజ్"
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = "స్టాటిస్టిక్స్"
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = "పాజిటివ్ ఉదాహరణలు:"
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = "నెగటివ్ ఉదాహరణలు:"
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = "ఏక్యురసి:"
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = "N/A"
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = "అప్డేట్"
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = "ఉదాహరణలు జోడించండి"
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = "మూలం:"
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = "డీఫాల్ట్ క్రాల్"
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = "కీ వర్డ్స్:"
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = "లోడ్"
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = "ఫైనలైజ్"
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = "డాక్యుమెంట్స్ లేవు"
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = "వెనుకకు"
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = "ఎడిట్ లొకేల్: %s"
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = "ఫిల్టర్:"
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = "మీకు బాగా నచ్చిన ఆట:"
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = "అనువదించడానికి మాచింగ్ స్ట్రింగ్స్ ఏమి లేవు!"
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = "వెనుకకు"
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = "ఎడిట్ క్రాల్ మిక్స్"
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = "మిక్స్ పేరు"
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = "మిక్స్  కంపోనంట్స్"
 ;
-; RegisterView.php line: 153
-register_view_create_account = "ఖాతా సృష్టించు"
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = "ఫస్ట్ పేరు:"
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = " లాస్ట్ పేరు:"
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = "సేవ్"
 ;
-; RegisterView.php line: 219
-register_view_username = "యూజర్ పేరు:"
+; FooterElement.php line: 58
+footer_element_blog = "బ్లాగ్"
 ;
-; RegisterView.php line: 232
-register_view_email = "ఇ మెయిల్:"
+; FooterElement.php line: 60
+footer_element_privacy = "ప్రైవసీ"
 ;
-; RegisterView.php line: 246
-register_view_password = "పాస్&zwnj;వర్డ్:"
+; FooterElement.php line: 62
+footer_element_terms = "నిబంధనలు"
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = "పాస్ వర్డ్ మరలా టైపు చెయ్యండి:"
+; FooterElement.php line: 64
+footer_element_tools = "టూల్స్"
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = "YioopBot"
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = "ఖాతా సృష్టించు ని క్లిక్ చేయడం ద్వారా నేను అంగీకరిస్తున్నాను"
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = "ఆడ్ గ్రూప్"
 ;
-; RegisterView.php line: 331
-register_view_terms = "Yioop నిబంధనలు"
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = "రిక్వెస్ట్ ఆడ్ గ్రూప్"
 ;
-; RegisterView.php line: 333
-register_view_and = "అండ్"
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = "ఎడిట్ పేజి"
 ;
-; RegisterView.php line: 335
-register_view_privacy = "ప్రైవసీ పాలసీ"
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = "."
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = "ఖాతా సృష్టించు"
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = "% వికీ పేజీ చర్చ"
 ;
-; SearchView.php line: 92
-search_view_title = "యూప్ ! పిహెచ్పి సెర్చ్ ఇంజిన్"
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = "ఫీడ్"
 ;
-; SearchView.php line: 119
-search_view_input_label = "వెబ్ వెతకడానికి ఎమైనా టైప్ చేయండి"
+; GroupfeedElement.php line: 160
+group_view_wiki = "వికీ "
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "వెబ్ వెతకడానికి ఎమైనా టైప్ చేయండి"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = "% యూజర్ ఫీడ్"
 ;
-; SearchView.php line: 126
-search_view_search = "అన్వేషించు"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = "వ్యాఖ్య"
 ;
-; SearchView.php line: 155
-search_view_no_index_set = "డిఫాల్ట్ సూచిక సెట్ చేసి లేదు"
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = "వికీ"
 ;
-; SearchView.php line: 164
-search_view_more_statistics = "మరిన్ని గణాంకాలు"
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = "%sపోస్ట్లు, %sథ్రెడ్లు"
 ;
-; SearchView.php line: 201
-search_view_calculated = "%s సెకన్లు"
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = "ఆఖరి పోస్ట్:"
 ;
-; SearchView.php line: 203
-search_view_results = "చూపించేది %s - %s of %s"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = "వ్యాఖ్య"
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = "థెసారస్ ఫలితాలు"
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = "క్రొత్త థ్రెడ్ మొదలుపెట్టండి"
 ;
-; SearchView.php line: 339
-search_view_word_cloud = "వర్డ్స్:"
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = "క్రొత్త థ్రెడ్ మొదలుపెట్టండి"
 ;
-; SearchView.php line: 380
-search_view_cache = "కేష్ చేయబడినవి"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = "ఈ గ్రూప్ లో ఇంకా పోస్ట్లు లేవు!"
 ;
-; SearchView.php line: 382
-search_view_as_text = "టెక్ష్ట్ లాగ చూపించు"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = "థ్రెడ్ ఉనికిలో లేదు! ఇది తొలగించబడి ఉండవచ్చు?"
 ;
-; SearchView.php line: 393
-search_view_similar = "ఒకే రకం"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = "ఎడిట్"
 ;
-; SearchView.php line: 402
-search_view_inlink = "ఇన్ లింక్స్"
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = "డిలీట్"
 ;
-; SearchView.php line: 419
-search_view_rank = "రేంక్:%s"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = "%s పోస్ట్లు"
 ;
-; SearchView.php line: 421
-search_view_relevancy = "సంబంధిత:%s"
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = "%s వ్యూస్"
 ;
-; SearchView.php line: 423
-search_view_proximity = "సామీప్యత:%s"
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = "క్రొత్త థ్రెడ్ %s"
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = "థెసారస్: %s"
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = "క్రొత్త థ్రెడ్ %s"
 ;
-; SearchView.php line: 436
-search_view_score = "స్కోర్:%s"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = "చివరిగా సవరించబడింది: %s"
 ;
-; SettingsView.php line: 66
-settings_view_settings = "సెట్టింగులు"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = "వోట్:"
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "ఫలితాలు/పేజీ:"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = "ఆఖరి పోస్ట్:"
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = "టాబ్స్ లో తెరువు:"
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = "వ్యాఖ్య"
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "శోధన సూచిక:"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "భాష:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = "వ్యాఖ్యను జోడించండి"
 ;
-; SettingsView.php line: 109
-settings_view_save = "సెట్టింగులను సేవ్ చేయి"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = "సేవ్"
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = "విషయం"
 ;
-; SigninView.php line: 68
-signin_view_signin = "సైన్ ఇన్"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = "పోస్ట్"
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = "సేవ్"
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = "లాగిన్ ఫెయిల్ అయ్యింది!"
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = "పోస్ట్ లను సవరించు"
 ;
-; SigninView.php line: 92
-signin_view_username = "యూజర్ పేరు"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = "విషయం"
 ;
-; SigninView.php line: 99
-signin_view_password = "పాస్ వర్డ్ "
+; GroupfeedElement.php line: 691
+groupfeed_element_post = "పోస్ట్"
 ;
-; SigninView.php line: 109
-signin_view_login = "లాగ్ ఇన్"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = "సేవ్"
 ;
-; SigninView.php line: 124
-signin_view_recover_password = "పాస్&zwnj;వర్డ్ మర్చిపోయారా?"
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = "గ్రూప్ ఫీడ్స్ అప్డేట్ అవడంలేదు!"
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = "వెనుకకు"
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = "వడపోత:"
 ;
-; StaticView.php line: 68
-static_view_title = "PHP సెర్చ్ ఇంజిన్ - Yioop!"
+; MachinelogElement.php line: 69
+machinelog_element_log_file = "%s లాగ్ ఫైల్"
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = "స్టాటిస్టిక్స్"
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = "ఆటో రిఫ్రెష్ ఆఫ్ చేయండి"
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = "ఆటో రిఫ్రెష్ ఆన్ చేయండి"
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = "చూసిన ఎర్రర్ కోడ్స్"
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = "డౌన్లోడ్ ఫైల్ సైజులు"
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = "స్వాగతం, %s!"
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = "సగటు లింకులు/ పేజీ"
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = "ఈ పేజీ నుండి మీరు మీ ఖాతా అంశాలను ఆక్సెస్ మరియు నియంత్రణ చేయవచ్చు."
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = "పేజ్ మోడి ఫయ్డ్ తేదీలు "
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = "ఖాతా వివరాలు"
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = "డిఎన్ఎస్ లుక్అప్ టైం"
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = "యూజర్ ఐకాన్"
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = "పేజీ డౌన్లోడ్ సమయం"
+; ManageaccountElement.php line: 117
+manageusers_element_username = "యూజర్ పేరు"
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = "పేరు"
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = "ఫైలు ఎక్స్టెన్షన్"
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = "ఇంటి పేరు"
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = "మీడియా టైపు "
+; ManageaccountElement.php line: 136
+manageusers_element_email = "ఇ-మెయిలు "
 ;
-; StatisticsView.php line: 103
-statistics_view_language = "వెబ్ పేజి భాష"
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = "వెబ్ సర్వర్"
+; ManageaccountElement.php line: 159
+manageaccount_element_password = "పాస్ వర్డ్:"
 ;
-; StatisticsView.php line: 105
-statistics_view_os = "ఆపరేటింగ్ సిస్టం (గుర్తించబడితే)"
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "కొత్త పాస్ వర్డ్:"
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = "సాధారణ సూచిక సమాచారం"
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "మరలా టైపు చెయ్యండి:"
 ;
-; StatisticsView.php line: 109
-statistics_view_description = "సూచిక వివరణ"
+; ManageaccountElement.php line: 184
+manageaccount_element_save = "సేవ్"
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = "టైం స్టాంప్ "
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = "భాష మరియు శోధన సెట్టింగులు"
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = "క్రాల్ ప్రారంబించిన సమయము "
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = "క్రాల్స్ మరియు సూచికలు"
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = "డౌన్లోడ్ పేజీలు"
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = "చూసిన యుఆరెల్స్"
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = "హోస్ట్ పేర్లు చూడబడినవి"
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = "క్రాల్స్ మరియు సూచికల నిర్వహణ"
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = "యుఆరెల్ ని సూచించండి"
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = "యుఆరెల్:"
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = "హ్యూమన్ చెక్:"
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = "వికీ"
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = "సబ్మిట్"
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = "%sపోస్ట్లు, %sథ్రెడ్లు"
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = "ఆఖరి పోస్ట్:"
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = "Yioop"
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = "క్రాల్ మిక్షెస్"
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = "ఫీడ్  "
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = "ఒక నిమిషం లో ఆటో లాగ్అవుట్ అవుతుంది!!"
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "చర్యలు"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = "వికీ ప్రధాన పేజీని ల్యాండింగ్ పేజీగా ఉపయోగించండి:"
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = "వెనుకవైపు రంగు:"
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = "వెనుకవైపు చిత్రం:"
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = "వెనుకవైపు చిత్రం:"
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = "ముందువైపు రంగు:"
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = "టాప్ బార్ రంగు:"
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = "సైడ్ బార్ రంగు:"
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = "సైట్ చిహ్నం:"
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = "సైట్ చిహ్నం:"
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = "మొబైల్ చిహ్నం:"
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = "మొబైల్ చిహ్నం:"
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = "ఫవికన్:"
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = "ఫవికన్:"
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = "శోధన టూల్ బార్"
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = "టైం జోన్:"
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = "వెబ్ కుకీ పేరు:"
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = "వెబ్ టోకెన్ పేరు:"
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = "సెర్చ్ ఇంజిన్ వర్క్ డైరెక్టరీ"
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = "లోడ్ లేదా సృష్టించు "
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = "ప్రొఫైల్ సెట్టింగ్స్"
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = "డిఫాల్ట్ భాష:"
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = "డీబగ్ డిస్ప్లే"
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = "లోపాల సమాచారం"
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = "క్వరీ సమాచారం"
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = "టెస్ట్ సమాచారం"
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = "శోధన యాక్సెస్"
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = "వెబ్"
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = "ఆర్ఎస్ఎస్"
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = "ఎపిఐ"
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = "క్రాల్ రోబోట్ పేరు:"
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = "రోబోట్ ఇన్ స్టెన్స్:"
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = "రోబోట్ వివరణ"
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "వెనుకకు"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = "మోడిఫై ఆక్టివ్ క్రాల్"
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = "ఎడిట్ క్రాల్ ఆప్షన్స్"
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = "వెబ్ క్రాల్"
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = "ఆర్కైవ్ క్రాల్"
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = "అందుబాటులో వున్న క్రాల్స్"
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = "లేబుల్"
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "సేవ్ ఆప్షన్స్"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = "వెనుకకు"
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = "చర్యలు"
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = "ఎడిట్ క్లాస్సిఫైర్"
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = "ఎడిట్"
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = "క్లాస్సిఫైర్ లేబుల్:"
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = "ఫైనలైజ్ చేయబడినది"
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = "చేంజ్"
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = "ఫైనలైజ్"
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = "స్టాటిస్టిక్స్"
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = "ఫైనలైజ్"
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = "పాజిటివ్ ఉదాహరణలు:"
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = "ఫైనలైజ్ అవుతుంది"
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = "నెగటివ్ ఉదాహరణలు:"
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = "ఏక్యురసి:"
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = "తొలగించు"
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = "N/A"
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = "క్లాస్సిఫైర్స్ నిర్వహణ"
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = "అప్డేట్"
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = "పేరు"
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = "ఉదాహరణలు జోడించండి"
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = "సృష్టించు "
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = "మూలం:"
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = "శోధన"
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = "డీఫాల్ట్ క్రాల్"
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = "క్లాస్సిఫైర్ దరఖాస్తు సృష్టించు"
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = "పేరు"
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = "క్రాల్ సృష్టించు"
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = "పేరు"
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = "కీ వర్డ్స్:"
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = "క్రొత్త క్రాల్ సృష్టించు"
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = "లోడ్"
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = "ఎంపికలు"
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = "ఫైనలైజ్"
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = "డాక్యుమెంట్స్ లేవు"
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = "వెనుకకు"
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = "ఎడిట్ లొకేల్: %s"
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = "పేరు"
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = "ఫిల్టర్:"
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = "అనువదించడానికి మాచింగ్ స్ట్రింగ్స్ ఏమి లేవు!"
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = "వెనుకకు"
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = "ఎడిట్ క్రాల్ మిక్స్"
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = "మిక్స్ పేరు"
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = "మిక్స్  కంపోనంట్స్"
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = "వికీ"
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = "జాయిన్"
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = "సేవ్"
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = "ఎడిట్"
 ;
-; FooterElement.php line: 58
-footer_element_blog = "బ్లాగ్"
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = "ఎడిట్"
 ;
-; FooterElement.php line: 60
-footer_element_privacy = "ప్రైవసీ"
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = "డిలీట్"
 ;
-; FooterElement.php line: 62
-footer_element_terms = "నిబంధనలు"
+; ManagegroupsElement.php line: 249
+managegroups_element_join = "జాయిన్"
 ;
-; FooterElement.php line: 64
-footer_element_tools = "టూల్స్"
+; ManagegroupsElement.php line: 254
+managegroups_element_join = "జాయిన్"
 ;
-; FooterElement.php line: 66
-footer_element_bot = "YioopBot"
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = "డిలీట్"
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = "ఆడ్ గ్రూప్"
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = "రిక్వెస్ట్ ఆడ్ గ్రూప్"
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = "ఎడిట్ గ్రూప్"
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = "ఎడిట్ పేజి"
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = "గ్రూప్ సృష్టించు"
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = "గ్రూప్ సృష్టించు/చేరు "
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = "పేరు"
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = "బ్రౌజ్"
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = "% వికీ పేజీ చర్చ"
+; ManagegroupsElement.php line: 348
+managegroups_element_register = "నమోదు చేయి"
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = "ఫీడ్"
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = "వికీ "
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = "% యూజర్ ఫీడ్"
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = "వ్యాఖ్య"
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = "వికీ"
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = "%sపోస్ట్లు, %sథ్రెడ్లు"
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = "ఆఖరి పోస్ట్:"
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = "డిలీట్"
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = "వ్యాఖ్య"
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = "క్రొత్త థ్రెడ్ మొదలుపెట్టండి"
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = "క్రొత్త థ్రెడ్ మొదలుపెట్టండి"
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = "ఈ గ్రూప్ లో ఇంకా పోస్ట్లు లేవు!"
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = "డిలీట్"
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = "థ్రెడ్ ఉనికిలో లేదు! ఇది తొలగించబడి ఉండవచ్చు?"
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = "ఎడిట్"
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = "మరిన్నియూజర్స్ ని ఆహ్వానించండి"
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = "డిలీట్"
+; ManagegroupsElement.php line: 503
+managegroups_element_save = "సేవ్"
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = "%s పోస్ట్లు"
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = "ఎడిట్ గ్రూప్"
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = "%s వ్యూస్"
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = "యూజర్స్ ని గ్రూప్ కి  ఆహ్వానించండి"
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = "క్రొత్త థ్రెడ్ %s"
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = "పేరు"
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = "క్రొత్త థ్రెడ్ %s"
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = "యూజర్ పేర్లు(కామా లేదా ఖాళీ)"
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = "చివరిగా సవరించబడింది: %s"
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = "మరిన్నియూజర్స్ ని ఆహ్వానించండి"
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = "వోట్:"
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = "ఆఖరి పోస్ట్:"
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = "వ్యాఖ్య"
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = "పేరు"
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = "వ్యాఖ్యను జోడించండి"
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = "సేవ్"
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = "విషయం"
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = "పోస్ట్"
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = "పేరు"
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = "సేవ్"
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = "పోస్ట్ లను సవరించు"
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = "విషయం"
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = "పోస్ట్"
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = "సేవ్"
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = "లొకేల్ లిస్టు "
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = "గ్రూప్ ఫీడ్స్ అప్డేట్ అవడంలేదు!"
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = "పేరు "
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = "వెనుకకు"
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = "ట్యాగు"
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = "వడపోత:"
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = "మోడ్"
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = "%s లాగ్ ఫైల్"
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = "ఎనేబుల్డ్"
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = "ఆటో రిఫ్రెష్ ఆఫ్ చేయండి"
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = "శాతం"
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = "ఆటో రిఫ్రెష్ ఆన్ చేయండి"
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = "చర్యలు"
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = "అవును"
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = "స్వాగతం, %s!"
+; ManagelocalesElement.php line: 103
+managelocales_element_false = "కాదు"
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = "ఈ పేజీ నుండి మీరు మీ ఖాతా అంశాలను ఆక్సెస్ మరియు నియంత్రణ చేయవచ్చు."
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = "ఎడిట్ "
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = "ఖాతా వివరాలు"
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = "యూజర్ ఐకాన్"
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = "డిలీట్"
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "యూజర్ పేరు"
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = "పేరు"
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = "ఎడిట్ లోకేల్"
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = "ఇంటి పేరు"
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = "లోకేల్ జోడించు"
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = "ఇ-మెయిలు "
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = "లోకేల్ పేరు:"
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = "లోకేల్ ట్యాగ్:"
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = "పాస్ వర్డ్:"
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "కొత్త పాస్ వర్డ్:"
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "మరలా టైపు చెయ్యండి:"
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = "సబ్మిట్"
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = "సేవ్"
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = "లోకేల్స్ శోధన"
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = "భాష మరియు శోధన సెట్టింగులు"
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = "క్రాల్స్ మరియు సూచికలు"
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = "పేరు "
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = "ట్యాగు"
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = "మోడ్"
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = "క్రాల్స్ మరియు సూచికల నిర్వహణ"
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = "ఎనేబుల్డ్"
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = "అవును"
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = "కాదు"
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = "మెషిన్ జోడించు"
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = "మెషిన్ పేరు:"
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = "వికీ"
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = "మెషిన్ యుఆర్ఎల్ :"
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = "%sపోస్ట్లు, %sథ్రెడ్లు"
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = "ఆఖరి పోస్ట్:"
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = "పేరెంట్ పేరు:"
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = "ఫెచేర్స్ సంఖ్య:"
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = "క్రాల్ మిక్షెస్"
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = "సబ్మిట్ "
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = "మెషిన్ సమాచారం"
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = "మెషిన్ స్టేటస్ కోసం వేచి ఉన్నాము..."
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = "మెషిన్ స్టేటస్ అప్డేట్ జరుగుట లేదు..."
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = "రోల్ జాబితా"
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = "పేరు"
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = "చర్యలు"
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = "ఎడిట్"
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = "డిలీట్"
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = "డిలీట్"
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = "ఆడ్ రోల్ దరఖాస్తు"
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = "రోల్ సమాచారం"
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "ఆడ్ రోల్"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = "పేరు"
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = "కార్యకలాపాలు"
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = "డిలీట్"
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = "డిలీట్"
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = "సేవ్"
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = "శోధన"
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = "ఆడ్ రోల్ దరఖాస్తు"
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = "పేరు"
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = "యూజర్ జాబితా"
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = "యూజర్ పేరు"
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = "పేరు"
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = "ఇంటి పేరు"
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = "ఇ-మెయిలు "
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = "గ్రూప్స్"
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = "స్టేటస్"
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = "చర్యలు"
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = "ఎడిట్"
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = "ఎడిట్"
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = "డిలీట్"
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = "డిలీట్"
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = "ఆడ్ రోల్ దరఖాస్తు"
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = "యూజర్ సమాచారం"
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = "ఆడ్ యూజర్"
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = "యూజర్ పేరు"
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = "పేరు"
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = "ఇంటి పేరు"
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = "ఇ-మెయిలు "
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = "స్టేటస్"
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = "రోల్స్"
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = "%s రోల్స్"
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = "డిలీట్"
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = "డిలీట్"
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = "ఫిల్టర్"
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = "ఆడ్"
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = "గ్రూప్స్"
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = "%s గ్రూప్స్"
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = "డిలీట్"
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = "ఫిల్టర్"
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = "ఆడ్"
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "పాస్ వర్డ్"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "మరలా పాస్ వర్డ్ టైపు చెయ్యండి"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = "సేవ్"
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = "శోధన"
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = "ఆడ్ రోల్ దరఖాస్తు"
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = "అందుబాటులో వున్న క్రాల్స్"
+; ManageusersElement.php line: 499
+manageusers_element_username = "యూజర్ పేరు"
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = "లేబుల్"
+; ManageusersElement.php line: 500
+manageusers_element_firstname = "పేరు"
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = "ఇంటి పేరు"
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = "ఇ-మెయిలు "
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = "చర్యలు"
+; ManageusersElement.php line: 503
+manageusers_element_status = "స్టేటస్"
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = "ఎడిట్"
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = "లభ్యంఅయ్యే మిక్షెస్"
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = "ఫైనలైజ్ చేయబడినది"
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = "పేరు"
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = "ఫైనలైజ్"
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = "నిర్వచనం"
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = "ఫైనలైజ్"
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = "చర్యలు"
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = "ఫైనలైజ్ అవుతుంది"
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = "తొలగించు"
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = "ఎడిట్"
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = "క్లాస్సిఫైర్స్ నిర్వహణ"
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = "పేరు"
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = "సృష్టించు "
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = "శోధన"
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = "క్లాస్సిఫైర్ దరఖాస్తు సృష్టించు"
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = "పేరు"
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = "క్రాల్ సృష్టించు"
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = "పేరు"
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = "క్రొత్త క్రాల్ సృష్టించు"
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = "ఎంపికలు"
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = "మిక్స్ పేరు"
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = "పేరు"
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "సెట్టింగులు"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "సైన్ ఇన్ "
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "అడ్మిన్ "
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = "వికీ"
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = "జాయిన్"
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = "ఎడిట్"
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = "ఎడిట్"
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = "డిలీట్"
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = "జాయిన్"
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = "జాయిన్"
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = "డిలీట్"
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = "ఎడిట్ గ్రూప్"
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = "గ్రూప్ సృష్టించు"
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = "గ్రూప్ సృష్టించు/చేరు "
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = "పేరు"
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = "బ్రౌజ్"
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = "క్లాస్సిఫైర్స్ ఏమీ లేవు."
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = "నమోదు చేయి"
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = "డిలీట్"
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = "కాష్"
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = "డిలీట్"
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = "ఇన్ లింక్స్"
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = "మరిన్నియూజర్స్ ని ఆహ్వానించండి"
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = "IP అడ్రస్"
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = "సేవ్"
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = "ఎడిట్ గ్రూప్"
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = "యూజర్స్ ని గ్రూప్ కి  ఆహ్వానించండి"
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = "పేరు"
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = "యూజర్ పేర్లు(కామా లేదా ఖాళీ)"
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = "మరిన్నియూజర్స్ ని ఆహ్వానించండి"
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = "పేరు"
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = "గ్రూప్ సృష్టించు/జాయిన్"
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = "పేరు"
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = "లొకేల్ లిస్టు "
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = "పేరు "
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = "ట్యాగు"
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = "మోడ్"
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = "ఎనేబుల్డ్"
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = "శాతం"
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = "చర్యలు"
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = "అవును"
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = "కాదు"
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = "ఎడిట్ "
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = "పేజీ సేవ్ చేయి"
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = "డిలీట్"
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = "ఎడిట్ లోకేల్"
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = "లోకేల్ జోడించు"
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = "లోకేల్ పేరు:"
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = "లోకేల్ ట్యాగ్:"
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = "సబ్మిట్"
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = "లోకేల్స్ శోధన"
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = "పేరు "
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = "ట్యాగు"
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = "మోడ్"
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = "ఎనేబుల్డ్"
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = "అవును"
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = "కాదు"
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = "మెషిన్ జోడించు"
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = "మెషిన్ పేరు:"
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = "మెషిన్ యుఆర్ఎల్ :"
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = "పేరెంట్ పేరు:"
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = "ఫెచేర్స్ సంఖ్య:"
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = "సబ్మిట్ "
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = "మెషిన్ సమాచారం"
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = "మెషిన్ స్టేటస్ కోసం వేచి ఉన్నాము..."
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = "మెషిన్ స్టేటస్ అప్డేట్ జరుగుట లేదు..."
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = "రోల్ జాబితా"
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = "పేరు"
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = "చర్యలు"
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = "ఎడిట్"
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = "డిలీట్"
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = "డిలీట్"
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = "ఆడ్ రోల్ దరఖాస్తు"
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = "రోల్ సమాచారం"
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "ఆడ్ రోల్"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = "పేరు"
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = "కార్యకలాపాలు"
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = "డిలీట్"
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = "డిలీట్"
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = "సేవ్"
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = "శోధన"
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = "ఆడ్ రోల్ దరఖాస్తు"
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = "పేరు"
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = "యూజర్ జాబితా"
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "యూజర్ పేరు"
+; SecurityElement.php line: 103
+security_element_save = "సేవ్ చేయి"
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = "పేరు"
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = "ఇంటి పేరు"
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = "ఇ-మెయిలు "
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = "గ్రూప్స్"
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = "స్టేటస్"
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = "చర్యలు"
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = "ఎడిట్"
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = "ఎడిట్"
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = "డిలీట్"
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = "డిలీట్"
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = "ఆడ్ రోల్ దరఖాస్తు"
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = "యూజర్ సమాచారం"
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = "ఆడ్ యూజర్"
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "యూజర్ పేరు"
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = "పేరు"
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = "ఇంటి పేరు"
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = "ఇ-మెయిలు "
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = "స్టేటస్"
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = "రోల్స్"
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = "%s రోల్స్"
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = "డిలీట్"
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = "డిలీట్"
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = "ఫిల్టర్"
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = "ఆడ్"
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = "గ్రూప్స్"
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = "%s గ్రూప్స్"
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = "డిలీట్"
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = "ఫిల్టర్"
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = "ఆడ్"
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "పాస్ వర్డ్"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "మరలా పాస్ వర్డ్ టైపు చెయ్యండి"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = "సేవ్"
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = "శోధన"
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = "ఆడ్ రోల్ దరఖాస్తు"
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "యూజర్ పేరు"
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = "పేరు"
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = "ఇంటి పేరు"
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = "ఇ-మెయిలు "
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = "స్టేటస్"
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = "లభ్యంఅయ్యే మిక్షెస్"
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = "పేరు"
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = "నిర్వచనం"
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = "చర్యలు"
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = "సెట్టింగులు"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "సైన్ ఇన్ "
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = "ఎడిట్"
+; SigninElement.php line: 81
+signin_element_signout = "సైన్ ఔట్ "
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
+; WikiElement.php line: 139
+groupfeed_element_feed = "ఫీడ్"
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = "మిక్స్ పేరు"
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = "వికీ సింటాక్స్ గైడ్"
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = "చరిత్ర"
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "సెట్టింగులు"
+; WikiElement.php line: 342
+wiki_element_locale_name = "లొకేల్: %s"
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "సైన్ ఇన్ "
+; WikiElement.php line: 346
+wiki_element_page = "పేజ్: %s"
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "అడ్మిన్ "
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = "సెట్టింగ్స్"
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = "పేజ్ టైపు:"
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = "టైటిల్:"
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = "రచయిత:"
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = "మెటా రోబోట్స్:"
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = "మెటా వివరణ:"
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = "హెడర్ పేజ్ నేమ్:"
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = "ఫుటరు పేజ్ నేమ్:"
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = "ఎడిట్ కారణం:"
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = "సేవ్ చేయి"
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = "మీడియా లిస్టు పేజ్"
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = "పేజ్ రిసోర్సెస్"
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = "అప్లోడ్"
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = "క్లాస్సిఫైర్స్ ఏమీ లేవు."
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = "పేరు మార్పు విఫలమైనది!"
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = "పేరుమార్చండి"
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = "పేజీకి జోడించండి"
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = "%s గ్రూప్ వికీ పేజీ జాబితా"
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = "గ్రూప్ పేజి పేర్లను శోధించు"
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = "పేజీ సృష్టించు: %s"
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = "కాష్"
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = "ఇన్ లింక్స్"
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = "IP అడ్రస్"
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = "% వికీ పేజీ చర్చ"
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = "వికీ "
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = "ఒక నిమిషం లో ఆటో లాగ్అవుట్ అవుతుంది!!"
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = "చెల్లని ఫైల్ టైపు!"
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = "ఫైల్ పరిమాణం చాలా పెద్దది!"
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = "పేజీ సేవ్ చేయి"
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = "మునుపటి"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = "తర్వాత"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = "మీరు దీన్ని ఖచ్చితంగా తొలగించాలనుకుంటున్నారా?"
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = "సేవ్ చేయి"
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = "క్రొత్త పాస్ వర్డ్ "
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = "పాస్ వర్డ్ మరలా టైపు చెయ్యండి:"
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = "యూజర్ పేరు:"
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "సెట్టింగులు"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "సైన్ ఇన్ "
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "సైన్ ఔట్ "
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = "ఫీడ్"
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = "మీకు బాగా నచ్చిన ఆట:"
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = "వికీ సింటాక్స్ గైడ్"
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = "చరిత్ర"
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = "ఖాతా సృష్టించు"
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = "లొకేల్: %s"
+; RegisterView.php line: 190
+register_view_firstname = "ఫస్ట్ పేరు:"
 ;
-; WikiElement.php line: 346
-wiki_element_page = "పేజ్: %s"
+; RegisterView.php line: 205
+register_view_lastname = " లాస్ట్ పేరు:"
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = "సెట్టింగ్స్"
+; RegisterView.php line: 219
+register_view_username = "యూజర్ పేరు:"
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = "పేజ్ టైపు:"
+; RegisterView.php line: 232
+register_view_email = "ఇ మెయిల్:"
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = "పాస్&zwnj;వర్డ్:"
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = "పాస్ వర్డ్ మరలా టైపు చెయ్యండి:"
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = "టైటిల్:"
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = "రచయిత:"
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = "మెటా రోబోట్స్:"
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = "మెటా వివరణ:"
+; RegisterView.php line: 329
+register_view_i_agree = "ఖాతా సృష్టించు ని క్లిక్ చేయడం ద్వారా నేను అంగీకరిస్తున్నాను"
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = "హెడర్ పేజ్ నేమ్:"
+; RegisterView.php line: 331
+register_view_terms = "Yioop నిబంధనలు"
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = "ఫుటరు పేజ్ నేమ్:"
+; RegisterView.php line: 333
+register_view_and = "అండ్"
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = "ప్రైవసీ పాలసీ"
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = "ఎడిట్ కారణం:"
+; RegisterView.php line: 336
+register_view_period = "."
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = "సేవ్ చేయి"
+; RegisterView.php line: 346
+register_view_create_account = "ఖాతా సృష్టించు"
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = "మీడియా లిస్టు పేజ్"
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = "యూప్ ! పిహెచ్పి సెర్చ్ ఇంజిన్"
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = "పేజ్ రిసోర్సెస్"
+; SearchView.php line: 119
+search_view_input_label = "వెబ్ వెతకడానికి ఎమైనా టైప్ చేయండి"
 ;
-; WikiElement.php line: 493
-wiki_view_upload = "అప్లోడ్"
+; SearchView.php line: 123
+search_view_input_placeholder = "వెబ్ వెతకడానికి ఎమైనా టైప్ చేయండి"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "అన్వేషించు"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = "పేరు మార్పు విఫలమైనది!"
+; SearchView.php line: 155
+search_view_no_index_set = "డిఫాల్ట్ సూచిక సెట్ చేసి లేదు"
 ;
-; WikiElement.php line: 578
-wiki_element_rename = "పేరుమార్చండి"
+; SearchView.php line: 164
+search_view_more_statistics = "మరిన్ని గణాంకాలు"
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = "పేజీకి జోడించండి"
+; SearchView.php line: 201
+search_view_calculated = "%s సెకన్లు"
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "చూపించేది %s - %s of %s"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = "%s గ్రూప్ వికీ పేజీ జాబితా"
+; SearchView.php line: 229
+search_view_thesaurus_results = "థెసారస్ ఫలితాలు"
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = "గ్రూప్ పేజి పేర్లను శోధించు"
+; SearchView.php line: 339
+search_view_word_cloud = "వర్డ్స్:"
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = "కేష్ చేయబడినవి"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = "పేజీ సృష్టించు: %s"
+; SearchView.php line: 382
+search_view_as_text = "టెక్ష్ట్ లాగ చూపించు"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = "ఒకే రకం"
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = "ఇన్ లింక్స్"
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "రేంక్:%s"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = "సంబంధిత:%s"
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = "సామీప్యత:%s"
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = "థెసారస్: %s"
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = "స్కోర్:%s"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "సెట్టింగులు"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "ఫలితాలు/పేజీ:"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = "టాబ్స్ లో తెరువు:"
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = "శోధన సూచిక:"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "భాష:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "సెట్టింగులను సేవ్ చేయి"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = "సైన్ ఇన్"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = "లాగిన్ ఫెయిల్ అయ్యింది!"
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "యూజర్ పేరు"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "పాస్ వర్డ్ "
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "లాగ్ ఇన్"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = "పాస్&zwnj;వర్డ్ మర్చిపోయారా?"
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = "చెల్లని ఫైల్ టైపు!"
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = "ఫైల్ పరిమాణం చాలా పెద్దది!"
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = "PHP సెర్చ్ ఇంజిన్ - Yioop!"
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = "స్టాటిస్టిక్స్"
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = "చూసిన ఎర్రర్ కోడ్స్"
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = "డౌన్లోడ్ ఫైల్ సైజులు"
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = "సగటు లింకులు/ పేజీ"
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = "పేజ్ మోడి ఫయ్డ్ తేదీలు "
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = "డిఎన్ఎస్ లుక్అప్ టైం"
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = "పేజీ డౌన్లోడ్ సమయం"
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = "ఫైలు ఎక్స్టెన్షన్"
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = "మీడియా టైపు "
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "మునుపటి"
+; StatisticsView.php line: 103
+statistics_view_language = "వెబ్ పేజి భాష"
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "తర్వాత"
+; StatisticsView.php line: 104
+statistics_view_server = "వెబ్ సర్వర్"
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = "ఆపరేటింగ్ సిస్టం (గుర్తించబడితే)"
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = "సాధారణ సూచిక సమాచారం"
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = "సూచిక వివరణ"
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = "టైం స్టాంప్ "
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = "క్రాల్ ప్రారంబించిన సమయము "
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = "డౌన్లోడ్ పేజీలు"
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = "చూసిన యుఆరెల్స్"
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = "హోస్ట్ పేర్లు చూడబడినవి"
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = "యుఆరెల్ ని సూచించండి"
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = "యుఆరెల్:"
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = "హ్యూమన్ చెక్:"
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = "సబ్మిట్"
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = "Yioop"
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = "ఫీడ్  "
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = "ఒక నిమిషం లో ఆటో లాగ్అవుట్ అవుతుంది!!"
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = "వర్డ్ ఫ్యాక్టరీ సెట్టింగులు సేవ్ చేయబడినవి! "
diff --git a/locale/te/statistics.txt b/locale/te/statistics.txt
index 740ef16..2a8ca5e 100755
--- a/locale/te/statistics.txt
+++ b/locale/te/statistics.txt
@@ -1 +1 @@
-d:61;
\ No newline at end of file
+d:58;
\ No newline at end of file
diff --git a/locale/th/configure.ini b/locale/th/configure.ini
index 1194d41..9d8ebe8 100755
--- a/locale/th/configure.ini
+++ b/locale/th/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = ""
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = ""
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = ""
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = ""
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = ""
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = ""
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = ""
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = ""
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = ""
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = ""
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = ""
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = ""
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = ""
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = ""
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = ""
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = ""
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = ""
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = ""
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = ""
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = ""
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = ""
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = ""
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = ""
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = ""
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = ""
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = ""
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = ""
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = ""
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = ""
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = ""
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = ""
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = ""
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = ""
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = ""
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = ""
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = ""
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = ""
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = ""
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = ""
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = ""
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = ""
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = ""
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = ""
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = ""
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = ""
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = ""
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = ""
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = ""
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/tr/configure.ini b/locale/tr/configure.ini
index a631204..99edd47 100755
--- a/locale/tr/configure.ini
+++ b/locale/tr/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = ""
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = ""
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = ""
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = ""
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = ""
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = ""
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = ""
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = ""
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = ""
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = ""
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = ""
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "Ara"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = ""
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = ""
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = ""
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = ""
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = ""
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = ""
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = ""
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = ""
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = ""
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = ""
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = ""
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = ""
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = ""
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = ""
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = ""
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = ""
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = ""
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = ""
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = ""
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = ""
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = ""
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = ""
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = ""
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = ""
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = ""
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = ""
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = ""
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = ""
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = ""
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = ""
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = ""
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = ""
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = ""
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = ""
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = ""
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = ""
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = ""
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = ""
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = ""
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = ""
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = ""
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = ""
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = ""
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = ""
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = ""
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = ""
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = ""
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = ""
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = ""
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "Ara"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = ""
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = ""
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = ""
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = ""
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = ""
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = ""
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = ""
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = ""
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = ""
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = ""
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = ""
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = ""
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = ""
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = ""
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = ""
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = ""
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/vi_VN/configure.ini b/locale/vi_VN/configure.ini
index d88c770..40fec39 100755
--- a/locale/vi_VN/configure.ini
+++ b/locale/vi_VN/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = "Tho&aacute;t th&agrave;nh c&ocirc;ng"
-;
-; SearchController.php line: 549
-search_controller_mix_info = "Bằng c&aacute;ch sử dụng kết hợp thu thập dữ liệu %s"
-;
-; SearchController.php line: 555
-search_controller_crawl_info = "Sử dụng chỉ số %s"
-;
-; SearchController.php line: 591
-search_controller_search = "T&igrave;m Kiếm"
-;
-; SearchController.php line: 695
-search_controller_no_index_set = "Kh&ocirc;ng c&oacute; chỉ mục t&igrave;m kiếm thiết lập để sử dụng"
-;
-; SearchController.php line: 698
-search_controller_no_index_set = "Kh&ocirc;ng c&oacute; chỉ mục t&igrave;m kiếm thiết lập để sử dụng"
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = "Trang gốc n&agrave;y: %s đ&atilde; t&igrave;m được bởi c&ocirc;ng cụ t&igrave;m kiẽm Yioop v&agrave;o ng&agrave;y %s."
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = "Thu thập th&ocirc;ng tin hỗn hợp"
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "Những c&agrave;i đặt đ&atilde; được lưu lại"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = "Kiểm tra được th&ocirc;ng qua"
 ; SystemComponent.php line: 1220
 system_component_using_local_config = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = "Tho&aacute;t th&agrave;nh c&ocirc;ng"
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = "Quản trị"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = "Tự động tho&aacute;t trong một ph&uacute;t"
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = "Tho&aacute;t th&agrave;nh c&ocirc;ng"
+;
+; SearchController.php line: 549
+search_controller_mix_info = "Bằng c&aacute;ch sử dụng kết hợp thu thập dữ liệu %s"
+;
+; SearchController.php line: 555
+search_controller_crawl_info = "Sử dụng chỉ số %s"
+;
+; SearchController.php line: 591
+search_controller_search = "T&igrave;m Kiếm"
+;
+; SearchController.php line: 695
+search_controller_no_index_set = "Kh&ocirc;ng c&oacute; chỉ mục t&igrave;m kiếm thiết lập để sử dụng"
+;
+; SearchController.php line: 698
+search_controller_no_index_set = "Kh&ocirc;ng c&oacute; chỉ mục t&igrave;m kiếm thiết lập để sử dụng"
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = "Trang gốc n&agrave;y: %s đ&atilde; t&igrave;m được bởi c&ocirc;ng cụ t&igrave;m kiẽm Yioop v&agrave;o ng&agrave;y %s."
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = "Thu thập th&ocirc;ng tin hỗn hợp"
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "Những c&agrave;i đặt đ&atilde; được lưu lại"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = "Tho&aacute;t th&agrave;nh c&ocirc;ng"
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "Quản trị"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = "Tự động tho&aacute;t trong một ph&uacute;t"
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = "Hiện tại đang tiến h&agrave;nh"
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = "Xo&aacute;"
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = "Những hoạt động"
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = "Tự động tho&aacute;t trong một ph&uacute;t"
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = "T&igrave;m kiếm sự hướng dẫn cơ cấu động cơ"
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = "Tải hoặc tạo "
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = "Những c&agrave;i đặt tiểu sử "
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = "Ng&ocirc;n ngữ thiếu s&oacute;t:"
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = "Th&ocirc;ng tin về lỗi"
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = "Kh&ocirc;ng t&igrave;m thấy trang gốc m&agrave; bạn muốn t&igrave;m kiếm."
+; ConfigureElement.php line: 120
+configure_element_query_info = "Th&ocirc;ng tin thắc mắc"
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = "Th&ocirc;ng tin về kiểm tra"
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = "M&ocirc; tả r&ocirc;-bốt"
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = "Trở lại"
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = "Lưu những lựa chọn"
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = "Trở lại"
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = ""
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = "Đ&aacute;nh v&agrave;o những cụm từ m&agrave; bạn muốn t&igrave;m trang web"
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "Đ&aacute;nh v&agrave;o c&aacute;i m&agrave; bạn muốn t&igrave;m"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "T&igrave;m Kiếm"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = "%s gi&acirc;y."
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = "Cho kết quả tứ %s - %s của %s"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = "Trang&nbsp;gốc"
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = "Trang&nbsp;Web&nbsp;Bắng Chữ"
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = "Tương&nbsp;Tự"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = "Thứ Tự: %s"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = "Th&iacute;ch hợp: %s"
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = "Gần: %s"
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = "Điểm: %s"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "Sự sắp đặt"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "Kết quả trong mỗi trang"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = "T&igrave;m mục lục:"
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "Ng&ocirc;n ngữ:"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = "Giữ sự sắp đặt"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = "Đăng nhập"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = "T&ecirc;n đăng nhập "
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "Mật khẩu"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = "Đăng nhập"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = "T&ecirc;n sử dụng:"
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "Mật khẩu mới:"
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "Đ&aacute;nh lại mật khẩu:"
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = "Lưu"
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = "Tự động tho&aacute;t trong một ph&uacute;t"
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = "Những hoạt động"
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = "T&igrave;m kiếm sự hướng dẫn cơ cấu động cơ"
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = "Tải hoặc tạo "
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = "Những c&agrave;i đặt tiểu sử "
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = "Ng&ocirc;n ngữ thiếu s&oacute;t:"
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = "Th&ocirc;ng tin về lỗi"
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = "Th&ocirc;ng tin thắc mắc"
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = "Th&ocirc;ng tin về kiểm tra"
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = "M&ocirc; tả r&ocirc;-bốt"
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = "Trở lại"
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = "Lưu những lựa chọn"
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = "Trở lại"
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = "C&aacute;ch thức viết"
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = "Phần trăm đ&atilde; được phi&ecirc;n dịch"
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "T&ecirc;n sử dụng:"
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = "C&aacute;ch thức viết:"
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "Mật khẩu mới:"
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "Đ&aacute;nh lại mật khẩu:"
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = ""
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = "Lưu"
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = "C&aacute;ch thức viết"
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = "T&ecirc;n chức vụ:"
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "Th&ecirc;m chức vụ"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = "T&ecirc;n chức vụ:"
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = "T&ecirc;n chức vụ:"
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = "T&ecirc;n sử dụng:"
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = "T&ecirc;n sử dụng:"
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "Mật khẩu:"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "Đ&aacute;nh lại mật khẩu:"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = "T&ecirc;n sử dụng:"
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "Những c&agrave;i đặt"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "Đăng nhập"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = ""
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = "C&aacute;ch thức viết"
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = "Phần trăm đ&atilde; được phi&ecirc;n dịch"
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = "C&aacute;ch thức viết:"
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = ""
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = "C&aacute;ch thức viết"
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = "T&ecirc;n chức vụ:"
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "Th&ecirc;m chức vụ"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = "T&ecirc;n chức vụ:"
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = "T&ecirc;n chức vụ:"
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "T&ecirc;n sử dụng:"
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = "C&agrave;i đặt cơ sở dữ liệu "
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = "Hệ thống cơ sở dữ liệu:"
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "T&ecirc;n sử dụng:"
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = "T&ecirc;n cơ cở dữ liệu:"
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = "Người sử dụng cơ sở dữ liệu:"
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = "Mật khẩu cơ sở dữ liệu:"
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "Mật khẩu:"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "Đ&aacute;nh lại mật khẩu:"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "T&ecirc;n sử dụng:"
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = "Những c&agrave;i đặt"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "Đăng nhập"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = "Tho&aacute;t"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "Những c&agrave;i đặt"
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "Đăng nhập"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = ""
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = "Tự động tho&aacute;t trong một ph&uacute;t"
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = ""
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = ""
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = "Trang trước"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = "Trang kế tiếp"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = ""
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = "Gi&uacute;p t&igrave;m ca&iacute; m&agrave; bạn muốn t&igrave;m kiếm"
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = "Thời gian: %s gi&acirc;y"
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = "Kh&ocirc;ng t&igrave;m thấy trang gốc m&agrave; bạn muốn t&igrave;m kiếm."
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = "C&agrave;i đặt cơ sở dữ liệu "
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = "Hệ thống cơ sở dữ liệu:"
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = "T&ecirc;n cơ cở dữ liệu:"
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = "Người sử dụng cơ sở dữ liệu:"
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = "Mật khẩu cơ sở dữ liệu:"
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "Những c&agrave;i đặt"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "Đăng nhập"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "Tho&aacute;t"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = ""
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = "Đ&aacute;nh v&agrave;o những cụm từ m&agrave; bạn muốn t&igrave;m trang web"
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = "Đ&aacute;nh v&agrave;o c&aacute;i m&agrave; bạn muốn t&igrave;m"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "T&igrave;m Kiếm"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = "%s gi&acirc;y."
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "Cho kết quả tứ %s - %s của %s"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = "Trang&nbsp;gốc"
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = "Trang&nbsp;Web&nbsp;Bắng Chữ"
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = "Tương&nbsp;Tự"
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "Thứ Tự: %s"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = "Th&iacute;ch hợp: %s"
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = "Gần: %s"
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = "Điểm: %s"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "Sự sắp đặt"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "Kết quả trong mỗi trang"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = "T&igrave;m mục lục:"
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "Ng&ocirc;n ngữ:"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "Giữ sự sắp đặt"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = ""
+; SigninView.php line: 68
+signin_view_signin = "Đăng nhập"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = ""
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "T&ecirc;n đăng nhập "
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "Mật khẩu"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "Đăng nhập"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "Trang trước"
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "Trang kế tiếp"
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = ""
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = "Gi&uacute;p t&igrave;m ca&iacute; m&agrave; bạn muốn t&igrave;m kiếm"
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = "Thời gian: %s gi&acirc;y"
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = "Tự động tho&aacute;t trong một ph&uacute;t"
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/locale/zh_CN/configure.ini b/locale/zh_CN/configure.ini
index afc0714..3e02614 100755
--- a/locale/zh_CN/configure.ini
+++ b/locale/zh_CN/configure.ini
@@ -26,7 +26,7 @@
 ;
 [strings]
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers
 ;
 ; AdminController.php line: 114
 admin_controller_need_cookies = ""
@@ -94,232 +94,7 @@ admin_controller_sort_ascending = ""
 ; AdminController.php line: 558
 admin_controller_sort_descending = ""
 ;
-; MachineController.php line: 193
-machine_controller_nolines = ""
-;
-; RegisterController.php line: 249
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 315
-register_controller_account_created = ""
-;
-; RegisterController.php line: 333
-register_controller_registration_email_sent = ""
-;
-; RegisterController.php line: 335
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 336
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 338
-register_controller_email_body = ""
-;
-; RegisterController.php line: 372
-register_controller_account_request_made = ""
-;
-; RegisterController.php line: 376
-register_controller_admin_activation_request = ""
-;
-; RegisterController.php line: 377
-register_controller_admin_activation_message = ""
-;
-; RegisterController.php line: 419
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 425
-register_controller_already_activated = ""
-;
-; RegisterController.php line: 432
-register_controller_account_activated = ""
-;
-; RegisterController.php line: 435
-register_controller_email_verification_error = ""
-;
-; RegisterController.php line: 483
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 492
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 496
-register_controller_account_recover_email = ""
-;
-; RegisterController.php line: 500
-register_controller_recover_request = ""
-;
-; RegisterController.php line: 501
-register_controller_admin_email_salutation = ""
-;
-; RegisterController.php line: 503
-register_controller_recover_body = ""
-;
-; RegisterController.php line: 537
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 549
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 562
-register_controller_account_recover_fail = ""
-;
-; RegisterController.php line: 569
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 573
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 579
-register_controller_password_changed = ""
-;
-; RegisterController.php line: 587
-register_controller_passwords_dont_match = ""
-;
-; RegisterController.php line: 601
-register_controller_recovered_already = ""
-;
-; RegisterController.php line: 605
-register_controller_recovery_expired = ""
-;
-; RegisterController.php line: 732
-register_controller_invalid_url = ""
-;
-; RegisterController.php line: 736
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 749
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 759
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 786
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 800
-register_controller_suggest_full = ""
-;
-; RegisterController.php line: 804
-register_controller_url_submitted = ""
-;
-; RegisterController.php line: 1006
-register_controller_need_cookies = ""
-;
-; RegisterController.php line: 1012
-register_controller_failed_human = ""
-;
-; RegisterController.php line: 1027
-register_controller_failed_graphical_human = ""
-;
-; RegisterController.php line: 1038
-register_controller_failed_hashcode = ""
-;
-; RegisterController.php line: 1066
-register_controller_error_fields = ""
-;
-; RegisterController.php line: 1069
-register_controller_check_email = ""
-;
-; RegisterController.php line: 1076
-register_controller_user_already_exists = ""
-;
-; SearchController.php line: 280
-search_controller_web = ""
-;
-; SearchController.php line: 341
-search_controller_logout_successful = ""
-;
-; SearchController.php line: 549
-search_controller_mix_info = ""
-;
-; SearchController.php line: 555
-search_controller_crawl_info = ""
-;
-; SearchController.php line: 591
-search_controller_search = ""
-;
-; SearchController.php line: 695
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 698
-search_controller_no_index_set = ""
-;
-; SearchController.php line: 800
-search_controller_get_keyword_ads = ""
-;
-; SearchController.php line: 803
-search_controller_ad_keyword_description = ""
-;
-; SearchController.php line: 1382
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1391
-search_controller_no_archive_page = ""
-;
-; SearchController.php line: 1441
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1446
-search_controller_original_page = ""
-;
-; SearchController.php line: 1463
-search_controller_extracted_title = ""
-;
-; SearchController.php line: 1465
-search_controller_extracted_description = ""
-;
-; SearchController.php line: 1467
-search_controller_extracted_links = ""
-;
-; SearchController.php line: 1472
-search_controller_extracted_allow_paths = ""
-;
-; SearchController.php line: 1478
-search_controller_extracted_disallow_paths = ""
-;
-; SearchController.php line: 1484
-search_controller_crawl_delay = ""
-;
-; SearchController.php line: 1548
-search_controller_cache_comment = ""
-;
-; SearchController.php line: 1559
-search_controller_site_cache = ""
-;
-; SearchController.php line: 1594
-search_controller_cached_version = ""
-;
-; SearchController.php line: 1689
-search_controller_download_fetcher = ""
-;
-; SearchController.php line: 1707
-search_controller_header_summaries = ""
-;
-; SearchController.php line: 1821
-search_controller_history = ""
-;
-; SearchController.php line: 1991
-search_controller_all_cached = ""
-;
-; SearchController.php line: 2022
-search_controller_year = ""
-;
-; SearchController.php line: 2023
-search_controller_month = ""
-;
-; SettingsController.php line: 115
-settings_controller_crawl_mix = ""
-;
-; SettingsController.php line: 130
-settings_controller_settings_saved = "設定已儲存"
-;
-; StaticController.php line: 68
-static_controller_logout_successful = ""
-;
-; StaticController.php line: 146
-static_controller_complete_title = ""
-;
-; /Library/WebServer/search_engine/seek_quarry/src/controllers/components
+; /Applications/MAMP/htdocs/git/seekquarry/src/controllers/components
 ;
 ; AccountaccessComponent.php line: 155
 accountaccess_component_no_posts_yet = ""
@@ -522,22 +297,22 @@ advertisement_component_duration_cannot_be_empty = ""
 ; AdvertisementComponent.php line: 110
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 157
+; AdvertisementComponent.php line: 160
 advertisement_component_enter_keywords = ""
 ;
-; AdvertisementComponent.php line: 163
+; AdvertisementComponent.php line: 166
 advertisement_component_bid_too_low = ""
 ;
-; AdvertisementComponent.php line: 171
+; AdvertisementComponent.php line: 174
 advertisement_component_processing_error = ""
 ;
-; AdvertisementComponent.php line: 178
+; AdvertisementComponent.php line: 181
 advertisement_component_ad_created = ""
 ;
-; AdvertisementComponent.php line: 206
+; AdvertisementComponent.php line: 209
 advertisement_component_status_changed = ""
 ;
-; AdvertisementComponent.php line: 252
+; AdvertisementComponent.php line: 255
 advertisement_component_ad_updated = ""
 ;
 ; CrawlComponent.php line: 92
@@ -1590,36 +1365,291 @@ system_component_check_passed = "通過檢查"
 ; SystemComponent.php line: 1220
 system_component_using_local_config = "使用當地語言"
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/controllers
+; MachineController.php line: 193
+machine_controller_nolines = ""
 ;
-; MainController.php line: 74
-search_controller_logout_successful = ""
+; RegisterController.php line: 249
+register_controller_need_cookies = ""
 ;
-; MainController.php line: 98
-main_controller_download = ""
+; RegisterController.php line: 315
+register_controller_account_created = ""
 ;
-; MainController.php line: 115
-main_controller_missing_fields = ""
+; RegisterController.php line: 333
+register_controller_registration_email_sent = ""
 ;
-; MainController.php line: 150
-main_controller_yioop_download = ""
+; RegisterController.php line: 335
+register_controller_admin_activation_request = ""
 ;
-; MainController.php line: 151
-main_controller_click_download = ""
+; RegisterController.php line: 336
+register_controller_admin_email_salutation = ""
 ;
-; MainController.php line: 164
-main_controller_url_error = ""
+; RegisterController.php line: 338
+register_controller_email_body = ""
 ;
-; MainController.php line: 173
-main_controller_expired_url = ""
+; RegisterController.php line: 372
+register_controller_account_request_made = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views
+; RegisterController.php line: 376
+register_controller_admin_activation_request = ""
 ;
-; AdminView.php line: 71
-admin_view_admin = "管理者"
+; RegisterController.php line: 377
+register_controller_admin_activation_message = ""
 ;
-; AdminView.php line: 92
-adminview_auto_logout_one_minute = ""
+; RegisterController.php line: 419
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 425
+register_controller_already_activated = ""
+;
+; RegisterController.php line: 432
+register_controller_account_activated = ""
+;
+; RegisterController.php line: 435
+register_controller_email_verification_error = ""
+;
+; RegisterController.php line: 483
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 492
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 496
+register_controller_account_recover_email = ""
+;
+; RegisterController.php line: 500
+register_controller_recover_request = ""
+;
+; RegisterController.php line: 501
+register_controller_admin_email_salutation = ""
+;
+; RegisterController.php line: 503
+register_controller_recover_body = ""
+;
+; RegisterController.php line: 537
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 549
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 562
+register_controller_account_recover_fail = ""
+;
+; RegisterController.php line: 569
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 573
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 579
+register_controller_password_changed = ""
+;
+; RegisterController.php line: 587
+register_controller_passwords_dont_match = ""
+;
+; RegisterController.php line: 601
+register_controller_recovered_already = ""
+;
+; RegisterController.php line: 605
+register_controller_recovery_expired = ""
+;
+; RegisterController.php line: 732
+register_controller_invalid_url = ""
+;
+; RegisterController.php line: 736
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 749
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 759
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 786
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 800
+register_controller_suggest_full = ""
+;
+; RegisterController.php line: 804
+register_controller_url_submitted = ""
+;
+; RegisterController.php line: 1006
+register_controller_need_cookies = ""
+;
+; RegisterController.php line: 1012
+register_controller_failed_human = ""
+;
+; RegisterController.php line: 1027
+register_controller_failed_graphical_human = ""
+;
+; RegisterController.php line: 1038
+register_controller_failed_hashcode = ""
+;
+; RegisterController.php line: 1066
+register_controller_error_fields = ""
+;
+; RegisterController.php line: 1069
+register_controller_check_email = ""
+;
+; RegisterController.php line: 1076
+register_controller_user_already_exists = ""
+;
+; SearchController.php line: 280
+search_controller_web = ""
+;
+; SearchController.php line: 341
+search_controller_logout_successful = ""
+;
+; SearchController.php line: 549
+search_controller_mix_info = ""
+;
+; SearchController.php line: 555
+search_controller_crawl_info = ""
+;
+; SearchController.php line: 591
+search_controller_search = ""
+;
+; SearchController.php line: 695
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 698
+search_controller_no_index_set = ""
+;
+; SearchController.php line: 800
+search_controller_get_keyword_ads = ""
+;
+; SearchController.php line: 803
+search_controller_ad_keyword_description = ""
+;
+; SearchController.php line: 1382
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1391
+search_controller_no_archive_page = ""
+;
+; SearchController.php line: 1441
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1446
+search_controller_original_page = ""
+;
+; SearchController.php line: 1463
+search_controller_extracted_title = ""
+;
+; SearchController.php line: 1465
+search_controller_extracted_description = ""
+;
+; SearchController.php line: 1467
+search_controller_extracted_links = ""
+;
+; SearchController.php line: 1472
+search_controller_extracted_allow_paths = ""
+;
+; SearchController.php line: 1478
+search_controller_extracted_disallow_paths = ""
+;
+; SearchController.php line: 1484
+search_controller_crawl_delay = ""
+;
+; SearchController.php line: 1548
+search_controller_cache_comment = ""
+;
+; SearchController.php line: 1559
+search_controller_site_cache = ""
+;
+; SearchController.php line: 1594
+search_controller_cached_version = ""
+;
+; SearchController.php line: 1689
+search_controller_download_fetcher = ""
+;
+; SearchController.php line: 1707
+search_controller_header_summaries = ""
+;
+; SearchController.php line: 1821
+search_controller_history = ""
+;
+; SearchController.php line: 1991
+search_controller_all_cached = ""
+;
+; SearchController.php line: 2022
+search_controller_year = ""
+;
+; SearchController.php line: 2023
+search_controller_month = ""
+;
+; SettingsController.php line: 115
+settings_controller_crawl_mix = ""
+;
+; SettingsController.php line: 130
+settings_controller_settings_saved = "設定已儲存"
+;
+; StaticController.php line: 68
+static_controller_logout_successful = ""
+;
+; StaticController.php line: 146
+static_controller_complete_title = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/controllers
+;
+; MainController.php line: 78
+search_controller_logout_successful = ""
+;
+; MainController.php line: 102
+main_controller_store = ""
+;
+; MainController.php line: 105
+advertisement_component_month = ""
+;
+; MainController.php line: 112
+advertisement_component_year = ""
+;
+; MainController.php line: 125
+main_controller_missing_field = ""
+;
+; MainController.php line: 154
+main_controller_missing_fields = ""
+;
+; MainController.php line: 165
+main_controller_already_purchased = ""
+;
+; MainController.php line: 172
+main_controller_processing_error = ""
+;
+; MainController.php line: 179
+main_controller_purchase_email_title = ""
+;
+; MainController.php line: 180
+main_controller_purchase_email_body = ""
+;
+; MainController.php line: 184
+main_controller_purchase_completed = ""
+;
+; MainController.php line: 200
+main_controller_download = ""
+;
+; MainController.php line: 217
+main_controller_missing_fields = ""
+;
+; MainController.php line: 252
+main_controller_yioop_download = ""
+;
+; MainController.php line: 253
+main_controller_click_download = ""
+;
+; MainController.php line: 266
+main_controller_url_error = ""
+;
+; MainController.php line: 275
+main_controller_expired_url = ""
+;
+; /Applications/MAMP/htdocs/git/seekquarry/src/views
+;
+; AdminView.php line: 71
+admin_view_admin = "管理者"
+;
+; AdminView.php line: 92
+adminview_auto_logout_one_minute = ""
 ;
 ; CrawlstatusView.php line: 57
 crawlstatus_view_currently_processing = ""
@@ -1750,2742 +1780,2781 @@ crawlstatus_view_delete = ""
 ; CrawlstatusView.php line: 269
 crawlstatus_view_no_previous_crawl = ""
 ;
-; GroupView.php line: 82
-groupfeed_element_wiki_thread = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/elements
 ;
-; GroupView.php line: 96
-group_view_feed = ""
+; ActivityElement.php line: 56
+activity_element_activities = ""
 ;
-; GroupView.php line: 104
-group_view_wiki = ""
+; AppearanceElement.php line: 71
+appearance_element_use_wiki_landing = ""
 ;
-; GroupView.php line: 106
-group_view_user = ""
+; AppearanceElement.php line: 77
+appearance_element_background_color = ""
 ;
-; GroupView.php line: 109
-group_view_myfeeds = ""
+; AppearanceElement.php line: 84
+appearance_element_background_image = ""
 ;
-; GroupView.php line: 145
-adminview_auto_logout_one_minute = ""
+; AppearanceElement.php line: 91
+appearance_element_background_image = ""
 ;
-; MachinestatusView.php line: 56
-machinestatus_view_no_monitored = ""
+; AppearanceElement.php line: 99
+appearance_element_foreground_color = ""
 ;
-; MachinestatusView.php line: 60
-machinestatus_media_updatemode = ""
+; AppearanceElement.php line: 104
+appearance_element_topbar_color = ""
 ;
-; MachinestatusView.php line: 73
-machinestatus_name_server = ""
+; AppearanceElement.php line: 109
+appearance_element_sidebar_color = ""
 ;
-; MachinestatusView.php line: 75
-machinestatus_distributed = ""
+; AppearanceElement.php line: 115
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 78
-machinestatus_name_server = ""
+; AppearanceElement.php line: 122
+appearance_element_site_logo = ""
 ;
-; MachinestatusView.php line: 80
-machinestatus_distributed = ""
+; AppearanceElement.php line: 132
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 85
-machinestatus_name_server = ""
+; AppearanceElement.php line: 139
+appearance_element_mobile_logo = ""
 ;
-; MachinestatusView.php line: 94
-machinestatus_view_media_updater = ""
+; AppearanceElement.php line: 148
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 96
-machinestatus_view_log = ""
+; AppearanceElement.php line: 155
+appearance_element_favicon = ""
 ;
-; MachinestatusView.php line: 125
-confirm_delete_operation = ""
+; AppearanceElement.php line: 163
+appearance_element_toolbar = ""
 ;
-; MachinestatusView.php line: 126
-machinestatus_view_delete = ""
+; AppearanceElement.php line: 174
+appearance_element_site_timezone = ""
 ;
-; MachinestatusView.php line: 148
-machinestatus_view_not_configured = ""
+; AppearanceElement.php line: 179
+appearance_element_cookie_name = ""
 ;
-; MachinestatusView.php line: 158
-machinestatus_view_mirrors = ""
+; AppearanceElement.php line: 184
+appearance_element_token_name = ""
 ;
-; MachinestatusView.php line: 161
-machinestatus_view_log = ""
+; AppearanceElement.php line: 189
+appearance_element_auxiliary_css = ""
 ;
-; MachinestatusView.php line: 176
-machinestatus_view_queue_server = ""
+; AppearanceElement.php line: 194
+appearance_element_reset_customizations = ""
 ;
-; MachinestatusView.php line: 179
-machinestatus_view_log = ""
+; AppearanceElement.php line: 199
+appearance_element_save = ""
 ;
-; MachinestatusView.php line: 191
-machinestatus_view_queue_server = ""
+; ConfigureElement.php line: 72
+configure_element_work_directory = ""
 ;
-; MachinestatusView.php line: 193
-machinestatus_view_no_queue_server = ""
+; ConfigureElement.php line: 76
+configure_element_load_or_create = ""
 ;
-; MachinestatusView.php line: 204
-machinestatus_view_media_updater = ""
+; ConfigureElement.php line: 92
+configure_element_component_check = ""
 ;
-; MachinestatusView.php line: 207
-machinestatus_view_log = ""
+; ConfigureElement.php line: 96
+configure_element_profile_settings = ""
 ;
-; MachinestatusView.php line: 229
-machinestatus_view_no_fetchers = ""
+; ConfigureElement.php line: 101
+configure_element_default_language = ""
 ;
-; MachinestatusView.php line: 241
-machinestatus_view_fetchers = ""
+; ConfigureElement.php line: 108
+configure_element_debug_display = ""
 ;
-; MachinestatusView.php line: 248
-machinestatus_view_log = ""
+; ConfigureElement.php line: 114
+configure_element_error_info = ""
 ;
-; NocacheView.php line: 54
-nocache_view_no_cache = ""
+; ConfigureElement.php line: 120
+configure_element_query_info = ""
 ;
-; NocacheView.php line: 59
-nocache_view_summary_contents = ""
+; ConfigureElement.php line: 126
+configure_element_test_info = ""
 ;
-; RecoverView.php line: 71
-recover_view_recover_password = ""
+; ConfigureElement.php line: 131
+configure_element_site_access = ""
 ;
-; RecoverView.php line: 104
-register_view_new_password = ""
+; ConfigureElement.php line: 136
+configure_element_web_access = ""
 ;
-; RecoverView.php line: 116
-register_view_retypepassword = ""
+; ConfigureElement.php line: 141
+configure_element_rss_access = ""
 ;
-; RecoverView.php line: 131
-recover_view_username = ""
+; ConfigureElement.php line: 146
+configure_element_api_access = ""
 ;
-; RecoverView.php line: 146
-register_view_account_recovery = ""
+; ConfigureElement.php line: 150
+configure_element_crawl_robot = ""
 ;
-; RecoverView.php line: 153
-register_view_human_check = ""
+; ConfigureElement.php line: 152
+configure_element_robot_name = ""
 ;
-; RecoverView.php line: 185
-register_view_human_check = ""
+; ConfigureElement.php line: 160
+configure_element_robot_instance = ""
 ;
-; RecoverView.php line: 202
-recover_view_recover_password = ""
+; ConfigureElement.php line: 166
+configure_element_robot_description = ""
 ;
-; RecoverView.php line: 211
-recover_view_return = ""
+; ConfigureElement.php line: 175
+serversettings_element_save = ""
 ;
-; RegisterView.php line: 76
-register_view_question0_most = ""
+; CrawloptionsElement.php line: 59
+crawloptions_element_back_to_manage = ""
 ;
-; RegisterView.php line: 77
-register_view_question0_least = ""
+; CrawloptionsElement.php line: 62
+crawloptions_element_modify_active_crawl = ""
 ;
-; RegisterView.php line: 78
-register_view_question0_choices = ""
+; CrawloptionsElement.php line: 64
+crawloptions_element_edit_crawl_options = ""
 ;
-; RegisterView.php line: 79
-register_view_question1_most = ""
+; CrawloptionsElement.php line: 87
+crawloptions_element_web_crawl = ""
 ;
-; RegisterView.php line: 80
-register_view_question1_least = ""
+; CrawloptionsElement.php line: 97
+crawloptions_element_archive_crawl = ""
 ;
-; RegisterView.php line: 81
-register_view_question1_choices = ""
+; CrawloptionsElement.php line: 104
+crawloptions_element_load_options = ""
 ;
-; RegisterView.php line: 82
-register_view_question2_most = ""
+; CrawloptionsElement.php line: 109
+crawloptions_element_crawl_order = ""
 ;
-; RegisterView.php line: 83
-register_view_question2_least = ""
+; CrawloptionsElement.php line: 118
+crawloptions_element_restrict_by_url = ""
 ;
-; RegisterView.php line: 84
-register_view_question2_choices = ""
+; CrawloptionsElement.php line: 126
+crawloptions_element_allowed_to_crawl = ""
 ;
-; RegisterView.php line: 85
-register_view_question3_most = ""
+; CrawloptionsElement.php line: 132
+crawloptions_element_disallowed_and_quota_sites = ""
 ;
-; RegisterView.php line: 86
-register_view_question3_least = ""
+; CrawloptionsElement.php line: 141
+crawloptions_element_seed_sites = ""
 ;
-; RegisterView.php line: 87
-register_view_question3_choices = ""
+; CrawloptionsElement.php line: 145
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 88
-register_view_question4_most = ""
+; CrawloptionsElement.php line: 156
+crawloptions_element_inject_sites = ""
 ;
-; RegisterView.php line: 89
-register_view_question4_least = ""
+; CrawloptionsElement.php line: 160
+crawloptions_element_add_suggest_urls = ""
 ;
-; RegisterView.php line: 90
-register_view_question4_choices = ""
+; CrawloptionsElement.php line: 177
+crawloptions_element_reindex_crawl = ""
 ;
-; RegisterView.php line: 91
-register_view_question5_most = ""
+; CrawloptionsElement.php line: 185
+crawloptions_element_need_api_for_mix = ""
 ;
-; RegisterView.php line: 92
-register_view_question5_least = ""
+; CrawloptionsElement.php line: 193
+crawloptions_element_save_options = ""
 ;
-; RegisterView.php line: 93
-register_view_question5_choices = ""
+; EditclassifierElement.php line: 62
+editclassifier_back = ""
 ;
-; RegisterView.php line: 94
-register_view_question6_most = ""
+; EditclassifierElement.php line: 64
+editclassifier_edit_classifier = ""
 ;
-; RegisterView.php line: 95
-register_view_question6_least = ""
+; EditclassifierElement.php line: 76
+editclassifier_classifier_label = ""
 ;
-; RegisterView.php line: 96
-register_view_question6_choices = ""
+; EditclassifierElement.php line: 81
+editclassifier_change = ""
 ;
-; RegisterView.php line: 97
-register_view_question7_most = ""
+; EditclassifierElement.php line: 86
+editclassifier_statistics = ""
 ;
-; RegisterView.php line: 98
-register_view_question7_least = ""
+; EditclassifierElement.php line: 87
+editclassifier_positive_examples = ""
 ;
-; RegisterView.php line: 99
-register_view_question7_choices = ""
+; EditclassifierElement.php line: 90
+editclassifier_negative_examples = ""
 ;
-; RegisterView.php line: 100
-register_view_question8_most = ""
+; EditclassifierElement.php line: 93
+editclassifier_accuracy = ""
 ;
-; RegisterView.php line: 101
-register_view_question8_least = ""
+; EditclassifierElement.php line: 98
+crawl_component_na = ""
 ;
-; RegisterView.php line: 102
-register_view_question8_choices = ""
+; EditclassifierElement.php line: 103
+editclassifier_update = ""
 ;
-; RegisterView.php line: 103
-register_view_question9_most = ""
+; EditclassifierElement.php line: 104
+editclassifier_add_examples = ""
 ;
-; RegisterView.php line: 104
-register_view_question9_least = ""
+; EditclassifierElement.php line: 113
+editclassifier_source = ""
 ;
-; RegisterView.php line: 105
-register_view_question9_choices = ""
+; EditclassifierElement.php line: 117
+editclassifier_default_crawl = ""
 ;
-; RegisterView.php line: 108
-register_view_recovery1_more = ""
+; EditclassifierElement.php line: 127
+editclassifier_label_by_hand = ""
 ;
-; RegisterView.php line: 109
-register_view_recovery1_less = ""
+; EditclassifierElement.php line: 129
+editclassifier_all_in_class = ""
 ;
-; RegisterView.php line: 110
-register_view_recovery1_choices = ""
+; EditclassifierElement.php line: 131
+editclassifier_none_in_class = ""
 ;
-; RegisterView.php line: 111
-register_view_recovery2_more = ""
+; EditclassifierElement.php line: 136
+editclassifier_keywords = ""
 ;
-; RegisterView.php line: 112
-register_view_recovery2_less = ""
+; EditclassifierElement.php line: 145
+editclassifier_load = ""
 ;
-; RegisterView.php line: 113
-register_view_recovery2_choices = ""
+; EditclassifierElement.php line: 151
+editclassifier_finalize = ""
 ;
-; RegisterView.php line: 114
-register_view_recovery3_more = ""
+; EditclassifierElement.php line: 159
+editclassifier_no_documents = ""
 ;
-; RegisterView.php line: 115
-register_view_recovery3_less = ""
+; EditlocalesElement.php line: 62
+editlocales_element_back_to_manage = "回到管理頁面"
 ;
-; RegisterView.php line: 116
-register_view_recovery3_choices = ""
+; EditlocalesElement.php line: 64
+editlocales_element_edit_locale = ""
 ;
-; RegisterView.php line: 117
-register_view_recovery4_more = ""
+; EditlocalesElement.php line: 78
+editlocales_element_show = ""
 ;
-; RegisterView.php line: 118
-register_view_recovery4_less = ""
+; EditlocalesElement.php line: 82
+editlocales_element_filter = ""
 ;
-; RegisterView.php line: 119
-register_view_recovery4_choices = ""
+; EditlocalesElement.php line: 87
+editlocales_element_go = ""
 ;
-; RegisterView.php line: 120
-register_view_recovery5_more = ""
+; EditlocalesElement.php line: 91
+editlocales_element_no_matching = ""
 ;
-; RegisterView.php line: 121
-register_view_recovery5_less = ""
+; EditlocalesElement.php line: 127
+editlocales_element_save = ""
 ;
-; RegisterView.php line: 122
-register_view_recovery5_choices = ""
+; EditmixElement.php line: 57
+editmix_element_back_to_mix = ""
 ;
-; RegisterView.php line: 123
-register_view_recovery6_more = ""
+; EditmixElement.php line: 59
+mixcrawls_element_edit_mix = ""
 ;
-; RegisterView.php line: 124
-register_view_recovery6_less = ""
+; EditmixElement.php line: 70
+mixcrawls_element_mix_name = ""
 ;
-; RegisterView.php line: 125
-register_view_recovery6_choices = ""
+; EditmixElement.php line: 76
+mixcrawls_element_mix_components = ""
 ;
-; RegisterView.php line: 153
-register_view_create_account = ""
+; EditmixElement.php line: 82
+mixcrawls_element_too_many = ""
 ;
-; RegisterView.php line: 190
-register_view_firstname = ""
+; EditmixElement.php line: 83
+mixcrawls_element_add_fragment = ""
 ;
-; RegisterView.php line: 205
-register_view_lastname = ""
+; EditmixElement.php line: 88
+mixcrawls_element_save_button = ""
 ;
-; RegisterView.php line: 219
-register_view_username = ""
+; FooterElement.php line: 58
+footer_element_blog = ""
 ;
-; RegisterView.php line: 232
-register_view_email = ""
+; FooterElement.php line: 60
+footer_element_privacy = ""
 ;
-; RegisterView.php line: 246
-register_view_password = ""
+; FooterElement.php line: 62
+footer_element_terms = ""
 ;
-; RegisterView.php line: 261
-register_view_retypepassword = ""
+; FooterElement.php line: 64
+footer_element_tools = ""
 ;
-; RegisterView.php line: 277
-register_view_account_recovery = ""
+; FooterElement.php line: 66
+footer_element_bot = ""
 ;
-; RegisterView.php line: 281
-register_view_human_check = ""
+; FooterElement.php line: 71
+footer_element_developed_seek_quarry = ""
 ;
-; RegisterView.php line: 283
-register_view_account_recovery = ""
+; FooterElement.php line: 74
+footer_element_copyright_site = ""
 ;
-; RegisterView.php line: 315
-register_view_human_check = ""
+; FooterElement.php line: 76
+footer_element_this_search_engine = ""
 ;
-; RegisterView.php line: 329
-register_view_i_agree = ""
+; GroupfeedElement.php line: 86
+groupfeed_element_add_group = ""
 ;
-; RegisterView.php line: 331
-register_view_terms = ""
+; GroupfeedElement.php line: 90
+groupfeed_element_request_add = ""
 ;
-; RegisterView.php line: 333
-register_view_and = ""
+; GroupfeedElement.php line: 116
+groupfeed_element_wiki_page = ""
 ;
-; RegisterView.php line: 335
-register_view_privacy = ""
+; GroupfeedElement.php line: 118
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 336
-register_view_period = ""
+; GroupfeedElement.php line: 121
+groupfeed_element_back = ""
 ;
-; RegisterView.php line: 346
-register_view_create_account = ""
+; GroupfeedElement.php line: 131
+groupfeed_element_group_activity = ""
 ;
-; RegisterView.php line: 355
-register_view_return = ""
+; GroupfeedElement.php line: 135
+groupfeed_element_wiki_thread = ""
 ;
-; SearchView.php line: 92
-search_view_title = "PHP 搜索引擎 - Yioop!"
+; GroupfeedElement.php line: 155
+groupfeed_element_feed = ""
 ;
-; SearchView.php line: 119
-search_view_input_label = ""
+; GroupfeedElement.php line: 160
+group_view_wiki = ""
 ;
-; SearchView.php line: 123
-search_view_input_placeholder = "输入您正在寻找什么"
+; GroupfeedElement.php line: 162
+groupfeed_element_user = ""
 ;
-; SearchView.php line: 126
-search_view_search = "搜尋"
+; GroupfeedElement.php line: 206
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 155
-search_view_no_index_set = ""
+; GroupfeedElement.php line: 241
+manageaccount_element_group_wiki = ""
 ;
-; SearchView.php line: 164
-search_view_more_statistics = ""
+; GroupfeedElement.php line: 242
+manageaccount_element_group_stats = ""
 ;
-; SearchView.php line: 201
-search_view_calculated = "總計: %s 秒"
+; GroupfeedElement.php line: 247
+manageaccount_element_last_post = ""
 ;
-; SearchView.php line: 203
-search_view_results = "結果"
+; GroupfeedElement.php line: 291
+groupfeed_element_comment = ""
 ;
-; SearchView.php line: 229
-search_view_thesaurus_results = ""
+; GroupfeedElement.php line: 301
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 339
-search_view_word_cloud = ""
+; GroupfeedElement.php line: 314
+groupfeed_element_start_thread = ""
 ;
-; SearchView.php line: 380
-search_view_cache = ""
+; GroupfeedElement.php line: 320
+groupfeed_element_no_posts_yet = ""
 ;
-; SearchView.php line: 382
-search_view_as_text = ""
+; GroupfeedElement.php line: 325
+groupfeed_element_thread_no_exist = ""
 ;
-; SearchView.php line: 393
-search_view_similar = "相似"
+; GroupfeedElement.php line: 358
+groupfeed_element_edit = ""
 ;
-; SearchView.php line: 402
-search_view_inlink = ""
+; GroupfeedElement.php line: 363
+groupfeed_element_delete = ""
 ;
-; SearchView.php line: 419
-search_view_rank = "排名: %s 名"
+; GroupfeedElement.php line: 385
+groupfeed_element_num_posts = ""
 ;
-; SearchView.php line: 421
-search_view_relevancy = "關聯度:  %s 趴"
+; GroupfeedElement.php line: 395
+groupfeed_element_num_views = ""
 ;
-; SearchView.php line: 423
-search_view_proximity = ""
+; GroupfeedElement.php line: 420
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 427
-search_view_thesaurus_score = ""
+; GroupfeedElement.php line: 422
+groupfeed_element_start_thread_in_group = ""
 ;
-; SearchView.php line: 436
-search_view_score = "分數"
+; GroupfeedElement.php line: 438
+groupfeed_element_last_edited = ""
 ;
-; SettingsView.php line: 66
-settings_view_settings = "設定"
+; GroupfeedElement.php line: 454
+groupfeed_element_post_vote = ""
 ;
-; SettingsView.php line: 73
-settings_view_results_per_page = "每頁顯示項目數量"
+; GroupfeedElement.php line: 481
+groupfeed_element_last_post_info = ""
 ;
-; SettingsView.php line: 79
-settings_view_open_in_tabs = ""
+; GroupfeedElement.php line: 497
+groupfeed_element_comment = ""
 ;
-; SettingsView.php line: 86
-settings_view_search_index = ""
+; GroupfeedElement.php line: 551
+fileupload_helper_drag_textarea = ""
 ;
-; SettingsView.php line: 92
-settings_view_language_label = "語言"
+; GroupfeedElement.php line: 552
+fileupload_helper_click_textarea = ""
 ;
-; SettingsView.php line: 106
-settings_view_return = ""
+; GroupfeedElement.php line: 576
+groupfeed_element_add_comment = ""
 ;
-; SettingsView.php line: 109
-settings_view_save = "儲存"
+; GroupfeedElement.php line: 590
+groupfeed_element_save = ""
 ;
-; SettingsView.php line: 116
-settings_install_search_plugin = ""
+; GroupfeedElement.php line: 628
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 68
-signin_view_signin = "登入"
+; GroupfeedElement.php line: 635
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 81
-sigin_view_signing_in = ""
+; GroupfeedElement.php line: 648
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 84
-sigin_view_login_failed = ""
+; GroupfeedElement.php line: 683
+groupfeed_element_edit_post = ""
 ;
-; SigninView.php line: 92
-signin_view_username = "使用者名稱"
+; GroupfeedElement.php line: 686
+groupfeed_element_subject = ""
 ;
-; SigninView.php line: 99
-signin_view_password = "密碼"
+; GroupfeedElement.php line: 691
+groupfeed_element_post = ""
 ;
-; SigninView.php line: 109
-signin_view_login = "登入"
+; GroupfeedElement.php line: 704
+groupfeed_element_save = ""
 ;
-; SigninView.php line: 124
-signin_view_recover_password = ""
+; GroupfeedElement.php line: 732
+groupfeed_element_no_longer_update = ""
 ;
-; SigninView.php line: 129
-signin_view_create_account = ""
+; MachinelogElement.php line: 57
+machinelog_element_back_to_manage = ""
 ;
-; SigninView.php line: 133
-signin_view_return = ""
+; MachinelogElement.php line: 62
+machinelog_element_filter = ""
 ;
-; StaticView.php line: 68
-static_view_title = ""
+; MachinelogElement.php line: 69
+machinelog_element_log_file = ""
 ;
-; StatisticsView.php line: 75
-statistics_view_statistics = ""
+; MachinelogElement.php line: 74
+machinelog_element_refresh_off = ""
 ;
-; StatisticsView.php line: 80
-statistics_view_calculating = ""
+; MachinelogElement.php line: 78
+machinelog_element_refresh_on = ""
 ;
-; StatisticsView.php line: 94
-statistics_view_error_codes = ""
+; ManageaccountElement.php line: 64
+manageaccount_element_edit_or_no_text = ""
 ;
-; StatisticsView.php line: 95
-statistics_view_sizes = ""
+; ManageaccountElement.php line: 73
+manageaccount_element_welcome = ""
 ;
-; StatisticsView.php line: 96
-statistics_view_links_per_page = ""
+; ManageaccountElement.php line: 75
+manageaccount_element_what_can_do = ""
 ;
-; StatisticsView.php line: 97
-statistics_view_page_date = ""
+; ManageaccountElement.php line: 76
+manageaccount_element_account_details = ""
 ;
-; StatisticsView.php line: 98
-statistics_view_dns_time = ""
+; ManageaccountElement.php line: 107
+manageaccounts_element_icon = ""
 ;
-; StatisticsView.php line: 99
-statistics_view_download_time = ""
+; ManageaccountElement.php line: 117
+manageusers_element_username = "使用者名稱"
 ;
-; StatisticsView.php line: 100
-statistics_view_top_level_domain = ""
+; ManageaccountElement.php line: 124
+manageusers_element_firstname = ""
 ;
-; StatisticsView.php line: 101
-statistics_view_file_extension = ""
+; ManageaccountElement.php line: 130
+manageusers_element_lastname = ""
 ;
-; StatisticsView.php line: 102
-statistics_view_media_type = ""
+; ManageaccountElement.php line: 136
+manageusers_element_email = ""
 ;
-; StatisticsView.php line: 103
-statistics_view_language = ""
+; ManageaccountElement.php line: 146
+manageaccount_element_is_advertiser = ""
 ;
-; StatisticsView.php line: 104
-statistics_view_server = ""
+; ManageaccountElement.php line: 159
+manageaccount_element_password = ""
 ;
-; StatisticsView.php line: 105
-statistics_view_os = ""
+; ManageaccountElement.php line: 166
+manageaccount_element_new_password = "新的密碼"
 ;
-; StatisticsView.php line: 108
-statistics_view_general_info = ""
+; ManageaccountElement.php line: 172
+manageaccount_element_retype_password = "再次輸入新的密碼"
 ;
-; StatisticsView.php line: 109
-statistics_view_description = ""
+; ManageaccountElement.php line: 184
+manageaccount_element_save = ""
 ;
-; StatisticsView.php line: 111
-statistics_view_timestamp = ""
+; ManageaccountElement.php line: 190
+manageaccount_element_search_lang_settings = ""
 ;
-; StatisticsView.php line: 113
-statistics_view_crawl_date = ""
+; ManageaccountElement.php line: 195
+manageaccount_element_crawl_and_index = ""
 ;
-; StatisticsView.php line: 115
-statistics_view_pages = ""
+; ManageaccountElement.php line: 196
+manageaccount_element_crawl_info = ""
 ;
-; StatisticsView.php line: 117
-statistics_view_url = ""
+; ManageaccountElement.php line: 197
+manageaccount_element_num_crawls = ""
 ;
-; StatisticsView.php line: 120
-statistics_view_number_hosts = ""
+; ManageaccountElement.php line: 200
+manageaccount_element_manage_crawls = ""
 ;
-; SuggestView.php line: 69
-suggest_view_suggest_url = ""
+; ManageaccountElement.php line: 205
+manageaccount_element_groups_and_feeds = ""
 ;
-; SuggestView.php line: 71
-suggest_view_instructions = ""
+; ManageaccountElement.php line: 206
+manageaccount_element_group_info = ""
 ;
-; SuggestView.php line: 95
-suggest_view_url = ""
+; ManageaccountElement.php line: 208
+manageaccount_element_num_groups = ""
 ;
-; SuggestView.php line: 109
-register_view_human_check = ""
+; ManageaccountElement.php line: 211
+manageaccount_element_num_group = ""
 ;
-; SuggestView.php line: 143
-suggest_view_human_check = ""
+; ManageaccountElement.php line: 224
+manageaccount_element_group_wiki = ""
 ;
-; SuggestView.php line: 164
-suggest_view_submit_url = ""
+; ManageaccountElement.php line: 225
+manageaccount_element_group_stats = ""
 ;
-; SuggestView.php line: 173
-suggest_view_return = ""
+; ManageaccountElement.php line: 229
+manageaccount_element_last_post = ""
 ;
-; View.php line: 61
-view_locale_version14 = ""
+; ManageaccountElement.php line: 239
+manageaccount_element_manage_all_groups = ""
 ;
-; View.php line: 93
-view_logo_alt_text = ""
+; ManageaccountElement.php line: 241
+manageaccount_element_go_to_group_feed = ""
 ;
-; WikiView.php line: 86
-wiki_view_read = ""
+; ManageaccountElement.php line: 242
+manageaccount_element_crawl_mixes = ""
 ;
-; WikiView.php line: 87
-wiki_view_edit = ""
+; ManageaccountElement.php line: 243
+manageaccount_element_mixes_info = ""
 ;
-; WikiView.php line: 90
-wiki_view_pages = ""
+; ManageaccountElement.php line: 245
+manageaccount_element_num_mixes = ""
 ;
-; WikiView.php line: 135
-wiki_view_feed = ""
+; ManageaccountElement.php line: 248
+manageaccount_element_num_mix = ""
 ;
-; WikiView.php line: 136
-wiki_view_wiki = ""
+; ManageaccountElement.php line: 252
+manageaccount_element_manage_mixes = ""
 ;
-; WikiView.php line: 160
-adminview_auto_logout_one_minute = ""
+; ManageadvertisementsElement.php line: 58
+manageadvertisements_element_list = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/elements
+; ManageadvertisementsElement.php line: 65
+manageadvertisements_element_adname = ""
 ;
-; ActivityElement.php line: 56
-activity_element_activities = ""
+; ManageadvertisementsElement.php line: 70
+manageadvertisements_element_username = ""
 ;
-; AppearanceElement.php line: 71
-appearance_element_use_wiki_landing = ""
+; ManageadvertisementsElement.php line: 73
+manageadvertisements_element_keywords = ""
 ;
-; AppearanceElement.php line: 77
-appearance_element_background_color = ""
+; ManageadvertisementsElement.php line: 75
+manageadvertisements_element_budget = ""
 ;
-; AppearanceElement.php line: 84
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 76
+manageadvertisements_element_dates = ""
 ;
-; AppearanceElement.php line: 91
-appearance_element_background_image = ""
+; ManageadvertisementsElement.php line: 77
+manageadvertisements_element_viewclicks = ""
 ;
-; AppearanceElement.php line: 99
-appearance_element_foreground_color = ""
+; ManageadvertisementsElement.php line: 80
+manageadvertisements_element_status = ""
 ;
-; AppearanceElement.php line: 104
-appearance_element_topbar_color = ""
+; ManageadvertisementsElement.php line: 82
+manageadvertisements_element_actions = ""
 ;
-; AppearanceElement.php line: 109
-appearance_element_sidebar_color = ""
+; ManageadvertisementsElement.php line: 111
+manageadvertisements_element_active = ""
 ;
-; AppearanceElement.php line: 115
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 113
+manageadvertisements_element_deactivated = ""
 ;
-; AppearanceElement.php line: 122
-appearance_element_site_logo = ""
+; ManageadvertisementsElement.php line: 115
+manageadvertisements_element_suspended = ""
 ;
-; AppearanceElement.php line: 132
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 117
+manageadvertisements_element_completed = ""
 ;
-; AppearanceElement.php line: 139
-appearance_element_mobile_logo = ""
+; ManageadvertisementsElement.php line: 144
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 148
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 147
+manageadvertisements_element_edit = ""
 ;
-; AppearanceElement.php line: 155
-appearance_element_favicon = ""
+; ManageadvertisementsElement.php line: 157
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 163
-appearance_element_toolbar = ""
+; ManageadvertisementsElement.php line: 161
+manageadvertisements_element_deactivate = ""
 ;
-; AppearanceElement.php line: 174
-appearance_element_site_timezone = ""
+; ManageadvertisementsElement.php line: 166
+manageadvertisements_element_deconfirm = ""
 ;
-; AppearanceElement.php line: 179
-appearance_element_cookie_name = ""
+; ManageadvertisementsElement.php line: 170
+manageadvertisements_element_suspend = ""
 ;
-; AppearanceElement.php line: 184
-appearance_element_token_name = ""
+; ManageadvertisementsElement.php line: 176
+manageadvertisements_element_reconfirm = ""
 ;
-; AppearanceElement.php line: 189
-appearance_element_auxiliary_css = ""
+; ManageadvertisementsElement.php line: 180
+manageadvertisements_element_reactivate = ""
 ;
-; AppearanceElement.php line: 194
-appearance_element_reset_customizations = ""
+; ManageadvertisementsElement.php line: 225
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; AppearanceElement.php line: 199
-appearance_element_save = ""
+; ManageadvertisementsElement.php line: 227
+manageadvertisement_element_ad_info = ""
 ;
-; ConfigureElement.php line: 72
-configure_element_work_directory = ""
+; ManageadvertisementsElement.php line: 231
+manageadvertisement_element_purchase_ad = ""
 ;
-; ConfigureElement.php line: 76
-configure_element_load_or_create = ""
+; ManageadvertisementsElement.php line: 250
+manageadvertisement_element_ad_user = ""
 ;
-; ConfigureElement.php line: 92
-configure_element_component_check = ""
+; ManageadvertisementsElement.php line: 263
+manageadvertisement_element_displayname = ""
 ;
-; ConfigureElement.php line: 96
-configure_element_profile_settings = ""
+; ManageadvertisementsElement.php line: 282
+manageadvertisement_element_text = ""
 ;
-; ConfigureElement.php line: 101
-configure_element_default_language = ""
+; ManageadvertisementsElement.php line: 302
+manageadvertisement_element_ad_url = ""
 ;
-; ConfigureElement.php line: 108
-configure_element_debug_display = ""
+; ManageadvertisementsElement.php line: 323
+manageeadvertisement_element_ad_duration = ""
 ;
-; ConfigureElement.php line: 114
-configure_element_error_info = ""
+; ManageadvertisementsElement.php line: 339
+manageeadvertisement_element_start_day = ""
 ;
-; ConfigureElement.php line: 120
-configure_element_query_info = ""
+; ManageadvertisementsElement.php line: 344
+manageeadvertisement_element_keywords = ""
 ;
-; ConfigureElement.php line: 126
-configure_element_test_info = ""
+; ManageadvertisementsElement.php line: 349
+manageadvertisement_element_keyword_help = ""
 ;
-; ConfigureElement.php line: 131
-configure_element_site_access = ""
+; ManageadvertisementsElement.php line: 363
+manageadvertisement_element_keyword_bid_amount = ""
 ;
-; ConfigureElement.php line: 136
-configure_element_web_access = ""
+; ManageadvertisementsElement.php line: 370
+manageadvertisement_element_expensive_word = ""
 ;
-; ConfigureElement.php line: 141
-configure_element_rss_access = ""
+; ManageadvertisementsElement.php line: 387
+manageadvertisement_element_calculate_bid = ""
 ;
-; ConfigureElement.php line: 146
-configure_element_api_access = ""
+; ManageadvertisementsElement.php line: 407
+manageadvertisement_element_update = ""
 ;
-; ConfigureElement.php line: 150
-configure_element_crawl_robot = ""
+; ManageadvertisementsElement.php line: 416
+manageadvertisement_element_budget = ""
 ;
-; ConfigureElement.php line: 152
-configure_element_robot_name = ""
+; ManageadvertisementsElement.php line: 427
+manageadvertisement_element_card_number = ""
 ;
-; ConfigureElement.php line: 160
-configure_element_robot_instance = ""
+; ManageadvertisementsElement.php line: 438
+manageadvertisement_element_cvc = ""
 ;
-; ConfigureElement.php line: 166
-configure_element_robot_description = ""
+; ManageadvertisementsElement.php line: 447
+manageadvertisement_element_expiration = ""
 ;
-; ConfigureElement.php line: 175
-serversettings_element_save = ""
+; ManageadvertisementsElement.php line: 465
+manageadvertisement_element_charge_warning = ""
 ;
-; CrawloptionsElement.php line: 59
-crawloptions_element_back_to_manage = ""
+; ManageadvertisementsElement.php line: 468
+manageadvertisement_element_program_terms = ""
 ;
-; CrawloptionsElement.php line: 62
-crawloptions_element_modify_active_crawl = ""
+; ManageadvertisementsElement.php line: 475
+manageadvertisement_element_edit_ad = ""
 ;
-; CrawloptionsElement.php line: 64
-crawloptions_element_edit_crawl_options = ""
+; ManageadvertisementsElement.php line: 479
+manageadvertisement_element_purchase = ""
 ;
-; CrawloptionsElement.php line: 87
-crawloptions_element_web_crawl = ""
+; ManageadvertisementsElement.php line: 503
+manageadvertisement_element_preview = ""
 ;
-; CrawloptionsElement.php line: 97
-crawloptions_element_archive_crawl = ""
+; ManageadvertisementsElement.php line: 541
+manageadvertisements_element_search_advertisement = ""
 ;
-; CrawloptionsElement.php line: 104
-crawloptions_element_load_options = ""
+; ManageadvertisementsElement.php line: 543
+manageadvertisement_element_addadvertisement_form = ""
 ;
-; CrawloptionsElement.php line: 109
-crawloptions_element_crawl_order = ""
+; ManageadvertisementsElement.php line: 545
+manageadvertisements_element_adname = ""
 ;
-; CrawloptionsElement.php line: 118
-crawloptions_element_restrict_by_url = ""
+; ManageadvertisementsElement.php line: 546
+manageadvertisements_element_description = ""
 ;
-; CrawloptionsElement.php line: 126
-crawloptions_element_allowed_to_crawl = ""
+; ManageadvertisementsElement.php line: 547
+manageadvertisements_element_destination_url = ""
 ;
-; CrawloptionsElement.php line: 132
-crawloptions_element_disallowed_and_quota_sites = ""
+; ManageadvertisementsElement.php line: 548
+manageadvertisements_element_keywords = ""
 ;
-; CrawloptionsElement.php line: 141
-crawloptions_element_seed_sites = ""
+; ManageadvertisementsElement.php line: 549
+manageadvertisements_element_budget = ""
 ;
-; CrawloptionsElement.php line: 145
-crawloptions_element_add_suggest_urls = ""
+; ManageadvertisementsElement.php line: 550
+manageadvertisements_element_start_date = ""
 ;
-; CrawloptionsElement.php line: 156
-crawloptions_element_inject_sites = ""
+; ManageadvertisementsElement.php line: 551
+manageadvertisements_element_end_date = ""
 ;
-; CrawloptionsElement.php line: 160
-crawloptions_element_add_suggest_urls = ""
+; ManageclassifiersElement.php line: 66
+manageclassifiers_available_classifiers = ""
 ;
-; CrawloptionsElement.php line: 177
-crawloptions_element_reindex_crawl = ""
+; ManageclassifiersElement.php line: 74
+manageclassifiers_label_col = ""
 ;
-; CrawloptionsElement.php line: 185
-crawloptions_element_need_api_for_mix = ""
+; ManageclassifiersElement.php line: 77
+manageclassifiers_positive_col = ""
 ;
-; CrawloptionsElement.php line: 193
-crawloptions_element_save_options = ""
+; ManageclassifiersElement.php line: 78
+manageclassifiers_negative_col = ""
 ;
-; EditclassifierElement.php line: 62
-editclassifier_back = ""
+; ManageclassifiersElement.php line: 82
+manageclassifiers_actions_col = ""
 ;
-; EditclassifierElement.php line: 64
-editclassifier_edit_classifier = ""
+; ManageclassifiersElement.php line: 100
+manageclassifiers_edit = ""
 ;
-; EditclassifierElement.php line: 76
-editclassifier_classifier_label = ""
+; ManageclassifiersElement.php line: 103
+manageclassifiers_finalized = ""
 ;
-; EditclassifierElement.php line: 81
-editclassifier_change = ""
+; ManageclassifiersElement.php line: 109
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 86
-editclassifier_statistics = ""
+; ManageclassifiersElement.php line: 111
+manageclassifiers_finalize = ""
 ;
-; EditclassifierElement.php line: 87
-editclassifier_positive_examples = ""
+; ManageclassifiersElement.php line: 116
+manageclassifiers_finalizing = ""
 ;
-; EditclassifierElement.php line: 90
-editclassifier_negative_examples = ""
+; ManageclassifiersElement.php line: 120
+confirm_delete_operation = ""
 ;
-; EditclassifierElement.php line: 93
-editclassifier_accuracy = ""
+; ManageclassifiersElement.php line: 123
+manageclassifiers_delete = ""
 ;
-; EditclassifierElement.php line: 98
-crawl_component_na = ""
+; ManageclassifiersElement.php line: 155
+manageclassifiers_manage_classifiers = ""
 ;
-; EditclassifierElement.php line: 103
-editclassifier_update = ""
+; ManageclassifiersElement.php line: 165
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 104
-editclassifier_add_examples = ""
+; ManageclassifiersElement.php line: 170
+manageclassifiers_create_button = ""
 ;
-; EditclassifierElement.php line: 113
-editclassifier_source = ""
+; ManageclassifiersElement.php line: 185
+manageclassifiers_element_search = ""
 ;
-; EditclassifierElement.php line: 117
-editclassifier_default_crawl = ""
+; ManageclassifiersElement.php line: 186
+manageclassifiers_element_create_form = ""
 ;
-; EditclassifierElement.php line: 127
-editclassifier_label_by_hand = ""
+; ManageclassifiersElement.php line: 187
+manageclassifiers_classifier_name = ""
 ;
-; EditclassifierElement.php line: 129
-editclassifier_all_in_class = ""
+; ManagecrawlsElement.php line: 51
+managecrawls_element_create_crawl = ""
 ;
-; EditclassifierElement.php line: 131
-editclassifier_none_in_class = ""
+; ManagecrawlsElement.php line: 60
+managecrawls_element_description = ""
 ;
-; EditclassifierElement.php line: 136
-editclassifier_keywords = ""
+; ManagecrawlsElement.php line: 67
+managecrawls_element_start_new_crawl = ""
 ;
-; EditclassifierElement.php line: 145
-editclassifier_load = ""
+; ManagecrawlsElement.php line: 71
+managecrawls_element_options = ""
 ;
-; EditclassifierElement.php line: 151
-editclassifier_finalize = ""
+; ManagecrawlsElement.php line: 77
+managecrawls_element_awaiting_status = ""
 ;
-; EditclassifierElement.php line: 159
-editclassifier_no_documents = ""
+; ManagecrawlsElement.php line: 95
+managecrawls_element_up_longer_update = ""
 ;
-; EditlocalesElement.php line: 62
-editlocales_element_back_to_manage = "回到管理頁面"
+; ManagegroupsElement.php line: 71
+managegroups_element_not_my_groups = ""
 ;
-; EditlocalesElement.php line: 64
-editlocales_element_edit_locale = ""
+; ManagegroupsElement.php line: 73
+managegroups_element_groups = ""
 ;
-; EditlocalesElement.php line: 78
-editlocales_element_show = ""
+; ManagegroupsElement.php line: 82
+managegroups_element_groupname = ""
 ;
-; EditlocalesElement.php line: 82
-editlocales_element_filter = ""
+; ManagegroupsElement.php line: 83
+managegroups_element_groupowner = ""
 ;
-; EditlocalesElement.php line: 87
-editlocales_element_go = ""
+; ManagegroupsElement.php line: 85
+managegroups_element_registertype = ""
 ;
-; EditlocalesElement.php line: 91
-editlocales_element_no_matching = ""
+; ManagegroupsElement.php line: 86
+managegroups_element_memberaccess = ""
 ;
-; EditlocalesElement.php line: 127
-editlocales_element_save = ""
+; ManagegroupsElement.php line: 87
+managegroups_element_voting = ""
 ;
-; EditmixElement.php line: 57
-editmix_element_back_to_mix = ""
+; ManagegroupsElement.php line: 88
+managegroups_element_post_lifetime = ""
 ;
-; EditmixElement.php line: 59
-mixcrawls_element_edit_mix = ""
+; ManagegroupsElement.php line: 90
+managegroups_element_actions = ""
 ;
-; EditmixElement.php line: 70
-mixcrawls_element_mix_name = ""
+; ManagegroupsElement.php line: 196
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 76
-mixcrawls_element_mix_components = ""
+; ManagegroupsElement.php line: 200
+managegroups_element_num_users = ""
 ;
-; EditmixElement.php line: 82
-mixcrawls_element_too_many = ""
+; ManagegroupsElement.php line: 214
+manageaccount_element_group_wiki = ""
 ;
-; EditmixElement.php line: 83
-mixcrawls_element_add_fragment = ""
+; ManagegroupsElement.php line: 229
+managegroups_element_join = ""
 ;
-; EditmixElement.php line: 88
-mixcrawls_element_save_button = ""
+; ManagegroupsElement.php line: 233
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 58
-footer_element_blog = ""
+; ManagegroupsElement.php line: 238
+managegroups_element_edit = ""
 ;
-; FooterElement.php line: 60
-footer_element_privacy = ""
+; ManagegroupsElement.php line: 243
+managegroups_element_delete = ""
 ;
-; FooterElement.php line: 62
-footer_element_terms = ""
+; ManagegroupsElement.php line: 249
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 64
-footer_element_tools = ""
+; ManagegroupsElement.php line: 254
+managegroups_element_join = ""
 ;
-; FooterElement.php line: 66
-footer_element_bot = ""
+; ManagegroupsElement.php line: 263
+managegroups_element_decline = ""
 ;
-; FooterElement.php line: 71
-footer_element_developed_seek_quarry = ""
+; ManagegroupsElement.php line: 265
+managegroups_element_unsubscribe = ""
 ;
-; FooterElement.php line: 74
-footer_element_copyright_site = ""
+; ManagegroupsElement.php line: 270
+confirm_delete_operation = ""
 ;
-; FooterElement.php line: 76
-footer_element_this_search_engine = ""
+; ManagegroupsElement.php line: 273
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 86
-groupfeed_element_add_group = ""
+; ManagegroupsElement.php line: 303
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 90
-groupfeed_element_request_add = ""
+; ManagegroupsElement.php line: 304
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 116
-groupfeed_element_wiki_page = ""
+; ManagegroupsElement.php line: 306
+managegroups_element_create_group = ""
 ;
-; GroupfeedElement.php line: 118
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 310
+managegroups_element_add_group = ""
 ;
-; GroupfeedElement.php line: 121
-groupfeed_element_back = ""
+; ManagegroupsElement.php line: 327
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 131
-groupfeed_element_group_activity = ""
+; ManagegroupsElement.php line: 338
+managegroups_element_browse = ""
 ;
-; GroupfeedElement.php line: 135
-groupfeed_element_wiki_thread = ""
+; ManagegroupsElement.php line: 348
+managegroups_element_register = ""
 ;
-; GroupfeedElement.php line: 154
-groupfeed_element_feed = ""
+; ManagegroupsElement.php line: 355
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 159
-group_view_wiki = ""
+; ManagegroupsElement.php line: 362
+managegroups_element_voting = ""
 ;
-; GroupfeedElement.php line: 161
-groupfeed_element_user = ""
+; ManagegroupsElement.php line: 369
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 205
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 381
+managegroups_element_group_users = ""
 ;
-; GroupfeedElement.php line: 240
-manageaccount_element_group_wiki = ""
+; ManagegroupsElement.php line: 385
+managegroups_element_num_users = ""
 ;
-; GroupfeedElement.php line: 241
-manageaccount_element_group_stats = ""
+; ManagegroupsElement.php line: 412
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 246
-manageaccount_element_last_post = ""
+; ManagegroupsElement.php line: 414
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 290
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 423
+managegroups_element_activate = ""
 ;
-; GroupfeedElement.php line: 300
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 429
+managegroups_element_ban = ""
 ;
-; GroupfeedElement.php line: 313
-groupfeed_element_start_thread = ""
+; ManagegroupsElement.php line: 435
+managegroups_element_unban = ""
 ;
-; GroupfeedElement.php line: 319
-groupfeed_element_no_posts_yet = ""
+; ManagegroupsElement.php line: 443
+managegroups_element_delete = ""
 ;
-; GroupfeedElement.php line: 324
-groupfeed_element_thread_no_exist = ""
+; ManagegroupsElement.php line: 471
+managegroups_element_filter = ""
 ;
-; GroupfeedElement.php line: 357
-groupfeed_element_edit = ""
+; ManagegroupsElement.php line: 492
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 362
-groupfeed_element_delete = ""
+; ManagegroupsElement.php line: 503
+managegroups_element_save = ""
 ;
-; GroupfeedElement.php line: 384
-groupfeed_element_num_posts = ""
+; ManagegroupsElement.php line: 533
+managegroups_element_group_info = ""
 ;
-; GroupfeedElement.php line: 394
-groupfeed_element_num_views = ""
+; ManagegroupsElement.php line: 534
+managegroups_element_invite_users_group = ""
 ;
-; GroupfeedElement.php line: 419
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 546
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 421
-groupfeed_element_start_thread_in_group = ""
+; ManagegroupsElement.php line: 554
+managegroups_element_usernames = ""
 ;
-; GroupfeedElement.php line: 437
-groupfeed_element_last_edited = ""
+; ManagegroupsElement.php line: 561
+managegroups_element_invite = ""
 ;
-; GroupfeedElement.php line: 453
-groupfeed_element_post_vote = ""
+; ManagegroupsElement.php line: 580
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 480
-groupfeed_element_last_post_info = ""
+; ManagegroupsElement.php line: 581
+managegroups_element_transfer_group_owner = ""
 ;
-; GroupfeedElement.php line: 496
-groupfeed_element_comment = ""
+; ManagegroupsElement.php line: 593
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 550
-fileupload_helper_drag_textarea = ""
+; ManagegroupsElement.php line: 601
+managegroups_element_new_group_owner = ""
 ;
-; GroupfeedElement.php line: 551
-fileupload_helper_click_textarea = ""
+; ManagegroupsElement.php line: 608
+managegroups_element_change_owner = ""
 ;
-; GroupfeedElement.php line: 575
-groupfeed_element_add_comment = ""
+; ManagegroupsElement.php line: 627
+managegroups_element_discover_groups = ""
 ;
-; GroupfeedElement.php line: 589
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 631
+managegroups_element_search_group = ""
 ;
-; GroupfeedElement.php line: 627
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 633
+managegroups_element_addgroup_form = ""
 ;
-; GroupfeedElement.php line: 634
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 635
+managegroups_element_groupname = ""
 ;
-; GroupfeedElement.php line: 647
-groupfeed_element_save = ""
+; ManagegroupsElement.php line: 636
+managegroups_element_groupowner = ""
 ;
-; GroupfeedElement.php line: 682
-groupfeed_element_edit_post = ""
+; ManagegroupsElement.php line: 637
+managegroups_element_registertype = ""
 ;
-; GroupfeedElement.php line: 685
-groupfeed_element_subject = ""
+; ManagegroupsElement.php line: 639
+managegroups_element_memberaccess = ""
 ;
-; GroupfeedElement.php line: 690
-groupfeed_element_post = ""
+; ManagegroupsElement.php line: 641
+managegroups_element_post_lifetime = ""
 ;
-; GroupfeedElement.php line: 703
-groupfeed_element_save = ""
+; ManagelocalesElement.php line: 62
+managelocales_element_locale_list = ""
 ;
-; GroupfeedElement.php line: 731
-groupfeed_element_no_longer_update = ""
+; ManagelocalesElement.php line: 72
+managelocales_element_localename = ""
 ;
-; MachinelogElement.php line: 57
-machinelog_element_back_to_manage = ""
+; ManagelocalesElement.php line: 75
+managelocales_element_localetag = ""
 ;
-; MachinelogElement.php line: 62
-machinelog_element_filter = ""
+; ManagelocalesElement.php line: 76
+managelocales_element_writingmode = ""
 ;
-; MachinelogElement.php line: 69
-machinelog_element_log_file = ""
+; ManagelocalesElement.php line: 77
+managelocales_element_enabled = ""
 ;
-; MachinelogElement.php line: 74
-machinelog_element_refresh_off = ""
+; ManagelocalesElement.php line: 81
+managelocales_element_percenttranslated = ""
 ;
-; MachinelogElement.php line: 78
-machinelog_element_refresh_on = ""
+; ManagelocalesElement.php line: 82
+managelocales_element_actions = ""
 ;
-; ManageaccountElement.php line: 64
-manageaccount_element_edit_or_no_text = ""
+; ManagelocalesElement.php line: 102
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 73
-manageaccount_element_welcome = ""
+; ManagelocalesElement.php line: 103
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 75
-manageaccount_element_what_can_do = ""
+; ManagelocalesElement.php line: 110
+managelocales_element_edit = ""
 ;
-; ManageaccountElement.php line: 76
-manageaccount_element_account_details = ""
+; ManagelocalesElement.php line: 115
+confirm_delete_operation = ""
 ;
-; ManageaccountElement.php line: 107
-manageaccounts_element_icon = ""
+; ManagelocalesElement.php line: 116
+managelocales_element_delete = ""
 ;
-; ManageaccountElement.php line: 117
-manageusers_element_username = "使用者名稱"
+; ManagelocalesElement.php line: 137
+manageloecales_element_add_locale_form = ""
 ;
-; ManageaccountElement.php line: 124
-manageusers_element_firstname = ""
+; ManagelocalesElement.php line: 138
+managelocales_element_locale_info = ""
 ;
-; ManageaccountElement.php line: 130
-manageusers_element_lastname = ""
+; ManagelocalesElement.php line: 140
+managelocales_element_add_locale = ""
 ;
-; ManageaccountElement.php line: 136
-manageusers_element_email = ""
+; ManagelocalesElement.php line: 161
+managelocales_element_localenamelabel = ""
 ;
-; ManageaccountElement.php line: 146
-manageaccount_element_is_advertiser = ""
+; ManagelocalesElement.php line: 174
+managelocales_element_localetaglabel = ""
 ;
-; ManageaccountElement.php line: 159
-manageaccount_element_password = ""
+; ManagelocalesElement.php line: 180
+managelocales_element_writingmodelabel = ""
 ;
-; ManageaccountElement.php line: 166
-manageaccount_element_new_password = "新的密碼"
+; ManagelocalesElement.php line: 190
+managelocales_element_localeenabled = ""
 ;
-; ManageaccountElement.php line: 172
-manageaccount_element_retype_password = "再次輸入新的密碼"
+; ManagelocalesElement.php line: 201
+managelocales_element_submit = "完成"
 ;
-; ManageaccountElement.php line: 184
-manageaccount_element_save = ""
+; ManagelocalesElement.php line: 219
+managelocales_element_search_locales = ""
 ;
-; ManageaccountElement.php line: 190
-manageaccount_element_search_lang_settings = ""
+; ManagelocalesElement.php line: 220
+managelocales_element_addlocale_form = ""
 ;
-; ManageaccountElement.php line: 195
-manageaccount_element_crawl_and_index = ""
+; ManagelocalesElement.php line: 222
+managelocales_element_localename = ""
 ;
-; ManageaccountElement.php line: 196
-manageaccount_element_crawl_info = ""
+; ManagelocalesElement.php line: 223
+managelocales_element_localetag = ""
 ;
-; ManageaccountElement.php line: 197
-manageaccount_element_num_crawls = ""
+; ManagelocalesElement.php line: 224
+managelocales_element_writingmode = ""
 ;
-; ManageaccountElement.php line: 200
-manageaccount_element_manage_crawls = ""
+; ManagelocalesElement.php line: 225
+managelocales_element_enabled = ""
 ;
-; ManageaccountElement.php line: 205
-manageaccount_element_groups_and_feeds = ""
+; ManagelocalesElement.php line: 231
+managelocales_element_true = ""
 ;
-; ManageaccountElement.php line: 206
-manageaccount_element_group_info = ""
+; ManagelocalesElement.php line: 232
+managelocales_element_false = ""
 ;
-; ManageaccountElement.php line: 208
-manageaccount_element_num_groups = ""
+; ManagemachinesElement.php line: 56
+managemachines_element_add_machine = ""
 ;
-; ManageaccountElement.php line: 211
-manageaccount_element_num_group = ""
+; ManagemachinesElement.php line: 67
+managemachines_element_machine_name = ""
 ;
-; ManageaccountElement.php line: 224
-manageaccount_element_group_wiki = ""
+; ManagemachinesElement.php line: 72
+managemachines_element_machineurl = ""
 ;
-; ManageaccountElement.php line: 225
-manageaccount_element_group_stats = ""
+; ManagemachinesElement.php line: 76
+managemachines_element_is_mirror = ""
 ;
-; ManageaccountElement.php line: 229
-manageaccount_element_last_post = ""
+; ManagemachinesElement.php line: 81
+managemachines_element_parent_name = ""
 ;
-; ManageaccountElement.php line: 239
-manageaccount_element_manage_all_groups = ""
+; ManagemachinesElement.php line: 87
+managemachines_element_has_queueserver = ""
 ;
-; ManageaccountElement.php line: 241
-manageaccount_element_go_to_group_feed = ""
+; ManagemachinesElement.php line: 91
+managemachines_element_num_fetchers = ""
 ;
-; ManageaccountElement.php line: 242
-manageaccount_element_crawl_mixes = ""
+; ManagemachinesElement.php line: 96
+managemachines_element_submit = ""
 ;
-; ManageaccountElement.php line: 243
-manageaccount_element_mixes_info = ""
+; ManagemachinesElement.php line: 101
+managemachines_element_machine_info = ""
 ;
-; ManageaccountElement.php line: 245
-manageaccount_element_num_mixes = ""
+; ManagemachinesElement.php line: 105
+managemachines_element_awaiting_status = ""
 ;
-; ManageaccountElement.php line: 248
-manageaccount_element_num_mix = ""
+; ManagemachinesElement.php line: 123
+managemachines_element_no_longer_update = ""
 ;
-; ManageaccountElement.php line: 252
-manageaccount_element_manage_mixes = ""
+; ManagerolesElement.php line: 59
+manageroles_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 58
-manageadvertisements_element_list = ""
+; ManagerolesElement.php line: 67
+manageroles_element_rolename = "使用者名稱"
 ;
-; ManageadvertisementsElement.php line: 65
-manageadvertisements_element_adname = ""
+; ManagerolesElement.php line: 68
+manageroles_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 70
-manageadvertisements_element_username = ""
+; ManagerolesElement.php line: 94
+manageroles_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 73
-manageadvertisements_element_keywords = ""
+; ManagerolesElement.php line: 99
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 75
-manageadvertisements_element_budget = ""
+; ManagerolesElement.php line: 103
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 76
-manageadvertisements_element_dates = ""
+; ManagerolesElement.php line: 106
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 77
-manageadvertisements_element_viewclicks = ""
+; ManagerolesElement.php line: 140
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 80
-manageadvertisements_element_status = ""
+; ManagerolesElement.php line: 141
+manageroles_element_role_info = ""
 ;
-; ManageadvertisementsElement.php line: 82
-manageadvertisements_element_actions = ""
+; ManagerolesElement.php line: 143
+manageroles_element_add_role = "新增使用者"
 ;
-; ManageadvertisementsElement.php line: 111
-manageadvertisements_element_active = ""
+; ManagerolesElement.php line: 154
+manageroles_element_rolename = "使用者名稱"
 ;
-; ManageadvertisementsElement.php line: 113
-manageadvertisements_element_deactivated = ""
+; ManagerolesElement.php line: 167
+manageroles_element_role_activities = ""
 ;
-; ManageadvertisementsElement.php line: 115
-manageadvertisements_element_suspended = ""
+; ManagerolesElement.php line: 175
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 117
-manageadvertisements_element_completed = ""
+; ManagerolesElement.php line: 183
+manageroles_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 144
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 203
+manageroles_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 147
-manageadvertisements_element_edit = ""
+; ManagerolesElement.php line: 220
+manageroles_element_search_role = ""
 ;
-; ManageadvertisementsElement.php line: 157
-manageadvertisements_element_deconfirm = ""
+; ManagerolesElement.php line: 221
+manageroles_element_addrole_form = ""
 ;
-; ManageadvertisementsElement.php line: 161
-manageadvertisements_element_deactivate = ""
+; ManagerolesElement.php line: 223
+manageroles_element_rolename = "使用者名稱"
 ;
-; ManageadvertisementsElement.php line: 166
-manageadvertisements_element_deconfirm = ""
+; ManageusersElement.php line: 59
+manageusers_element_users = ""
 ;
-; ManageadvertisementsElement.php line: 170
-manageadvertisements_element_suspend = ""
+; ManageusersElement.php line: 68
+manageusers_element_username = "使用者名稱"
 ;
-; ManageadvertisementsElement.php line: 176
-manageadvertisements_element_reconfirm = ""
+; ManageusersElement.php line: 70
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 180
-manageadvertisements_element_reactivate = ""
+; ManageusersElement.php line: 71
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 225
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 72
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 227
-manageadvertisement_element_ad_info = ""
+; ManageusersElement.php line: 73
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 231
-manageadvertisement_element_purchase_ad = ""
+; ManageusersElement.php line: 75
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 250
-manageadvertisement_element_ad_user = ""
+; ManageusersElement.php line: 76
+manageusers_element_actions = ""
 ;
-; ManageadvertisementsElement.php line: 263
-manageadvertisement_element_displayname = ""
+; ManageusersElement.php line: 141
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 282
-manageadvertisement_element_text = ""
+; ManageusersElement.php line: 145
+manageusers_element_edit = ""
 ;
-; ManageadvertisementsElement.php line: 302
-manageadvertisement_element_ad_url = ""
+; ManageusersElement.php line: 151
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 323
-manageeadvertisement_element_ad_duration = ""
+; ManageusersElement.php line: 155
+confirm_delete_operation = ""
 ;
-; ManageadvertisementsElement.php line: 339
-manageeadvertisement_element_start_day = ""
+; ManageusersElement.php line: 158
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 344
-manageeadvertisement_element_keywords = ""
+; ManageusersElement.php line: 200
+manageusers_element_adduser_form = ""
 ;
-; ManageadvertisementsElement.php line: 349
-manageadvertisement_element_keyword_help = ""
+; ManageusersElement.php line: 201
+manageusers_element_user_info = ""
 ;
-; ManageadvertisementsElement.php line: 363
-manageadvertisement_element_keyword_bid_amount = ""
+; ManageusersElement.php line: 203
+manageusers_element_add_user = ""
 ;
-; ManageadvertisementsElement.php line: 370
-manageadvertisement_element_expensive_word = ""
+; ManageusersElement.php line: 228
+manageusers_element_username = "使用者名稱"
 ;
-; ManageadvertisementsElement.php line: 387
-manageadvertisement_element_calculate_bid = ""
+; ManageusersElement.php line: 238
+manageusers_element_firstname = ""
 ;
-; ManageadvertisementsElement.php line: 407
-manageadvertisement_element_update = ""
+; ManageusersElement.php line: 244
+manageusers_element_lastname = ""
 ;
-; ManageadvertisementsElement.php line: 416
-manageadvertisement_element_budget = ""
+; ManageusersElement.php line: 250
+manageusers_element_email = ""
 ;
-; ManageadvertisementsElement.php line: 427
-manageadvertisement_element_card_number = ""
+; ManageusersElement.php line: 257
+manageusers_element_status = ""
 ;
-; ManageadvertisementsElement.php line: 438
-manageadvertisement_element_cvc = ""
+; ManageusersElement.php line: 274
+manageusers_element_roles = ""
 ;
-; ManageadvertisementsElement.php line: 447
-manageadvertisement_element_expiration = ""
+; ManageusersElement.php line: 278
+manageusers_element_num_roles = ""
 ;
-; ManageadvertisementsElement.php line: 465
-manageadvertisement_element_charge_warning = ""
+; ManageusersElement.php line: 293
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 468
-manageadvertisement_element_program_terms = ""
+; ManageusersElement.php line: 303
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 475
-manageadvertisement_element_edit_ad = ""
+; ManageusersElement.php line: 344
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 479
-manageadvertisement_element_purchase = ""
+; ManageusersElement.php line: 357
+manageusers_element_add_role = ""
 ;
-; ManageadvertisementsElement.php line: 500
-manageadvertisement_element_preview = ""
+; ManageusersElement.php line: 367
+manageusers_element_groups = ""
 ;
-; ManageadvertisementsElement.php line: 538
-manageadvertisements_element_search_advertisement = ""
+; ManageusersElement.php line: 371
+manageusers_element_num_groups = ""
 ;
-; ManageadvertisementsElement.php line: 540
-manageadvertisement_element_addadvertisement_form = ""
+; ManageusersElement.php line: 392
+manageusers_element_delete = ""
 ;
-; ManageadvertisementsElement.php line: 542
-manageadvertisements_element_adname = ""
+; ManageusersElement.php line: 431
+manageusers_element_filter = ""
 ;
-; ManageadvertisementsElement.php line: 543
-manageadvertisements_element_description = ""
+; ManageusersElement.php line: 443
+manageusers_element_add_group = ""
 ;
-; ManageadvertisementsElement.php line: 544
-manageadvertisements_element_destination_url = ""
+; ManageusersElement.php line: 456
+manageusers_element_password = "密碼"
 ;
-; ManageadvertisementsElement.php line: 545
-manageadvertisements_element_keywords = ""
+; ManageusersElement.php line: 462
+manageusers_element_retype_password = "再次輸入密碼"
 ;
-; ManageadvertisementsElement.php line: 546
-manageadvertisements_element_budget = ""
+; ManageusersElement.php line: 469
+manageusers_element_save = ""
 ;
-; ManageadvertisementsElement.php line: 547
-manageadvertisements_element_start_date = ""
+; ManageusersElement.php line: 496
+manageusers_element_search_user = ""
 ;
-; ManageadvertisementsElement.php line: 548
-manageadvertisements_element_end_date = ""
+; ManageusersElement.php line: 497
+manageusers_element_adduser_form = ""
 ;
-; ManageclassifiersElement.php line: 66
-manageclassifiers_available_classifiers = ""
+; ManageusersElement.php line: 499
+manageusers_element_username = "使用者名稱"
 ;
-; ManageclassifiersElement.php line: 74
-manageclassifiers_label_col = ""
+; ManageusersElement.php line: 500
+manageusers_element_firstname = ""
 ;
-; ManageclassifiersElement.php line: 77
-manageclassifiers_positive_col = ""
+; ManageusersElement.php line: 501
+manageusers_element_lastname = ""
 ;
-; ManageclassifiersElement.php line: 78
-manageclassifiers_negative_col = ""
+; ManageusersElement.php line: 502
+manageusers_element_email = ""
 ;
-; ManageclassifiersElement.php line: 82
-manageclassifiers_actions_col = ""
+; ManageusersElement.php line: 503
+manageusers_element_status = ""
 ;
-; ManageclassifiersElement.php line: 100
-manageclassifiers_edit = ""
+; MixcrawlsElement.php line: 65
+mixcrawls_element_available_mixes = ""
 ;
-; ManageclassifiersElement.php line: 103
-manageclassifiers_finalized = ""
+; MixcrawlsElement.php line: 72
+mixcrawls_view_name = ""
 ;
-; ManageclassifiersElement.php line: 109
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 74
+mixcrawls_view_definition = ""
 ;
-; ManageclassifiersElement.php line: 111
-manageclassifiers_finalize = ""
+; MixcrawlsElement.php line: 78
+mixcrawls_view_actions = ""
 ;
-; ManageclassifiersElement.php line: 116
-manageclassifiers_finalizing = ""
+; MixcrawlsElement.php line: 112
+mixcrawls_view_no_components = ""
 ;
-; ManageclassifiersElement.php line: 120
-confirm_delete_operation = ""
+; MixcrawlsElement.php line: 118
+mixcrawls_view_share = ""
 ;
-; ManageclassifiersElement.php line: 123
-manageclassifiers_delete = ""
+; MixcrawlsElement.php line: 120
+mixcrawls_view_edit = ""
 ;
-; ManageclassifiersElement.php line: 155
-manageclassifiers_manage_classifiers = ""
+; MixcrawlsElement.php line: 125
+mixcrawls_set_index = ""
 ;
-; ManageclassifiersElement.php line: 165
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 128
+mixcrawl_search_index = ""
 ;
-; ManageclassifiersElement.php line: 170
-manageclassifiers_create_button = ""
+; MixcrawlsElement.php line: 134
+confirm_delete_operation = ""
 ;
-; ManageclassifiersElement.php line: 185
-manageclassifiers_element_search = ""
+; MixcrawlsElement.php line: 136
+mixcrawls_view_delete = ""
 ;
-; ManageclassifiersElement.php line: 186
-manageclassifiers_element_create_form = ""
+; MixcrawlsElement.php line: 146
+mixcrawls_view_back = ""
 ;
-; ManageclassifiersElement.php line: 187
-manageclassifiers_classifier_name = ""
+; MixcrawlsElement.php line: 147
+mixcrawls_element_share_mix_group = ""
 ;
-; ManagecrawlsElement.php line: 51
-managecrawls_element_create_crawl = ""
+; MixcrawlsElement.php line: 157
+mixcrawls_element_mixname = ""
 ;
-; ManagecrawlsElement.php line: 60
-managecrawls_element_description = ""
+; MixcrawlsElement.php line: 163
+mixcrawls_element_group = ""
 ;
-; ManagecrawlsElement.php line: 67
-managecrawls_element_start_new_crawl = ""
+; MixcrawlsElement.php line: 169
+mixcrawls_element_share = ""
 ;
-; ManagecrawlsElement.php line: 71
-managecrawls_element_options = ""
+; MixcrawlsElement.php line: 193
+mixcrawls_element_make_mix = ""
 ;
-; ManagecrawlsElement.php line: 77
-managecrawls_element_awaiting_status = ""
+; MixcrawlsElement.php line: 203
+mixcrawls_element_mix_name = ""
 ;
-; ManagecrawlsElement.php line: 95
-managecrawls_element_up_longer_update = ""
+; MixcrawlsElement.php line: 208
+mixcrawls_element_create_button = ""
 ;
-; ManagegroupsElement.php line: 71
-managegroups_element_not_my_groups = ""
+; MixcrawlsElement.php line: 224
+mixcrawls_element_search_mix = ""
 ;
-; ManagegroupsElement.php line: 73
-managegroups_element_groups = ""
+; MixcrawlsElement.php line: 225
+mixcrawls_element_createmix_form = ""
 ;
-; ManagegroupsElement.php line: 82
-managegroups_element_groupname = ""
+; MixcrawlsElement.php line: 227
+mixcrawls_element_mixname = ""
 ;
-; ManagegroupsElement.php line: 83
-managegroups_element_groupowner = ""
+; MoreoptionsElement.php line: 82
+moreoptions_element_other_searches = ""
 ;
-; ManagegroupsElement.php line: 85
-managegroups_element_registertype = ""
+; MoreoptionsElement.php line: 119
+moreoptions_element_previous = ""
 ;
-; ManagegroupsElement.php line: 86
-managegroups_element_memberaccess = ""
+; MoreoptionsElement.php line: 125
+moreoptions_element_next = ""
 ;
-; ManagegroupsElement.php line: 87
-managegroups_element_voting = ""
+; MoreoptionsElement.php line: 137
+moreoptions_element_my_accounts = ""
 ;
-; ManagegroupsElement.php line: 88
-managegroups_element_post_lifetime = ""
+; MoreoptionsElement.php line: 142
+signin_element_settings = "設定"
 ;
-; ManagegroupsElement.php line: 90
-managegroups_element_actions = ""
+; MoreoptionsElement.php line: 151
+signin_element_signin = "登入"
 ;
-; ManagegroupsElement.php line: 196
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 154
+signin_element_admin = "管理員"
 ;
-; ManagegroupsElement.php line: 200
-managegroups_element_num_users = ""
+; MoreoptionsElement.php line: 167
+signin_view_create_account = ""
 ;
-; ManagegroupsElement.php line: 214
-manageaccount_element_group_wiki = ""
+; MoreoptionsElement.php line: 186
+moreoptions_element_suggest = ""
 ;
-; ManagegroupsElement.php line: 229
-managegroups_element_join = ""
+; MoreoptionsElement.php line: 188
+moreoptions_element_wiki_pages = ""
 ;
-; ManagegroupsElement.php line: 233
-managegroups_element_edit = ""
+; MoreoptionsElement.php line: 199
+moreoptions_element_tools = ""
 ;
-; ManagegroupsElement.php line: 238
-managegroups_element_edit = ""
+; PageoptionsElement.php line: 59
+pageoptions_element_crawl_time = ""
 ;
-; ManagegroupsElement.php line: 243
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 64
+pageoptions_element_search_time = ""
 ;
-; ManagegroupsElement.php line: 249
-managegroups_element_join = ""
+; PageoptionsElement.php line: 69
+pageoptions_element_test_options = ""
 ;
-; ManagegroupsElement.php line: 254
-managegroups_element_join = ""
+; PageoptionsElement.php line: 81
+pageoptions_element_load_options = ""
 ;
-; ManagegroupsElement.php line: 263
-managegroups_element_decline = ""
+; PageoptionsElement.php line: 86
+pageoptions_element_page_range = ""
 ;
-; ManagegroupsElement.php line: 265
-managegroups_element_unsubscribe = ""
+; PageoptionsElement.php line: 92
+pageoptions_element_summarizer = ""
 ;
-; ManagegroupsElement.php line: 270
-confirm_delete_operation = ""
+; PageoptionsElement.php line: 101
+pageoptions_element_max_description = ""
 ;
-; ManagegroupsElement.php line: 273
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 107
+pageoptions_element_save_cache = ""
 ;
-; ManagegroupsElement.php line: 303
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 117
+pageoptions_element_allow_recrawl = ""
 ;
-; ManagegroupsElement.php line: 304
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 124
+pageoptions_element_file_types = ""
 ;
-; ManagegroupsElement.php line: 306
-managegroups_element_create_group = ""
+; PageoptionsElement.php line: 153
+pageoptions_element_classifiers_rankers = ""
 ;
-; ManagegroupsElement.php line: 310
-managegroups_element_add_group = ""
+; PageoptionsElement.php line: 169
+pageoptions_element_use_classify = ""
 ;
-; ManagegroupsElement.php line: 327
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 170
+pageoptions_element_use_rank = ""
 ;
-; ManagegroupsElement.php line: 338
-managegroups_element_browse = ""
+; PageoptionsElement.php line: 197
+pageoptions_element_no_classifiers = ""
 ;
-; ManagegroupsElement.php line: 348
-managegroups_element_register = ""
+; PageoptionsElement.php line: 200
+pageoptions_element_indexing_plugins = ""
 ;
-; ManagegroupsElement.php line: 355
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 206
+pageoptions_element_plugin = ""
 ;
-; ManagegroupsElement.php line: 362
-managegroups_element_voting = ""
+; PageoptionsElement.php line: 207
+pageoptions_element_plugin_include = ""
 ;
-; ManagegroupsElement.php line: 369
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 223
+pageoptions_element_configure = ""
 ;
-; ManagegroupsElement.php line: 381
-managegroups_element_group_users = ""
+; PageoptionsElement.php line: 235
+pageoptions_element_no_compatible_plugins = ""
 ;
-; ManagegroupsElement.php line: 385
-managegroups_element_num_users = ""
+; PageoptionsElement.php line: 238
+pageoptions_element_page_rules = ""
 ;
-; ManagegroupsElement.php line: 412
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 247
+page_element_search_page = ""
 ;
-; ManagegroupsElement.php line: 414
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 254
+pageoptions_element_wd_suggest = ""
 ;
-; ManagegroupsElement.php line: 423
-managegroups_element_activate = ""
+; PageoptionsElement.php line: 262
+pageoptions_element_subsearch_link = ""
 ;
-; ManagegroupsElement.php line: 429
-managegroups_element_ban = ""
+; PageoptionsElement.php line: 271
+pageoptions_element_signin_link = ""
 ;
-; ManagegroupsElement.php line: 435
-managegroups_element_unban = ""
+; PageoptionsElement.php line: 279
+pageoptions_element_cache_link = ""
 ;
-; ManagegroupsElement.php line: 443
-managegroups_element_delete = ""
+; PageoptionsElement.php line: 288
+pageoptions_element_similar_link = ""
 ;
-; ManagegroupsElement.php line: 471
-managegroups_element_filter = ""
+; PageoptionsElement.php line: 297
+pageoptions_element_in_link = ""
 ;
-; ManagegroupsElement.php line: 492
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 304
+pageoptions_element_ip_link = ""
 ;
-; ManagegroupsElement.php line: 503
-managegroups_element_save = ""
+; PageoptionsElement.php line: 313
+pageoptions_element_ranking_factors = ""
 ;
-; ManagegroupsElement.php line: 533
-managegroups_element_group_info = ""
+; PageoptionsElement.php line: 318
+pageoptions_element_title_weight = ""
 ;
-; ManagegroupsElement.php line: 534
-managegroups_element_invite_users_group = ""
+; PageoptionsElement.php line: 323
+pageoptions_element_description_weight = ""
 ;
-; ManagegroupsElement.php line: 546
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 328
+pageoptions_element_link_weight = ""
 ;
-; ManagegroupsElement.php line: 554
-managegroups_element_usernames = ""
+; PageoptionsElement.php line: 333
+pageoptions_element_results_grouping_options = ""
 ;
-; ManagegroupsElement.php line: 561
-managegroups_element_invite = ""
+; PageoptionsElement.php line: 338
+pageoptions_element_min_results_to_group = ""
 ;
-; ManagegroupsElement.php line: 580
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 344
+pageoptions_element_server_alpha = ""
 ;
-; ManagegroupsElement.php line: 581
-managegroups_element_transfer_group_owner = ""
+; PageoptionsElement.php line: 352
+pageoptions_element_test_page = ""
 ;
-; ManagegroupsElement.php line: 593
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 356
+pageoptions_element_page_type = ""
 ;
-; ManagegroupsElement.php line: 601
-managegroups_element_new_group_owner = ""
+; PageoptionsElement.php line: 372
+pageoptions_element_save_options = ""
 ;
-; ManagegroupsElement.php line: 608
-managegroups_element_change_owner = ""
+; PageoptionsElement.php line: 374
+pageoptions_element_run_tests = ""
 ;
-; ManagegroupsElement.php line: 627
-managegroups_element_discover_groups = ""
+; PageoptionsElement.php line: 380
+pageoptions_element_test_results = ""
 ;
-; ManagegroupsElement.php line: 631
-managegroups_element_search_group = ""
+; PageoptionsElement.php line: 383
+pageoptions_element_page_truncated = ""
 ;
-; ManagegroupsElement.php line: 633
-managegroups_element_addgroup_form = ""
+; PageoptionsElement.php line: 388
+pageoptions_element_after_process = ""
 ;
-; ManagegroupsElement.php line: 635
-managegroups_element_groupname = ""
+; PageoptionsElement.php line: 392
+pageoptions_element_after_rules = ""
 ;
-; ManagegroupsElement.php line: 636
-managegroups_element_groupowner = ""
+; PageoptionsElement.php line: 396
+pageoptions_element_extracted_words = ""
 ;
-; ManagegroupsElement.php line: 637
-managegroups_element_registertype = ""
+; PageoptionsElement.php line: 400
+pageoptions_element_extracted_metas = ""
 ;
-; ManagegroupsElement.php line: 639
-managegroups_element_memberaccess = ""
+; PageoptionsElement.php line: 417
+page_element_plugin_back = ""
 ;
-; ManagegroupsElement.php line: 641
-managegroups_element_post_lifetime = ""
+; PageoptionsElement.php line: 454
+pageoptions_element_run_tests = ""
 ;
-; ManagelocalesElement.php line: 62
-managelocales_element_locale_list = ""
+; PageoptionsElement.php line: 458
+pageoptions_element_save_options = ""
 ;
-; ManagelocalesElement.php line: 72
-managelocales_element_localename = ""
+; ResultseditorElement.php line: 52
+resultseditor_element_edit_page = ""
 ;
-; ManagelocalesElement.php line: 75
-managelocales_element_localetag = ""
+; ResultseditorElement.php line: 57
+resultseditor_element_edited_pages = ""
 ;
-; ManagelocalesElement.php line: 76
-managelocales_element_writingmode = ""
+; ResultseditorElement.php line: 66
+resultseditor_element_url_list = ""
 ;
-; ManagelocalesElement.php line: 77
-managelocales_element_enabled = ""
+; ResultseditorElement.php line: 68
+resultseditor_element_load_page = ""
 ;
-; ManagelocalesElement.php line: 81
-managelocales_element_percenttranslated = ""
+; ResultseditorElement.php line: 81
+resultseditor_element_page_url = ""
 ;
-; ManagelocalesElement.php line: 82
-managelocales_element_actions = ""
+; ResultseditorElement.php line: 87
+resultseditor_element_page_title = ""
 ;
-; ManagelocalesElement.php line: 102
-managelocales_element_true = ""
+; ResultseditorElement.php line: 93
+resultseditor_element_description = ""
 ;
-; ManagelocalesElement.php line: 103
-managelocales_element_false = ""
+; ResultseditorElement.php line: 97
+resultseditor_element_reset = ""
 ;
-; ManagelocalesElement.php line: 110
-managelocales_element_edit = ""
+; ResultseditorElement.php line: 99
+resultseditor_element_save_page = ""
 ;
-; ManagelocalesElement.php line: 115
-confirm_delete_operation = ""
+; ResultseditorElement.php line: 102
+resultseditor_element_filter_websites = ""
 ;
-; ManagelocalesElement.php line: 116
-managelocales_element_delete = ""
+; ResultseditorElement.php line: 114
+resultseditor_element_sites_to_filter = ""
 ;
-; ManagelocalesElement.php line: 137
-manageloecales_element_add_locale_form = ""
+; ResultseditorElement.php line: 119
+resultseditor_element_save_filter = ""
 ;
-; ManagelocalesElement.php line: 138
-managelocales_element_locale_info = ""
+; SearchsourcesElement.php line: 62
+searchsources_element_addsource_form = ""
 ;
-; ManagelocalesElement.php line: 140
-managelocales_element_add_locale = ""
+; SearchsourcesElement.php line: 63
+searchsources_element_edit_media_source = ""
 ;
-; ManagelocalesElement.php line: 161
-managelocales_element_localenamelabel = ""
+; SearchsourcesElement.php line: 67
+searchsources_element_add_media_source = ""
 ;
-; ManagelocalesElement.php line: 174
-managelocales_element_localetaglabel = ""
+; SearchsourcesElement.php line: 90
+searchsources_element_sourcetype = ""
 ;
-; ManagelocalesElement.php line: 180
-managelocales_element_writingmodelabel = ""
+; SearchsourcesElement.php line: 95
+searchsources_element_sourcename = ""
 ;
-; ManagelocalesElement.php line: 190
-managelocales_element_localeenabled = ""
+; SearchsourcesElement.php line: 104
+searchsources_element_url = ""
 ;
-; ManagelocalesElement.php line: 201
-managelocales_element_submit = "完成"
+; SearchsourcesElement.php line: 110
+searchsources_element_locale_tag = ""
 ;
-; ManagelocalesElement.php line: 219
-managelocales_element_search_locales = ""
+; SearchsourcesElement.php line: 115
+searchsources_element_thumbnail = ""
 ;
-; ManagelocalesElement.php line: 220
-managelocales_element_addlocale_form = ""
+; SearchsourcesElement.php line: 125
+searchsources_element_feed_instruct = ""
 ;
-; ManagelocalesElement.php line: 222
-managelocales_element_localename = ""
+; SearchsourcesElement.php line: 128
+searchsources_element_channelpath = ""
 ;
-; ManagelocalesElement.php line: 223
-managelocales_element_localetag = ""
+; SearchsourcesElement.php line: 134
+searchsources_element_itempath = ""
 ;
-; ManagelocalesElement.php line: 224
-managelocales_element_writingmode = ""
+; SearchsourcesElement.php line: 140
+searchsources_element_titlepath = ""
 ;
-; ManagelocalesElement.php line: 225
-managelocales_element_enabled = ""
+; SearchsourcesElement.php line: 146
+searchsources_element_descpath = ""
 ;
-; ManagelocalesElement.php line: 231
-managelocales_element_true = ""
+; SearchsourcesElement.php line: 152
+searchsources_element_linkpath = ""
 ;
-; ManagelocalesElement.php line: 232
-managelocales_element_false = ""
+; SearchsourcesElement.php line: 158
+searchsources_element_image_xpath = ""
 ;
-; ManagemachinesElement.php line: 56
-managemachines_element_add_machine = ""
+; SearchsourcesElement.php line: 164
+searchsources_element_submit = ""
 ;
-; ManagemachinesElement.php line: 67
-managemachines_element_machine_name = ""
+; SearchsourcesElement.php line: 170
+searchsources_element_media_sources = ""
 ;
-; ManagemachinesElement.php line: 72
-managemachines_element_machineurl = ""
+; SearchsourcesElement.php line: 193
+searchsources_element_medianame = ""
 ;
-; ManagemachinesElement.php line: 76
-managemachines_element_is_mirror = ""
+; SearchsourcesElement.php line: 194
+searchsources_element_mediatype = ""
 ;
-; ManagemachinesElement.php line: 81
-managemachines_element_parent_name = ""
+; SearchsourcesElement.php line: 196
+searchsources_element_mediaurls = ""
 ;
-; ManagemachinesElement.php line: 87
-managemachines_element_has_queueserver = ""
+; SearchsourcesElement.php line: 199
+searchsources_element_action = ""
 ;
-; ManagemachinesElement.php line: 91
-managemachines_element_num_fetchers = ""
+; SearchsourcesElement.php line: 227
+searchsources_element_editmedia = ""
 ;
-; ManagemachinesElement.php line: 96
-managemachines_element_submit = ""
+; SearchsourcesElement.php line: 230
+confirm_delete_operation = ""
 ;
-; ManagemachinesElement.php line: 101
-managemachines_element_machine_info = ""
+; SearchsourcesElement.php line: 233
+searchsources_element_deletemedia = ""
 ;
-; ManagemachinesElement.php line: 105
-managemachines_element_awaiting_status = ""
+; SearchsourcesElement.php line: 242
+searchsources_element_addsearch_form = ""
 ;
-; ManagemachinesElement.php line: 123
-managemachines_element_no_longer_update = ""
+; SearchsourcesElement.php line: 244
+searchsources_element_edit_subsearch = ""
 ;
-; ManagerolesElement.php line: 59
-manageroles_element_roles = ""
+; SearchsourcesElement.php line: 249
+searchsources_element_add_subsearch = ""
 ;
-; ManagerolesElement.php line: 67
-manageroles_element_rolename = "使用者名稱"
+; SearchsourcesElement.php line: 264
+searchsources_element_foldername = ""
 ;
-; ManagerolesElement.php line: 68
-manageroles_element_actions = ""
+; SearchsourcesElement.php line: 274
+searchsources_element_indexsource = ""
 ;
-; ManagerolesElement.php line: 94
-manageroles_element_edit = ""
+; SearchsourcesElement.php line: 280
+searchsources_element_per_page = ""
 ;
-; ManagerolesElement.php line: 99
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 286
+searchsources_element_submit = ""
 ;
-; ManagerolesElement.php line: 103
-confirm_delete_operation = ""
+; SearchsourcesElement.php line: 292
+searchsources_element_subsearches = ""
 ;
-; ManagerolesElement.php line: 106
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 302
+searchsources_element_dirname = ""
 ;
-; ManagerolesElement.php line: 140
-manageroles_element_addrole_form = ""
+; SearchsourcesElement.php line: 303
+searchsources_element_index = ""
 ;
-; ManagerolesElement.php line: 141
-manageroles_element_role_info = ""
+; SearchsourcesElement.php line: 306
+searchsources_element_localestring = ""
 ;
-; ManagerolesElement.php line: 143
-manageroles_element_add_role = "新增使用者"
+; SearchsourcesElement.php line: 307
+searchsources_element_perpage = ""
 ;
-; ManagerolesElement.php line: 154
-manageroles_element_rolename = "使用者名稱"
+; SearchsourcesElement.php line: 311
+searchsources_element_actions = ""
 ;
-; ManagerolesElement.php line: 167
-manageroles_element_role_activities = ""
+; SearchsourcesElement.php line: 327
+searchsources_element_editsource = ""
 ;
-; ManagerolesElement.php line: 175
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 333
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 183
-manageroles_element_delete = ""
+; SearchsourcesElement.php line: 335
+searchsources_element_localize = ""
 ;
-; ManagerolesElement.php line: 203
-manageroles_element_save = ""
+; SearchsourcesElement.php line: 342
+searchsources_element_deletesubsearch = ""
 ;
-; ManagerolesElement.php line: 220
-manageroles_element_search_role = ""
+; SecurityElement.php line: 58
+security_element_auth_captcha = ""
 ;
-; ManagerolesElement.php line: 221
-manageroles_element_addrole_form = ""
+; SecurityElement.php line: 69
+security_element_authentication_type = ""
 ;
-; ManagerolesElement.php line: 223
-manageroles_element_rolename = "使用者名稱"
+; SecurityElement.php line: 81
+security_element_zero_unavailable = ""
 ;
-; ManageusersElement.php line: 59
-manageusers_element_users = ""
+; SecurityElement.php line: 90
+security_element_captcha_type = ""
 ;
-; ManageusersElement.php line: 68
-manageusers_element_username = "使用者名稱"
+; SecurityElement.php line: 103
+security_element_save = ""
 ;
-; ManageusersElement.php line: 70
-manageusers_element_firstname = ""
+; SecurityElement.php line: 107
+security_element_captcha_recovery_questions = ""
 ;
-; ManageusersElement.php line: 71
-manageusers_element_lastname = ""
+; SecurityElement.php line: 113
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 72
-manageusers_element_email = ""
+; SecurityElement.php line: 118
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 73
-manageusers_element_groups = ""
+; SecurityElement.php line: 123
+security_element_edit_recovery = ""
 ;
-; ManageusersElement.php line: 75
-manageusers_element_status = ""
+; SecurityElement.php line: 126
+security_element_edit_captcha = ""
 ;
-; ManageusersElement.php line: 76
-manageusers_element_actions = ""
+; ServersettingsElement.php line: 59
+serversettings_element_server_settings = ""
 ;
-; ManageusersElement.php line: 141
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 62
+serversettings_element_name_server = ""
 ;
-; ManageusersElement.php line: 145
-manageusers_element_edit = ""
+; ServersettingsElement.php line: 66
+serversettings_element_name_server_key = ""
 ;
-; ManageusersElement.php line: 151
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 73
+serversettings_element_name_server_url = ""
 ;
-; ManageusersElement.php line: 155
-confirm_delete_operation = ""
+; ServersettingsElement.php line: 81
+serversettings_element_use_memcache = ""
 ;
-; ManageusersElement.php line: 158
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 89
+serversettings_element_memcache_servers = ""
 ;
-; ManageusersElement.php line: 200
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 100
+serversettings_element_use_filecache = ""
 ;
-; ManageusersElement.php line: 201
-manageusers_element_user_info = ""
+; ServersettingsElement.php line: 110
+configure_element_database_setup = ""
 ;
-; ManageusersElement.php line: 203
-manageusers_element_add_user = ""
+; ServersettingsElement.php line: 115
+serversettings_element_database_system = ""
 ;
-; ManageusersElement.php line: 228
-manageusers_element_username = "使用者名稱"
+; ServersettingsElement.php line: 123
+serversettings_element_databasename = ""
 ;
-; ManageusersElement.php line: 238
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 130
+serversettings_element_databasehost = ""
 ;
-; ManageusersElement.php line: 244
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 137
+serversettings_element_databaseuser = ""
 ;
-; ManageusersElement.php line: 250
-manageusers_element_email = ""
+; ServersettingsElement.php line: 145
+serversettings_element_databasepassword = ""
 ;
-; ManageusersElement.php line: 257
-manageusers_element_status = ""
+; ServersettingsElement.php line: 158
+serversettings_element_account_registration = ""
 ;
-; ManageusersElement.php line: 274
-manageusers_element_roles = ""
+; ServersettingsElement.php line: 169
+serversettings_element_mail_sender = ""
 ;
-; ManageusersElement.php line: 278
-manageusers_element_num_roles = ""
+; ServersettingsElement.php line: 175
+serversettings_element_send_media_updater = ""
 ;
-; ManageusersElement.php line: 293
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 185
+serversettings_element_use_php_mail = ""
 ;
-; ManageusersElement.php line: 303
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 192
+serversettings_element_mail_server = ""
 ;
-; ManageusersElement.php line: 344
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 198
+serversettings_element_mail_serverport = ""
 ;
-; ManageusersElement.php line: 357
-manageusers_element_add_role = ""
+; ServersettingsElement.php line: 205
+serversettings_element_mail_username = ""
 ;
-; ManageusersElement.php line: 367
-manageusers_element_groups = ""
+; ServersettingsElement.php line: 211
+serversettings_element_mail_password = ""
 ;
-; ManageusersElement.php line: 371
-manageusers_element_num_groups = ""
+; ServersettingsElement.php line: 218
+serversettings_element_mail_security = ""
 ;
-; ManageusersElement.php line: 392
-manageusers_element_delete = ""
+; ServersettingsElement.php line: 228
+serversettings_element_proxy_title = ""
 ;
-; ManageusersElement.php line: 431
-manageusers_element_filter = ""
+; ServersettingsElement.php line: 232
+serversettings_element_tor_proxy = ""
 ;
-; ManageusersElement.php line: 443
-manageusers_element_add_group = ""
+; ServersettingsElement.php line: 238
+serversettings_element_use_proxy_servers = ""
 ;
-; ManageusersElement.php line: 456
-manageusers_element_password = "密碼"
+; ServersettingsElement.php line: 247
+serversettings_element_proxy_servers = ""
 ;
-; ManageusersElement.php line: 462
-manageusers_element_retype_password = "再次輸入密碼"
+; ServersettingsElement.php line: 256
+serversettings_element_adserver_configuration = ""
 ;
-; ManageusersElement.php line: 469
-manageusers_element_save = ""
+; ServersettingsElement.php line: 261
+serversettings_element_advertising_source = ""
 ;
-; ManageusersElement.php line: 496
-manageusers_element_search_user = ""
+; ServersettingsElement.php line: 273
+serversettings_element_no_payment_processing = ""
 ;
-; ManageusersElement.php line: 497
-manageusers_element_adduser_form = ""
+; ServersettingsElement.php line: 275
+serversettings_element_purchase_processing = ""
 ;
-; ManageusersElement.php line: 499
-manageusers_element_username = "使用者名稱"
+; ServersettingsElement.php line: 282
+serversettings_element_ad_location = ""
 ;
-; ManageusersElement.php line: 500
-manageusers_element_firstname = ""
+; ServersettingsElement.php line: 287
+serversettings_element_top = ""
 ;
-; ManageusersElement.php line: 501
-manageusers_element_lastname = ""
+; ServersettingsElement.php line: 292
+serversettings_element_side = ""
 ;
-; ManageusersElement.php line: 502
-manageusers_element_email = ""
+; ServersettingsElement.php line: 297
+serversettings_element_both = ""
 ;
-; ManageusersElement.php line: 503
-manageusers_element_status = ""
+; ServersettingsElement.php line: 302
+serversettings_element_none = ""
 ;
-; MixcrawlsElement.php line: 65
-mixcrawls_element_available_mixes = ""
+; ServersettingsElement.php line: 305
+serversettings_element_global_adscript = ""
 ;
-; MixcrawlsElement.php line: 72
-mixcrawls_view_name = ""
+; ServersettingsElement.php line: 312
+serversettings_element_top_adscript = ""
 ;
-; MixcrawlsElement.php line: 74
-mixcrawls_view_definition = ""
+; ServersettingsElement.php line: 319
+serversettings_element_side_adscript = ""
 ;
-; MixcrawlsElement.php line: 78
-mixcrawls_view_actions = ""
+; ServersettingsElement.php line: 329
+serversettings_element_save = ""
 ;
-; MixcrawlsElement.php line: 112
-mixcrawls_view_no_components = ""
+; SigninElement.php line: 73
+signin_element_settings = "設定"
 ;
-; MixcrawlsElement.php line: 118
-mixcrawls_view_share = ""
+; SigninElement.php line: 77
+signin_element_signin = "登入"
 ;
-; MixcrawlsElement.php line: 120
-mixcrawls_view_edit = ""
+; SigninElement.php line: 81
+signin_element_signout = "登出"
 ;
-; MixcrawlsElement.php line: 125
-mixcrawls_set_index = ""
+; SubsearchElement.php line: 69
+subsearch_element_more = ""
 ;
-; MixcrawlsElement.php line: 128
-mixcrawl_search_index = ""
+; WikiElement.php line: 121
+wiki_view_back = ""
 ;
-; MixcrawlsElement.php line: 134
-confirm_delete_operation = ""
+; WikiElement.php line: 139
+groupfeed_element_feed = ""
 ;
-; MixcrawlsElement.php line: 136
-mixcrawls_view_delete = ""
+; WikiElement.php line: 140
+wiki_view_wiki = ""
 ;
-; MixcrawlsElement.php line: 146
-mixcrawls_view_back = ""
+; WikiElement.php line: 144
+wiki_view_page = ""
 ;
-; MixcrawlsElement.php line: 147
-mixcrawls_element_share_mix_group = ""
+; WikiElement.php line: 148
+wiki_view_read = ""
 ;
-; MixcrawlsElement.php line: 157
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 149
+wiki_view_edit = ""
 ;
-; MixcrawlsElement.php line: 163
-mixcrawls_element_group = ""
+; WikiElement.php line: 152
+wiki_view_pages = ""
 ;
-; MixcrawlsElement.php line: 169
-mixcrawls_element_share = ""
+; WikiElement.php line: 237
+wiki_element_redirect_to = ""
 ;
-; MixcrawlsElement.php line: 193
-mixcrawls_element_make_mix = ""
+; WikiElement.php line: 245
+wiki_view_page_no_exist = ""
 ;
-; MixcrawlsElement.php line: 203
-mixcrawls_element_mix_name = ""
+; WikiElement.php line: 246
+wiki_view_create_edit = ""
 ;
-; MixcrawlsElement.php line: 208
-mixcrawls_element_create_button = ""
+; WikiElement.php line: 247
+wiki_view_use_form_below = ""
 ;
-; MixcrawlsElement.php line: 224
-mixcrawls_element_search_mix = ""
+; WikiElement.php line: 259
+wiki_element_submit = ""
 ;
-; MixcrawlsElement.php line: 225
-mixcrawls_element_createmix_form = ""
+; WikiElement.php line: 265
+wiki_view_syntax_summary = ""
 ;
-; MixcrawlsElement.php line: 227
-mixcrawls_element_mixname = ""
+; WikiElement.php line: 268
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 82
-moreoptions_element_other_searches = ""
+; WikiElement.php line: 270
+wiki_view_signin_edit = ""
 ;
-; MoreoptionsElement.php line: 119
-moreoptions_element_previous = ""
+; WikiElement.php line: 272
+wiki_view_page_no_exist = ""
 ;
-; MoreoptionsElement.php line: 125
-moreoptions_element_next = ""
+; WikiElement.php line: 302
+wiki_element_history = ""
 ;
-; MoreoptionsElement.php line: 137
-moreoptions_element_my_accounts = ""
+; WikiElement.php line: 306
+wiki_element_discuss = ""
 ;
-; MoreoptionsElement.php line: 142
-signin_element_settings = "設定"
+; WikiElement.php line: 342
+wiki_element_locale_name = ""
 ;
-; MoreoptionsElement.php line: 151
-signin_element_signin = "登入"
+; WikiElement.php line: 346
+wiki_element_page = ""
 ;
-; MoreoptionsElement.php line: 154
-signin_element_admin = "管理員"
+; WikiElement.php line: 349
+configure_element_toggle_page_settings = ""
 ;
-; MoreoptionsElement.php line: 167
-signin_view_create_account = ""
+; WikiElement.php line: 353
+wiki_element_page_type = ""
 ;
-; MoreoptionsElement.php line: 186
-moreoptions_element_suggest = ""
+; WikiElement.php line: 361
+wiki_element_page_alias = ""
 ;
-; MoreoptionsElement.php line: 188
-moreoptions_element_wiki_pages = ""
+; WikiElement.php line: 369
+wiki_element_page_border = ""
 ;
-; MoreoptionsElement.php line: 199
-moreoptions_element_tools = ""
+; WikiElement.php line: 376
+wiki_element_table_of_contents = ""
 ;
-; PageoptionsElement.php line: 59
-pageoptions_element_crawl_time = ""
+; WikiElement.php line: 385
+wiki_element_title = ""
 ;
-; PageoptionsElement.php line: 64
-pageoptions_element_search_time = ""
+; WikiElement.php line: 391
+wiki_element_meta_author = ""
 ;
-; PageoptionsElement.php line: 69
-pageoptions_element_test_options = ""
+; WikiElement.php line: 397
+wiki_element_meta_robots = ""
 ;
-; PageoptionsElement.php line: 81
-pageoptions_element_load_options = ""
+; WikiElement.php line: 404
+wiki_element_meta_description = ""
 ;
-; PageoptionsElement.php line: 86
-pageoptions_element_page_range = ""
+; WikiElement.php line: 411
+wiki_element_page_header = ""
 ;
-; PageoptionsElement.php line: 92
-pageoptions_element_summarizer = ""
+; WikiElement.php line: 417
+wiki_element_page_footer = ""
 ;
-; PageoptionsElement.php line: 101
-pageoptions_element_max_description = ""
+; WikiElement.php line: 440
+wiki_element_archive_info = ""
 ;
-; PageoptionsElement.php line: 107
-pageoptions_element_save_cache = ""
+; WikiElement.php line: 443
+wiki_element_edit_reason = ""
 ;
-; PageoptionsElement.php line: 117
-pageoptions_element_allow_recrawl = ""
+; WikiElement.php line: 450
+wiki_element_savebutton = ""
 ;
-; PageoptionsElement.php line: 124
-pageoptions_element_file_types = ""
+; WikiElement.php line: 454
+wiki_element_media_list = ""
 ;
-; PageoptionsElement.php line: 153
-pageoptions_element_classifiers_rankers = ""
+; WikiElement.php line: 455
+wiki_element_ml_description = ""
 ;
-; PageoptionsElement.php line: 169
-pageoptions_element_use_classify = ""
+; WikiElement.php line: 458
+wiki_view_page_resources = ""
 ;
-; PageoptionsElement.php line: 170
-pageoptions_element_use_rank = ""
+; WikiElement.php line: 493
+wiki_view_upload = ""
 ;
-; PageoptionsElement.php line: 197
-pageoptions_element_no_classifiers = ""
+; WikiElement.php line: 497
+wiki_element_resources_info = ""
 ;
-; PageoptionsElement.php line: 200
-pageoptions_element_indexing_plugins = ""
+; WikiElement.php line: 512
+wiki_element_rename_failed = ""
 ;
-; PageoptionsElement.php line: 206
-pageoptions_element_plugin = ""
+; WikiElement.php line: 578
+wiki_element_rename = ""
 ;
-; PageoptionsElement.php line: 207
-pageoptions_element_plugin_include = ""
+; WikiElement.php line: 582
+wiki_element_add_to_page = ""
 ;
-; PageoptionsElement.php line: 223
-pageoptions_element_configure = ""
+; WikiElement.php line: 602
+wiki_element_no_resources = ""
 ;
-; PageoptionsElement.php line: 235
-pageoptions_element_no_compatible_plugins = ""
+; WikiElement.php line: 624
+wiki_view_wiki_page_list = ""
 ;
-; PageoptionsElement.php line: 238
-pageoptions_element_page_rules = ""
+; WikiElement.php line: 637
+wiki_view_filter_or_create = ""
 ;
-; PageoptionsElement.php line: 247
-page_element_search_page = ""
+; WikiElement.php line: 639
+wiki_element_go = ""
 ;
-; PageoptionsElement.php line: 254
-pageoptions_element_wd_suggest = ""
+; WikiElement.php line: 644
+wiki_view_create_page = ""
 ;
-; PageoptionsElement.php line: 262
-pageoptions_element_subsearch_link = ""
+; WikiElement.php line: 655
+wiki_element_redirect_to = ""
 ;
-; PageoptionsElement.php line: 271
-pageoptions_element_signin_link = ""
+; WikiElement.php line: 677
+wiki_view_no_pages = ""
 ;
-; PageoptionsElement.php line: 279
-pageoptions_element_cache_link = ""
+; WikiElement.php line: 700
+wiki_view_back = ""
 ;
-; PageoptionsElement.php line: 288
-pageoptions_element_similar_link = ""
+; WikiElement.php line: 716
+wiki_view_difference = ""
 ;
-; PageoptionsElement.php line: 297
-pageoptions_element_in_link = ""
+; WikiElement.php line: 722
+wiki_view_go = ""
 ;
-; PageoptionsElement.php line: 304
-pageoptions_element_ip_link = ""
+; WikiElement.php line: 741
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 313
-pageoptions_element_ranking_factors = ""
+; WikiElement.php line: 743
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 318
-pageoptions_element_title_weight = ""
+; WikiElement.php line: 747
+wiki_view_diff_first = ""
 ;
-; PageoptionsElement.php line: 323
-pageoptions_element_description_weight = ""
+; WikiElement.php line: 748
+wiki_view_diff_second = ""
 ;
-; PageoptionsElement.php line: 328
-pageoptions_element_link_weight = ""
+; WikiElement.php line: 754
+wiki_view_edited_by = ""
 ;
-; PageoptionsElement.php line: 333
-pageoptions_element_results_grouping_options = ""
+; WikiElement.php line: 758
+wiki_view_page_len = ""
 ;
-; PageoptionsElement.php line: 338
-pageoptions_element_min_results_to_group = ""
+; WikiElement.php line: 760
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 344
-pageoptions_element_server_alpha = ""
+; WikiElement.php line: 763
+wiki_view_revert = ""
 ;
-; PageoptionsElement.php line: 352
-pageoptions_element_test_page = ""
+; GroupView.php line: 82
+groupfeed_element_wiki_thread = ""
 ;
-; PageoptionsElement.php line: 356
-pageoptions_element_page_type = ""
+; GroupView.php line: 96
+group_view_feed = ""
 ;
-; PageoptionsElement.php line: 372
-pageoptions_element_save_options = ""
+; GroupView.php line: 104
+group_view_wiki = ""
 ;
-; PageoptionsElement.php line: 374
-pageoptions_element_run_tests = ""
+; GroupView.php line: 106
+group_view_user = ""
 ;
-; PageoptionsElement.php line: 380
-pageoptions_element_test_results = ""
+; GroupView.php line: 109
+group_view_myfeeds = ""
 ;
-; PageoptionsElement.php line: 383
-pageoptions_element_page_truncated = ""
+; GroupView.php line: 145
+adminview_auto_logout_one_minute = ""
 ;
-; PageoptionsElement.php line: 388
-pageoptions_element_after_process = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/helpers
 ;
-; PageoptionsElement.php line: 392
-pageoptions_element_after_rules = ""
+; FeedsHelper.php line: 70
+feeds_helper_view_feed_results = ""
 ;
-; PageoptionsElement.php line: 396
-pageoptions_element_extracted_words = ""
+; FeedsHelper.php line: 164
+feeds_helper_view_onehour = "1小时前"
 ;
-; PageoptionsElement.php line: 400
-pageoptions_element_extracted_metas = ""
+; FeedsHelper.php line: 169
+feeds_helper_view_minsecs = ""
 ;
-; PageoptionsElement.php line: 417
-page_element_plugin_back = ""
+; FeedsHelper.php line: 174
+feeds_helper_view_hourdate = "%s小时前"
 ;
-; PageoptionsElement.php line: 454
-pageoptions_element_run_tests = ""
+; FileuploadHelper.php line: 72
+fileupload_helper_drag_textarea = ""
 ;
-; PageoptionsElement.php line: 458
-pageoptions_element_save_options = ""
+; FileuploadHelper.php line: 73
+fileupload_helper_click_textarea = ""
 ;
-; ResultseditorElement.php line: 52
-resultseditor_element_edit_page = ""
+; FileuploadHelper.php line: 75
+fileupload_helper_drag_above = ""
 ;
-; ResultseditorElement.php line: 57
-resultseditor_element_edited_pages = ""
+; FileuploadHelper.php line: 76
+fileupload_helper_click_upload = ""
 ;
-; ResultseditorElement.php line: 66
-resultseditor_element_url_list = ""
+; FileuploadHelper.php line: 117
+basic_js_invalid_filetype = ""
 ;
-; ResultseditorElement.php line: 68
-resultseditor_element_load_page = ""
+; FileuploadHelper.php line: 119
+basic_js_file_too_big = ""
 ;
-; ResultseditorElement.php line: 81
-resultseditor_element_page_url = ""
+; FileuploadHelper.php line: 121
+basic_js_upload_progress = ""
 ;
-; ResultseditorElement.php line: 87
-resultseditor_element_page_title = ""
+; FileuploadHelper.php line: 123
+basic_js_progress_meter_disabled = ""
 ;
-; ResultseditorElement.php line: 93
-resultseditor_element_description = ""
+; FileuploadHelper.php line: 125
+basic_js_upload_error = ""
 ;
-; ResultseditorElement.php line: 97
-resultseditor_element_reset = ""
+; FileuploadHelper.php line: 127
+basic_js_upload_cancelled = ""
 ;
-; ResultseditorElement.php line: 99
-resultseditor_element_save_page = ""
+; FileuploadHelper.php line: 129
+basic_js_too_many_files = ""
 ;
-; ResultseditorElement.php line: 102
-resultseditor_element_filter_websites = ""
+; HelpbuttonHelper.php line: 106
+wiki_question_mark = ""
 ;
-; ResultseditorElement.php line: 114
-resultseditor_element_sites_to_filter = ""
+; HelpbuttonHelper.php line: 138
+wiki_view_edit = ""
 ;
-; ResultseditorElement.php line: 119
-resultseditor_element_save_filter = ""
+; HelpbuttonHelper.php line: 139
+wiki_view_not_available = ""
 ;
-; SearchsourcesElement.php line: 62
-searchsources_element_addsource_form = ""
+; HelpbuttonHelper.php line: 141
+wiki_view_create_edit = ""
 ;
-; SearchsourcesElement.php line: 63
-searchsources_element_edit_media_source = ""
+; HelpbuttonHelper.php line: 143
+wiki_view_page_no_exist = ""
 ;
-; SearchsourcesElement.php line: 67
-searchsources_element_add_media_source = ""
+; HelpbuttonHelper.php line: 145
+wiki_view_read = ""
 ;
-; SearchsourcesElement.php line: 90
-searchsources_element_sourcetype = ""
+; ImagesHelper.php line: 55
+images_helper_view_image_results = ""
 ;
-; SearchsourcesElement.php line: 95
-searchsources_element_sourcename = ""
+; PaginationHelper.php line: 97
+pagination_helper_previous = "上一页"
 ;
-; SearchsourcesElement.php line: 104
-searchsources_element_url = ""
+; PaginationHelper.php line: 121
+pagination_helper_next = "下一页"
 ;
-; SearchsourcesElement.php line: 110
-searchsources_element_locale_tag = ""
+; PagingtableHelper.php line: 103
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 115
-searchsources_element_thumbnail = ""
+; PagingtableHelper.php line: 125
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 125
-searchsources_element_feed_instruct = ""
+; PagingtableHelper.php line: 138
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 128
-searchsources_element_channelpath = ""
+; PagingtableHelper.php line: 215
+pagingtable_helper_row_range = ""
 ;
-; SearchsourcesElement.php line: 134
-searchsources_element_itempath = ""
+; PagingtableHelper.php line: 233
+pagingtable_helper_show = ""
 ;
-; SearchsourcesElement.php line: 140
-searchsources_element_titlepath = ""
+; PagingtableHelper.php line: 241
+pagingtable_helper_search = ""
 ;
-; SearchsourcesElement.php line: 146
-searchsources_element_descpath = ""
+; SearchformHelper.php line: 119
+searchform_helper_any = ""
 ;
-; SearchsourcesElement.php line: 152
-searchsources_element_linkpath = ""
+; SearchformHelper.php line: 148
+searchform_helper_search = ""
 ;
-; SearchsourcesElement.php line: 158
-searchsources_element_image_xpath = ""
+; ToggleHelper.php line: 59
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 164
-searchsources_element_submit = ""
+; ToggleHelper.php line: 61
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 170
-searchsources_element_media_sources = ""
+; ToggleHelper.php line: 65
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 193
-searchsources_element_medianame = ""
+; ToggleHelper.php line: 67
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 194
-searchsources_element_mediatype = ""
+; ToggleHelper.php line: 71
+toggle_helper_on = ""
 ;
-; SearchsourcesElement.php line: 196
-searchsources_element_mediaurls = ""
+; ToggleHelper.php line: 73
+toggle_helper_off = ""
 ;
-; SearchsourcesElement.php line: 199
-searchsources_element_action = ""
+; /Applications/MAMP/htdocs/git/seekquarry/src/views/layouts
 ;
-; SearchsourcesElement.php line: 227
-searchsources_element_editmedia = ""
+; RssLayout.php line: 62
+rss_layout_title = ""
 ;
-; SearchsourcesElement.php line: 230
-confirm_delete_operation = ""
+; RssLayout.php line: 69
+rss_layout_description = ""
 ;
-; SearchsourcesElement.php line: 233
-searchsources_element_deletemedia = ""
+; WebLayout.php line: 63
+web_layout_title = "PHP 搜索引擎 - Yioop!"
 ;
-; SearchsourcesElement.php line: 242
-searchsources_element_addsearch_form = ""
+; WebLayout.php line: 73
+web_layout_description = ""
 ;
-; SearchsourcesElement.php line: 244
-searchsources_element_edit_subsearch = ""
+; WebLayout.php line: 75
+web_layout_site_author = ""
 ;
-; SearchsourcesElement.php line: 249
-searchsources_element_add_subsearch = ""
+; WebLayout.php line: 219
+web_layout_query_statistics = ""
 ;
-; SearchsourcesElement.php line: 264
-searchsources_element_foldername = ""
+; WebLayout.php line: 223
+web_layout_total_elapsed_time = ""
 ;
-; SearchsourcesElement.php line: 274
-searchsources_element_indexsource = ""
+; WebLayout.php line: 228
+web_layout_query_time = ""
 ;
-; SearchsourcesElement.php line: 280
-searchsources_element_per_page = ""
+; MachinestatusView.php line: 56
+machinestatus_view_no_monitored = ""
 ;
-; SearchsourcesElement.php line: 286
-searchsources_element_submit = ""
+; MachinestatusView.php line: 60
+machinestatus_media_updatemode = ""
 ;
-; SearchsourcesElement.php line: 292
-searchsources_element_subsearches = ""
+; MachinestatusView.php line: 73
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 302
-searchsources_element_dirname = ""
+; MachinestatusView.php line: 75
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 303
-searchsources_element_index = ""
+; MachinestatusView.php line: 78
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 306
-searchsources_element_localestring = ""
+; MachinestatusView.php line: 80
+machinestatus_distributed = ""
 ;
-; SearchsourcesElement.php line: 307
-searchsources_element_perpage = ""
+; MachinestatusView.php line: 85
+machinestatus_name_server = ""
 ;
-; SearchsourcesElement.php line: 311
-searchsources_element_actions = ""
+; MachinestatusView.php line: 94
+machinestatus_view_media_updater = ""
 ;
-; SearchsourcesElement.php line: 327
-searchsources_element_editsource = ""
+; MachinestatusView.php line: 96
+machinestatus_view_log = ""
 ;
-; SearchsourcesElement.php line: 333
-searchsources_element_localize = ""
+; MachinestatusView.php line: 125
+confirm_delete_operation = ""
 ;
-; SearchsourcesElement.php line: 335
-searchsources_element_localize = ""
+; MachinestatusView.php line: 126
+machinestatus_view_delete = ""
 ;
-; SearchsourcesElement.php line: 342
-searchsources_element_deletesubsearch = ""
+; MachinestatusView.php line: 148
+machinestatus_view_not_configured = ""
 ;
-; SecurityElement.php line: 58
-security_element_auth_captcha = ""
+; MachinestatusView.php line: 158
+machinestatus_view_mirrors = ""
 ;
-; SecurityElement.php line: 69
-security_element_authentication_type = ""
+; MachinestatusView.php line: 161
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 81
-security_element_zero_unavailable = ""
+; MachinestatusView.php line: 176
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 90
-security_element_captcha_type = ""
+; MachinestatusView.php line: 179
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 103
-security_element_save = ""
+; MachinestatusView.php line: 191
+machinestatus_view_queue_server = ""
 ;
-; SecurityElement.php line: 107
-security_element_captcha_recovery_questions = ""
+; MachinestatusView.php line: 193
+machinestatus_view_no_queue_server = ""
 ;
-; SecurityElement.php line: 113
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 204
+machinestatus_view_media_updater = ""
 ;
-; SecurityElement.php line: 118
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 207
+machinestatus_view_log = ""
 ;
-; SecurityElement.php line: 123
-security_element_edit_recovery = ""
+; MachinestatusView.php line: 229
+machinestatus_view_no_fetchers = ""
 ;
-; SecurityElement.php line: 126
-security_element_edit_captcha = ""
+; MachinestatusView.php line: 241
+machinestatus_view_fetchers = ""
 ;
-; ServersettingsElement.php line: 59
-serversettings_element_server_settings = ""
+; MachinestatusView.php line: 248
+machinestatus_view_log = ""
 ;
-; ServersettingsElement.php line: 62
-serversettings_element_name_server = ""
+; NocacheView.php line: 54
+nocache_view_no_cache = ""
 ;
-; ServersettingsElement.php line: 66
-serversettings_element_name_server_key = ""
+; NocacheView.php line: 59
+nocache_view_summary_contents = ""
 ;
-; ServersettingsElement.php line: 73
-serversettings_element_name_server_url = ""
+; RecoverView.php line: 71
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 81
-serversettings_element_use_memcache = ""
+; RecoverView.php line: 104
+register_view_new_password = ""
 ;
-; ServersettingsElement.php line: 89
-serversettings_element_memcache_servers = ""
+; RecoverView.php line: 116
+register_view_retypepassword = ""
 ;
-; ServersettingsElement.php line: 100
-serversettings_element_use_filecache = ""
+; RecoverView.php line: 131
+recover_view_username = ""
 ;
-; ServersettingsElement.php line: 110
-configure_element_database_setup = ""
+; RecoverView.php line: 146
+register_view_account_recovery = ""
 ;
-; ServersettingsElement.php line: 115
-serversettings_element_database_system = ""
+; RecoverView.php line: 153
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 123
-serversettings_element_databasename = ""
+; RecoverView.php line: 185
+register_view_human_check = ""
 ;
-; ServersettingsElement.php line: 130
-serversettings_element_databasehost = ""
+; RecoverView.php line: 202
+recover_view_recover_password = ""
 ;
-; ServersettingsElement.php line: 137
-serversettings_element_databaseuser = ""
+; RecoverView.php line: 211
+recover_view_return = ""
 ;
-; ServersettingsElement.php line: 145
-serversettings_element_databasepassword = ""
+; RegisterView.php line: 76
+register_view_question0_most = ""
 ;
-; ServersettingsElement.php line: 158
-serversettings_element_account_registration = ""
+; RegisterView.php line: 77
+register_view_question0_least = ""
 ;
-; ServersettingsElement.php line: 169
-serversettings_element_mail_sender = ""
+; RegisterView.php line: 78
+register_view_question0_choices = ""
 ;
-; ServersettingsElement.php line: 175
-serversettings_element_send_media_updater = ""
+; RegisterView.php line: 79
+register_view_question1_most = ""
 ;
-; ServersettingsElement.php line: 185
-serversettings_element_use_php_mail = ""
+; RegisterView.php line: 80
+register_view_question1_least = ""
 ;
-; ServersettingsElement.php line: 192
-serversettings_element_mail_server = ""
+; RegisterView.php line: 81
+register_view_question1_choices = ""
 ;
-; ServersettingsElement.php line: 198
-serversettings_element_mail_serverport = ""
+; RegisterView.php line: 82
+register_view_question2_most = ""
 ;
-; ServersettingsElement.php line: 205
-serversettings_element_mail_username = ""
+; RegisterView.php line: 83
+register_view_question2_least = ""
 ;
-; ServersettingsElement.php line: 211
-serversettings_element_mail_password = ""
+; RegisterView.php line: 84
+register_view_question2_choices = ""
 ;
-; ServersettingsElement.php line: 218
-serversettings_element_mail_security = ""
+; RegisterView.php line: 85
+register_view_question3_most = ""
 ;
-; ServersettingsElement.php line: 228
-serversettings_element_proxy_title = ""
+; RegisterView.php line: 86
+register_view_question3_least = ""
 ;
-; ServersettingsElement.php line: 232
-serversettings_element_tor_proxy = ""
+; RegisterView.php line: 87
+register_view_question3_choices = ""
 ;
-; ServersettingsElement.php line: 238
-serversettings_element_use_proxy_servers = ""
+; RegisterView.php line: 88
+register_view_question4_most = ""
 ;
-; ServersettingsElement.php line: 247
-serversettings_element_proxy_servers = ""
+; RegisterView.php line: 89
+register_view_question4_least = ""
 ;
-; ServersettingsElement.php line: 256
-serversettings_element_adserver_configuration = ""
+; RegisterView.php line: 90
+register_view_question4_choices = ""
 ;
-; ServersettingsElement.php line: 261
-serversettings_element_advertising_source = ""
+; RegisterView.php line: 91
+register_view_question5_most = ""
 ;
-; ServersettingsElement.php line: 273
-serversettings_element_no_payment_processing = ""
+; RegisterView.php line: 92
+register_view_question5_least = ""
 ;
-; ServersettingsElement.php line: 275
-serversettings_element_purchase_processing = ""
+; RegisterView.php line: 93
+register_view_question5_choices = ""
 ;
-; ServersettingsElement.php line: 282
-serversettings_element_ad_location = ""
+; RegisterView.php line: 94
+register_view_question6_most = ""
 ;
-; ServersettingsElement.php line: 287
-serversettings_element_top = ""
+; RegisterView.php line: 95
+register_view_question6_least = ""
 ;
-; ServersettingsElement.php line: 292
-serversettings_element_side = ""
+; RegisterView.php line: 96
+register_view_question6_choices = ""
 ;
-; ServersettingsElement.php line: 297
-serversettings_element_both = ""
+; RegisterView.php line: 97
+register_view_question7_most = ""
 ;
-; ServersettingsElement.php line: 302
-serversettings_element_none = ""
+; RegisterView.php line: 98
+register_view_question7_least = ""
 ;
-; ServersettingsElement.php line: 305
-serversettings_element_global_adscript = ""
+; RegisterView.php line: 99
+register_view_question7_choices = ""
 ;
-; ServersettingsElement.php line: 312
-serversettings_element_top_adscript = ""
+; RegisterView.php line: 100
+register_view_question8_most = ""
 ;
-; ServersettingsElement.php line: 319
-serversettings_element_side_adscript = ""
+; RegisterView.php line: 101
+register_view_question8_least = ""
 ;
-; ServersettingsElement.php line: 329
-serversettings_element_save = ""
+; RegisterView.php line: 102
+register_view_question8_choices = ""
 ;
-; SigninElement.php line: 73
-signin_element_settings = "設定"
+; RegisterView.php line: 103
+register_view_question9_most = ""
 ;
-; SigninElement.php line: 77
-signin_element_signin = "登入"
+; RegisterView.php line: 104
+register_view_question9_least = ""
 ;
-; SigninElement.php line: 81
-signin_element_signout = "登出"
+; RegisterView.php line: 105
+register_view_question9_choices = ""
 ;
-; SubsearchElement.php line: 69
-subsearch_element_more = ""
+; RegisterView.php line: 108
+register_view_recovery1_more = ""
 ;
-; WikiElement.php line: 121
-wiki_view_back = ""
+; RegisterView.php line: 109
+register_view_recovery1_less = ""
 ;
-; WikiElement.php line: 139
-groupfeed_element_feed = ""
+; RegisterView.php line: 110
+register_view_recovery1_choices = ""
 ;
-; WikiElement.php line: 140
-wiki_view_wiki = ""
+; RegisterView.php line: 111
+register_view_recovery2_more = ""
 ;
-; WikiElement.php line: 144
-wiki_view_page = ""
+; RegisterView.php line: 112
+register_view_recovery2_less = ""
 ;
-; WikiElement.php line: 148
-wiki_view_read = ""
+; RegisterView.php line: 113
+register_view_recovery2_choices = ""
 ;
-; WikiElement.php line: 149
-wiki_view_edit = ""
+; RegisterView.php line: 114
+register_view_recovery3_more = ""
 ;
-; WikiElement.php line: 152
-wiki_view_pages = ""
+; RegisterView.php line: 115
+register_view_recovery3_less = ""
 ;
-; WikiElement.php line: 237
-wiki_element_redirect_to = ""
+; RegisterView.php line: 116
+register_view_recovery3_choices = ""
 ;
-; WikiElement.php line: 245
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 117
+register_view_recovery4_more = ""
 ;
-; WikiElement.php line: 246
-wiki_view_create_edit = ""
+; RegisterView.php line: 118
+register_view_recovery4_less = ""
 ;
-; WikiElement.php line: 247
-wiki_view_use_form_below = ""
+; RegisterView.php line: 119
+register_view_recovery4_choices = ""
 ;
-; WikiElement.php line: 259
-wiki_element_submit = ""
+; RegisterView.php line: 120
+register_view_recovery5_more = ""
 ;
-; WikiElement.php line: 265
-wiki_view_syntax_summary = ""
+; RegisterView.php line: 121
+register_view_recovery5_less = ""
 ;
-; WikiElement.php line: 268
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 122
+register_view_recovery5_choices = ""
 ;
-; WikiElement.php line: 270
-wiki_view_signin_edit = ""
+; RegisterView.php line: 123
+register_view_recovery6_more = ""
 ;
-; WikiElement.php line: 272
-wiki_view_page_no_exist = ""
+; RegisterView.php line: 124
+register_view_recovery6_less = ""
 ;
-; WikiElement.php line: 302
-wiki_element_history = ""
+; RegisterView.php line: 125
+register_view_recovery6_choices = ""
 ;
-; WikiElement.php line: 306
-wiki_element_discuss = ""
+; RegisterView.php line: 153
+register_view_create_account = ""
 ;
-; WikiElement.php line: 342
-wiki_element_locale_name = ""
+; RegisterView.php line: 190
+register_view_firstname = ""
 ;
-; WikiElement.php line: 346
-wiki_element_page = ""
+; RegisterView.php line: 205
+register_view_lastname = ""
 ;
-; WikiElement.php line: 349
-configure_element_toggle_page_settings = ""
+; RegisterView.php line: 219
+register_view_username = ""
 ;
-; WikiElement.php line: 353
-wiki_element_page_type = ""
+; RegisterView.php line: 232
+register_view_email = ""
 ;
-; WikiElement.php line: 361
-wiki_element_page_alias = ""
+; RegisterView.php line: 246
+register_view_password = ""
 ;
-; WikiElement.php line: 369
-wiki_element_page_border = ""
+; RegisterView.php line: 261
+register_view_retypepassword = ""
 ;
-; WikiElement.php line: 376
-wiki_element_table_of_contents = ""
+; RegisterView.php line: 277
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 385
-wiki_element_title = ""
+; RegisterView.php line: 281
+register_view_human_check = ""
 ;
-; WikiElement.php line: 391
-wiki_element_meta_author = ""
+; RegisterView.php line: 283
+register_view_account_recovery = ""
 ;
-; WikiElement.php line: 397
-wiki_element_meta_robots = ""
+; RegisterView.php line: 315
+register_view_human_check = ""
 ;
-; WikiElement.php line: 404
-wiki_element_meta_description = ""
+; RegisterView.php line: 329
+register_view_i_agree = ""
 ;
-; WikiElement.php line: 411
-wiki_element_page_header = ""
+; RegisterView.php line: 331
+register_view_terms = ""
 ;
-; WikiElement.php line: 417
-wiki_element_page_footer = ""
+; RegisterView.php line: 333
+register_view_and = ""
 ;
-; WikiElement.php line: 440
-wiki_element_archive_info = ""
+; RegisterView.php line: 335
+register_view_privacy = ""
 ;
-; WikiElement.php line: 443
-wiki_element_edit_reason = ""
+; RegisterView.php line: 336
+register_view_period = ""
 ;
-; WikiElement.php line: 450
-wiki_element_savebutton = ""
+; RegisterView.php line: 346
+register_view_create_account = ""
 ;
-; WikiElement.php line: 454
-wiki_element_media_list = ""
+; RegisterView.php line: 355
+register_view_return = ""
 ;
-; WikiElement.php line: 455
-wiki_element_ml_description = ""
+; SearchView.php line: 92
+search_view_title = "PHP 搜索引擎 - Yioop!"
 ;
-; WikiElement.php line: 458
-wiki_view_page_resources = ""
+; SearchView.php line: 119
+search_view_input_label = ""
 ;
-; WikiElement.php line: 493
-wiki_view_upload = ""
+; SearchView.php line: 123
+search_view_input_placeholder = "输入您正在寻找什么"
 ;
-; WikiElement.php line: 497
-wiki_element_resources_info = ""
+; SearchView.php line: 126
+search_view_search = "搜尋"
 ;
-; WikiElement.php line: 512
-wiki_element_rename_failed = ""
+; SearchView.php line: 155
+search_view_no_index_set = ""
 ;
-; WikiElement.php line: 578
-wiki_element_rename = ""
+; SearchView.php line: 164
+search_view_more_statistics = ""
 ;
-; WikiElement.php line: 582
-wiki_element_add_to_page = ""
+; SearchView.php line: 201
+search_view_calculated = "總計: %s 秒"
 ;
-; WikiElement.php line: 602
-wiki_element_no_resources = ""
+; SearchView.php line: 203
+search_view_results = "結果"
 ;
-; WikiElement.php line: 624
-wiki_view_wiki_page_list = ""
+; SearchView.php line: 229
+search_view_thesaurus_results = ""
 ;
-; WikiElement.php line: 637
-wiki_view_filter_or_create = ""
+; SearchView.php line: 339
+search_view_word_cloud = ""
 ;
-; WikiElement.php line: 639
-wiki_element_go = ""
+; SearchView.php line: 380
+search_view_cache = ""
 ;
-; WikiElement.php line: 644
-wiki_view_create_page = ""
+; SearchView.php line: 382
+search_view_as_text = ""
 ;
-; WikiElement.php line: 655
-wiki_element_redirect_to = ""
+; SearchView.php line: 393
+search_view_similar = "相似"
 ;
-; WikiElement.php line: 677
-wiki_view_no_pages = ""
+; SearchView.php line: 402
+search_view_inlink = ""
 ;
-; WikiElement.php line: 700
-wiki_view_back = ""
+; SearchView.php line: 419
+search_view_rank = "排名: %s 名"
 ;
-; WikiElement.php line: 716
-wiki_view_difference = ""
+; SearchView.php line: 421
+search_view_relevancy = "關聯度:  %s 趴"
 ;
-; WikiElement.php line: 722
-wiki_view_go = ""
+; SearchView.php line: 423
+search_view_proximity = ""
 ;
-; WikiElement.php line: 741
-wiki_view_diff_first = ""
+; SearchView.php line: 427
+search_view_thesaurus_score = ""
 ;
-; WikiElement.php line: 743
-wiki_view_diff_second = ""
+; SearchView.php line: 436
+search_view_score = "分數"
 ;
-; WikiElement.php line: 747
-wiki_view_diff_first = ""
+; SettingsView.php line: 66
+settings_view_settings = "設定"
 ;
-; WikiElement.php line: 748
-wiki_view_diff_second = ""
+; SettingsView.php line: 73
+settings_view_results_per_page = "每頁顯示項目數量"
 ;
-; WikiElement.php line: 754
-wiki_view_edited_by = ""
+; SettingsView.php line: 79
+settings_view_open_in_tabs = ""
 ;
-; WikiElement.php line: 758
-wiki_view_page_len = ""
+; SettingsView.php line: 86
+settings_view_search_index = ""
 ;
-; WikiElement.php line: 760
-wiki_view_revert = ""
+; SettingsView.php line: 92
+settings_view_language_label = "語言"
 ;
-; WikiElement.php line: 763
-wiki_view_revert = ""
+; SettingsView.php line: 106
+settings_view_return = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/helpers
+; SettingsView.php line: 109
+settings_view_save = "儲存"
 ;
-; FeedsHelper.php line: 70
-feeds_helper_view_feed_results = ""
+; SettingsView.php line: 116
+settings_install_search_plugin = ""
 ;
-; FeedsHelper.php line: 164
-feeds_helper_view_onehour = "1小时前"
+; SigninView.php line: 68
+signin_view_signin = "登入"
 ;
-; FeedsHelper.php line: 169
-feeds_helper_view_minsecs = ""
+; SigninView.php line: 81
+sigin_view_signing_in = ""
 ;
-; FeedsHelper.php line: 174
-feeds_helper_view_hourdate = "%s小时前"
+; SigninView.php line: 84
+sigin_view_login_failed = ""
 ;
-; FileuploadHelper.php line: 72
-fileupload_helper_drag_textarea = ""
+; SigninView.php line: 92
+signin_view_username = "使用者名稱"
 ;
-; FileuploadHelper.php line: 73
-fileupload_helper_click_textarea = ""
+; SigninView.php line: 99
+signin_view_password = "密碼"
 ;
-; FileuploadHelper.php line: 75
-fileupload_helper_drag_above = ""
+; SigninView.php line: 109
+signin_view_login = "登入"
 ;
-; FileuploadHelper.php line: 76
-fileupload_helper_click_upload = ""
+; SigninView.php line: 124
+signin_view_recover_password = ""
 ;
-; FileuploadHelper.php line: 117
-basic_js_invalid_filetype = ""
+; SigninView.php line: 129
+signin_view_create_account = ""
 ;
-; FileuploadHelper.php line: 119
-basic_js_file_too_big = ""
+; SigninView.php line: 133
+signin_view_return = ""
 ;
-; FileuploadHelper.php line: 121
-basic_js_upload_progress = ""
+; StaticView.php line: 68
+static_view_title = ""
 ;
-; FileuploadHelper.php line: 123
-basic_js_progress_meter_disabled = ""
+; StatisticsView.php line: 75
+statistics_view_statistics = ""
 ;
-; FileuploadHelper.php line: 125
-basic_js_upload_error = ""
+; StatisticsView.php line: 80
+statistics_view_calculating = ""
 ;
-; FileuploadHelper.php line: 127
-basic_js_upload_cancelled = ""
+; StatisticsView.php line: 94
+statistics_view_error_codes = ""
 ;
-; FileuploadHelper.php line: 129
-basic_js_too_many_files = ""
+; StatisticsView.php line: 95
+statistics_view_sizes = ""
 ;
-; HelpbuttonHelper.php line: 106
-wiki_question_mark = ""
+; StatisticsView.php line: 96
+statistics_view_links_per_page = ""
 ;
-; HelpbuttonHelper.php line: 138
-wiki_view_edit = ""
+; StatisticsView.php line: 97
+statistics_view_page_date = ""
 ;
-; HelpbuttonHelper.php line: 139
-wiki_view_not_available = ""
+; StatisticsView.php line: 98
+statistics_view_dns_time = ""
 ;
-; HelpbuttonHelper.php line: 141
-wiki_view_create_edit = ""
+; StatisticsView.php line: 99
+statistics_view_download_time = ""
 ;
-; HelpbuttonHelper.php line: 143
-wiki_view_page_no_exist = ""
+; StatisticsView.php line: 100
+statistics_view_top_level_domain = ""
 ;
-; HelpbuttonHelper.php line: 145
-wiki_view_read = ""
+; StatisticsView.php line: 101
+statistics_view_file_extension = ""
 ;
-; ImagesHelper.php line: 55
-images_helper_view_image_results = ""
+; StatisticsView.php line: 102
+statistics_view_media_type = ""
 ;
-; PaginationHelper.php line: 97
-pagination_helper_previous = "上一页"
+; StatisticsView.php line: 103
+statistics_view_language = ""
 ;
-; PaginationHelper.php line: 121
-pagination_helper_next = "下一页"
+; StatisticsView.php line: 104
+statistics_view_server = ""
 ;
-; PagingtableHelper.php line: 103
-pagingtable_helper_search = ""
+; StatisticsView.php line: 105
+statistics_view_os = ""
 ;
-; PagingtableHelper.php line: 125
-pagingtable_helper_show = ""
+; StatisticsView.php line: 108
+statistics_view_general_info = ""
 ;
-; PagingtableHelper.php line: 138
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 109
+statistics_view_description = ""
 ;
-; PagingtableHelper.php line: 215
-pagingtable_helper_row_range = ""
+; StatisticsView.php line: 111
+statistics_view_timestamp = ""
 ;
-; PagingtableHelper.php line: 233
-pagingtable_helper_show = ""
+; StatisticsView.php line: 113
+statistics_view_crawl_date = ""
 ;
-; PagingtableHelper.php line: 241
-pagingtable_helper_search = ""
+; StatisticsView.php line: 115
+statistics_view_pages = ""
 ;
-; SearchformHelper.php line: 119
-searchform_helper_any = ""
+; StatisticsView.php line: 117
+statistics_view_url = ""
 ;
-; SearchformHelper.php line: 148
-searchform_helper_search = ""
+; StatisticsView.php line: 120
+statistics_view_number_hosts = ""
 ;
-; ToggleHelper.php line: 59
-toggle_helper_on = ""
+; SuggestView.php line: 69
+suggest_view_suggest_url = ""
 ;
-; ToggleHelper.php line: 61
-toggle_helper_off = ""
+; SuggestView.php line: 71
+suggest_view_instructions = ""
 ;
-; ToggleHelper.php line: 65
-toggle_helper_on = ""
+; SuggestView.php line: 95
+suggest_view_url = ""
 ;
-; ToggleHelper.php line: 67
-toggle_helper_off = ""
+; SuggestView.php line: 109
+register_view_human_check = ""
 ;
-; ToggleHelper.php line: 71
-toggle_helper_on = ""
+; SuggestView.php line: 143
+suggest_view_human_check = ""
 ;
-; ToggleHelper.php line: 73
-toggle_helper_off = ""
+; SuggestView.php line: 164
+suggest_view_submit_url = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/views/layouts
+; SuggestView.php line: 173
+suggest_view_return = ""
 ;
-; RssLayout.php line: 62
-rss_layout_title = ""
+; View.php line: 61
+view_locale_version14 = ""
 ;
-; RssLayout.php line: 69
-rss_layout_description = ""
+; View.php line: 93
+view_logo_alt_text = ""
 ;
-; WebLayout.php line: 63
-web_layout_title = "PHP 搜索引擎 - Yioop!"
+; WikiView.php line: 86
+wiki_view_read = ""
 ;
-; WebLayout.php line: 73
-web_layout_description = ""
+; WikiView.php line: 87
+wiki_view_edit = ""
 ;
-; WebLayout.php line: 75
-web_layout_site_author = ""
+; WikiView.php line: 90
+wiki_view_pages = ""
 ;
-; WebLayout.php line: 219
-web_layout_query_statistics = ""
+; WikiView.php line: 135
+wiki_view_feed = ""
 ;
-; WebLayout.php line: 223
-web_layout_total_elapsed_time = ""
+; WikiView.php line: 136
+wiki_view_wiki = ""
 ;
-; WebLayout.php line: 228
-web_layout_query_time = ""
+; WikiView.php line: 160
+adminview_auto_logout_one_minute = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry_data/app/views
+; /Applications/MAMP/htdocs/git/seekquarry/work_directory/app/views
 ;
 ; DownloadView.php line: 65
 download_view_form = ""
 ;
-; DownloadView.php line: 74
+; DownloadView.php line: 75
 download_view_thank_you = ""
 ;
-; DownloadView.php line: 76
+; DownloadView.php line: 78
 download_view_full_name = ""
 ;
-; DownloadView.php line: 81
+; DownloadView.php line: 84
 download_view_email = ""
 ;
-; DownloadView.php line: 85
+; DownloadView.php line: 89
 download_view_business = ""
 ;
-; DownloadView.php line: 90
+; DownloadView.php line: 95
 download_view_interest = ""
 ;
-; DownloadView.php line: 96
+; DownloadView.php line: 102
 download_view_get_email = ""
 ;
-; DownloadView.php line: 102
+; DownloadView.php line: 108
 download_view_return_main = ""
 ;
-; DownloadView.php line: 115
+; DownloadView.php line: 122
 download_view_required_fields = ""
 ;
-; DownloadView.php line: 119
+; DownloadView.php line: 127
 download_view_name_required = ""
 ;
-; DownloadView.php line: 123
+; DownloadView.php line: 132
 download_view_valid_email = ""
 ;
-; StoreView.php line: 65
-download_view_form = ""
+; StoreView.php line: 71
+store_view_get_form = ""
 ;
-; StoreView.php line: 74
-download_view_thank_you = ""
+; StoreView.php line: 81
+store_view_keyword_purchase = ""
 ;
-; StoreView.php line: 76
-download_view_full_name = ""
+; StoreView.php line: 83
+download_view_email = ""
 ;
-; StoreView.php line: 81
+; StoreView.php line: 88
+store_view_name_server = ""
+;
+; StoreView.php line: 94
+store_view_get_script = ""
+;
+; StoreView.php line: 100
+store_view_return_main = ""
+;
+; StoreView.php line: 127
+store_view_invalid = ""
+;
+; StoreView.php line: 142
+store_view_purchase_form = ""
+;
+; StoreView.php line: 154
+store_view_purchase_instructions = ""
+;
+; StoreView.php line: 156
 download_view_email = ""
 ;
-; StoreView.php line: 85
-download_view_business = ""
+; StoreView.php line: 162
+store_view_name_server = ""
 ;
-; StoreView.php line: 90
-download_view_interest = ""
+; StoreView.php line: 168
+store_view_cost = ""
 ;
-; StoreView.php line: 96
-download_view_get_email = ""
+; StoreView.php line: 176
+store_view_card_number = ""
 ;
-; StoreView.php line: 102
-download_view_return_main = ""
+; StoreView.php line: 187
+store_view_cvc = ""
 ;
-; StoreView.php line: 115
-download_view_required_fields = ""
+; StoreView.php line: 196
+store_view_expiration = ""
 ;
-; StoreView.php line: 119
-download_view_name_required = ""
+; StoreView.php line: 215
+store_view_get_script = ""
 ;
-; StoreView.php line: 123
-download_view_valid_email = ""
+; StoreView.php line: 240
+store_view_return_main = ""
+;
+; StoreView.php line: 252
+store_view_valid_email = ""
+;
+; StoreView.php line: 267
+store_view_show_form = ""
+;
+; StoreView.php line: 271
+store_view_show_instructions = ""
+;
+; StoreView.php line: 273
+store_view_script_instructions1 = ""
+;
+; StoreView.php line: 274
+store_view_script_instructions2 = ""
+;
+; StoreView.php line: 275
+store_view_script_instructions3 = ""
+;
+; StoreView.php line: 278
+store_view_script_instructions4 = ""
 ;
-; /Library/WebServer/search_engine/seek_quarry/src/library/indexing_plugins
+; /Applications/MAMP/htdocs/git/seekquarry/src/library/indexing_plugins
 ;
 ; WordfilterPlugin.php line: 355
 wordfilter_plugin_settings_saved = ""
diff --git a/models/PurchaseModel.php b/models/PurchaseModel.php
new file mode 100644
index 0000000..9416302
--- /dev/null
+++ b/models/PurchaseModel.php
@@ -0,0 +1,79 @@
+<?php
+/**
+ * SeekQuarry/Yioop --
+ * Open Source Pure PHP Search Engine, Crawler, and Indexer
+ *
+ * Copyright (C) 2009 - 2015  Chris Pollett chris@pollett.org
+ *
+ * LICENSE:
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * END LICENSE
+ *
+ * @author Chris Pollett chris@pollett.orgs
+ * @license http://www.gnu.org/licenses/ GPL3
+ * @link http://www.seekquarry.com/
+ * @copyright 2009 - 2015
+ * @filesource
+ */
+namespace seekquarry\yioop\models;
+
+use seekquarry\yioop\configs as C;
+use seekquarry\yioop\library as L;
+
+/**
+ *
+ * @author Chris Pollett
+ */
+class PurchaseModel extends Model
+{
+    public function __construct($db_name = C\DB_NAME, $connect = true)
+    {
+        $db_class = C\NS_DATASOURCES . "Sqlite3Manager";
+        $db_name = "ad_purchase";
+        $create_flag = false;
+        if(!file_exists(C\CRAWL_DIR . "/data/$db_name.db")) {
+            $create_flag = true;
+        }
+        $this->db = new $db_class();
+        $this->db->connect("", "", "", $db_name);
+        if($create_flag) {
+            $this->db->execute("CREATE TABLE PURCHASE (EMAIL VARCHAR(" .
+                C\LONG_NAME_LEN . "), NAME_SERVER VARCHAR(" .
+                C\MAX_URL_LEN . "), TIMESTAMP NUMERIC(" . C\TIMESTAMP_LEN . ")
+                )");
+        }
+    }
+
+    public function checkPurchase($email, $name_server)
+    {
+        $db = $this->db;
+        $sql = "SELECT * FROM PURCHASE WHERE EMAIL = ? AND NAME_SERVER = ?";
+        $params = [$email, $name_server];
+        $result = $db->execute($sql, $params);
+        if (!$row = $db->fetchArray($result)) {
+            return false;
+        }
+        return true;
+    }
+    public function addPurchase($email, $name_server)
+    {
+        $db = $this->db;
+        $sql = "INSERT INTO PURCHASE VALUES (?, ?, ?)";
+        $time = time();
+        $db->execute($sql, [$email, $name_server, $time]);
+        return $time;
+    }
+}
diff --git a/resources/4Pa/4PaP2dQJZTE/AddRole.png b/resources/4Pa/4PaP2dQJZTE/AddRole.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/AppearanceActivity.png b/resources/4Pa/4PaP2dQJZTE/AppearanceActivity.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/Autosuggest.png b/resources/4Pa/4PaP2dQJZTE/Autosuggest.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/ChangeAccountInfo.png b/resources/4Pa/4PaP2dQJZTE/ChangeAccountInfo.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/ChangePassword.png b/resources/4Pa/4PaP2dQJZTE/ChangePassword.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/ConfigureScreenForm1.png b/resources/4Pa/4PaP2dQJZTE/ConfigureScreenForm1.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/ConfigureScreenForm2.png b/resources/4Pa/4PaP2dQJZTE/ConfigureScreenForm2.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/CreateAdStep1.png b/resources/4Pa/4PaP2dQJZTE/CreateAdStep1.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/CreateAdStep2.png b/resources/4Pa/4PaP2dQJZTE/CreateAdStep2.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/DefaultYioopLandingPage.png b/resources/4Pa/4PaP2dQJZTE/DefaultYioopLandingPage.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/ImageSearch.png b/resources/4Pa/4PaP2dQJZTE/ImageSearch.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/KeywordAdSearchResult.png b/resources/4Pa/4PaP2dQJZTE/KeywordAdSearchResult.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/ManageAdvertisementElement.png b/resources/4Pa/4PaP2dQJZTE/ManageAdvertisementElement.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/ManageAdvertisements.png b/resources/4Pa/4PaP2dQJZTE/ManageAdvertisements.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/ManageMachines.png b/resources/4Pa/4PaP2dQJZTE/ManageMachines.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/MobileSearch.png b/resources/4Pa/4PaP2dQJZTE/MobileSearch.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/NewsSearch.png b/resources/4Pa/4PaP2dQJZTE/NewsSearch.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/SearchResults.png b/resources/4Pa/4PaP2dQJZTE/SearchResults.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/SearchScreen.png b/resources/4Pa/4PaP2dQJZTE/SearchScreen.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/SearchSpellCorrect.png b/resources/4Pa/4PaP2dQJZTE/SearchSpellCorrect.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/SearchTools.png b/resources/4Pa/4PaP2dQJZTE/SearchTools.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/ServerSettings.png b/resources/4Pa/4PaP2dQJZTE/ServerSettings.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/TeluguAutosuggest.png b/resources/4Pa/4PaP2dQJZTE/TeluguAutosuggest.png
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/Version210.pdf b/resources/4Pa/4PaP2dQJZTE/Version210.pdf
old mode 100644
new mode 100755
diff --git a/resources/4Pa/4PaP2dQJZTE/VideoSearch.png b/resources/4Pa/4PaP2dQJZTE/VideoSearch.png
old mode 100644
new mode 100755
diff --git a/resources/XM1/XM1vBpI0ZGQ/Seekquarry.png.jpg b/resources/XM1/XM1vBpI0ZGQ/Seekquarry.png.jpg
new file mode 100644
index 0000000..9b9cc34
Binary files /dev/null and b/resources/XM1/XM1vBpI0ZGQ/Seekquarry.png.jpg differ
diff --git a/resources/tkO/tkO99q1IHv8/btn_donateCC_LG.gif.jpg b/resources/tkO/tkO99q1IHv8/btn_donateCC_LG.gif.jpg
old mode 100644
new mode 100755
diff --git a/resources/xpC/xpCiHfV1GC0/Seekquarry.png b/resources/xpC/xpCiHfV1GC0/Seekquarry.png
new file mode 100644
index 0000000..fdd3270
Binary files /dev/null and b/resources/xpC/xpCiHfV1GC0/Seekquarry.png differ
diff --git a/resources/xyq/xyqWsOS2HOY/AppearanceActivity.png.jpg b/resources/xyq/xyqWsOS2HOY/AppearanceActivity.png.jpg
old mode 100644
new mode 100755
diff --git a/resources/xyq/xyqWsOS2HOY/CreateAdStep1.png.jpg b/resources/xyq/xyqWsOS2HOY/CreateAdStep1.png.jpg
old mode 100644
new mode 100755
diff --git a/resources/xyq/xyqWsOS2HOY/CreateAdStep2.png.jpg b/resources/xyq/xyqWsOS2HOY/CreateAdStep2.png.jpg
old mode 100644
new mode 100755
diff --git a/resources/xyq/xyqWsOS2HOY/DefaultYioopLandingPage.png.jpg b/resources/xyq/xyqWsOS2HOY/DefaultYioopLandingPage.png.jpg
old mode 100644
new mode 100755
diff --git a/resources/xyq/xyqWsOS2HOY/KeywordAdSearchResult.png.jpg b/resources/xyq/xyqWsOS2HOY/KeywordAdSearchResult.png.jpg
old mode 100644
new mode 100755
diff --git a/resources/xyq/xyqWsOS2HOY/ManageAdvertisementElement.png.jpg b/resources/xyq/xyqWsOS2HOY/ManageAdvertisementElement.png.jpg
old mode 100644
new mode 100755
diff --git a/resources/xyq/xyqWsOS2HOY/ManageAdvertisements.png.jpg b/resources/xyq/xyqWsOS2HOY/ManageAdvertisements.png.jpg
old mode 100644
new mode 100755
diff --git a/resources/z_z/z_zMNYogGQw/btn_donateCC_LG.gif b/resources/z_z/z_zMNYogGQw/btn_donateCC_LG.gif
old mode 100644
new mode 100755
diff --git a/views/DownloadView.php b/views/DownloadView.php
index 9825e05..c097b5d 100755
--- a/views/DownloadView.php
+++ b/views/DownloadView.php
@@ -46,87 +46,96 @@ use seekquarry\yioop\configs as C;

 class DownloadView extends View
 {
-
     /** This view is drawn on a web layout
      *  @var string
      */
     var $layout = "web";
-
     /**
      *  Draws the download yioop web page.
      *
      *  @param array $data  contains the anti CSRF token YIOOP_TOKEN
      *  the view
      */
-    function renderView($data) {
-?>
-   <div  class="download">
-  <h1 class="logo"><a href="<?=C\BASE_URL ?>"><img
-src="<?=C\BASE_URL ?>?c=resource&amp;a=get&amp;f=resources&amp;g=2&amp;p=11&amp;n=SeekQuarry.png"
-    alt="SeekQuarry" /></a><span> - <?= tl('download_view_form')
-    ?></span></h1>
-<form  method="post" action="<?=C\BASE_URL ?>" onsubmit="return checkFields();">
-<input type="hidden" name="YIOOP_TOKEN" value="<?= $data['YIOOP_TOKEN'] ?>" />
-<input type="hidden" name="a" value="download" />
-<input type="hidden" name="arg" value="step1" />
-<input type="hidden" name="version" value="<?= $data['version']?>" />
-
-    <table>
-    <tr><td colspan="2"><?= tl('download_view_thank_you') ?></td></tr>
-    <tr>
-    <th class="table-label" ><label for="full-name"><?= tl('download_view_full_name') ?></label>:</th>
-        <td class="table-input"><input id="full-name" type="text"
-            class="narrowfield" maxlength="80" name="full_name"/>
-    </td></tr>
-    <tr>
-    <th class="table-label" ><label for="e-mail"><?= tl('download_view_email') ?></label>:</th>
-        <td class="table-input"><input id="e-mail" type="text"
-        class="narrowfield" maxlength="80" name="e_mail" /></td>
-    <tr>
-    <th class="table-label" ><label for="business-id"><?=tl('download_view_business') ?></label>:</th>
-        <td class="table-input"><input id="business-id" type="text"
-        class="narrowfield" maxlength="80" name="business" /></td>
-    </tr>
-    <tr>
-    <th class="table-label" colspan="2"><label for="yioop-use"><?= tl('download_view_interest') ?></label></th>
-    </tr>
-    <tr><td colspan="2">
-    <textarea class="shorttextarea" name="interest" ></textarea></td>
-    </tr>
-    <tr><td colspan="2" class="center">
-    <button  type="submit" name="c" value="main"><?= tl('download_view_get_email') ?></button>
-    </td></tr>
-    </table>
-</form>
-
-<div class="center"><a href="<?=B\wikiUrl('Downloads', false, 'static') ?>"><?=
-tl('download_view_return_main') ?></a></div>
-</div>
-<script type="text/javascript" />
-function checkFields()
-{
-    var full_name = elt('full-name');
-    var email = elt('e-mail');
-    var email_regex =
-        /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
-    var email_good = email_regex.test(email.value);
-    if(full_name.value == "" && !email_good) {
-        full_name.style.backgroundColor = 'red';
-        email.style.backgroundColor = 'red';
-        doMessage('<h1 class="red"><?= tl("download_view_required_fields") ?></h1>');
-        return false;
-    } else if(full_name.value == "") {
-        full_name.style.backgroundColor = 'red';
-        doMessage('<h1 class="red"><?= tl("download_view_name_required") ?></h1>');
-        return false;
-    } else if(!email_good) {
-        email.style.backgroundColor = 'red';
-        doMessage('<h1 class="red"><?= tl("download_view_valid_email") ?></h1>');
-        return false;
-    }
-    return true;
-}
-</script>
-<?php
+    function renderView($data)
+    {
+        $logo = C\BASE_URL . C\LOGO;
+        ?>
+        <div  class="download">
+        <h1 class="logo"><a href="<?=C\BASE_URL ?>"><img
+        src="<?= $logo ?>"
+            alt="SeekQuarry" /></a><span> - <?= tl('download_view_form')
+            ?></span></h1>
+        <form  method="post" action="<?=C\BASE_URL
+            ?>" onsubmit="return checkFields();">
+        <input type="hidden" name="YIOOP_TOKEN" value="<?=
+            $data['YIOOP_TOKEN'] ?>" />
+        <input type="hidden" name="a" value="download" />
+        <input type="hidden" name="arg" value="step1" />
+        <input type="hidden" name="version" value="<?= $data['version']?>" />
+        <table>
+        <tr><td colspan="2"><?= tl('download_view_thank_you') ?></td></tr>
+        <tr>
+        <th class="table-label" ><label for="full-name"><?=
+            tl('download_view_full_name') ?></label>:</th>
+            <td class="table-input"><input id="full-name" type="text"
+                class="narrowfield" maxlength="80" name="full_name"/>
+        </td></tr>
+        <tr>
+        <th class="table-label" ><label for="e-mail"><?=
+            tl('download_view_email') ?></label>:</th>
+            <td class="table-input"><input id="e-mail" type="text"
+            class="narrowfield" maxlength="80" name="e_mail" /></td>
+        <tr>
+        <th class="table-label" ><label for="business-id"><?=
+            tl('download_view_business') ?></label>:</th>
+            <td class="table-input"><input id="business-id" type="text"
+            class="narrowfield" maxlength="80" name="business" /></td>
+        </tr>
+        <tr>
+        <th class="table-label" colspan="2"><label for="yioop-use"><?=
+            tl('download_view_interest') ?></label></th>
+        </tr>
+        <tr><td colspan="2">
+        <textarea class="shorttextarea" name="interest" ></textarea></td>
+        </tr>
+        <tr><td colspan="2" class="center">
+        <button  type="submit" name="c" value="main"><?=
+            tl('download_view_get_email') ?></button>
+        </td></tr>
+        </table>
+        </form>
+        <div class="center"><a href="<?=
+            B\wikiUrl('Downloads', false, 'static') ?>"><?=
+        tl('download_view_return_main') ?></a></div>
+        </div>
+        <script type="text/javascript" />
+        function checkFields()
+        {
+            var full_name = elt('full-name');
+            var email = elt('e-mail');
+            var email_regex =
+            /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
+            var email_good = email_regex.test(email.value);
+            if(full_name.value == "" && !email_good) {
+                full_name.style.backgroundColor = 'red';
+                email.style.backgroundColor = 'red';
+                doMessage('<h1 class="red"><?=
+                    tl("download_view_required_fields") ?></h1>');
+                return false;
+            } else if(full_name.value == "") {
+                full_name.style.backgroundColor = 'red';
+                doMessage('<h1 class="red"><?=
+                    tl("download_view_name_required") ?></h1>');
+                return false;
+            } else if(!email_good) {
+                email.style.backgroundColor = 'red';
+                doMessage('<h1 class="red"><?=
+                    tl("download_view_valid_email") ?></h1>');
+                return false;
+            }
+            return true;
+        }
+        </script>
+        <?php
     }
 }
diff --git a/views/StoreView.php b/views/StoreView.php
index 9825e05..a82c24f 100644
--- a/views/StoreView.php
+++ b/views/StoreView.php
@@ -44,89 +44,248 @@ use seekquarry\yioop\configs as C;
  * @subpackage view
  */

-class DownloadView extends View
+class StoreView extends View
 {

     /** This view is drawn on a web layout
      *  @var string
      */
     var $layout = "web";
-
     /**
-     *  Draws the download yioop web page.
+     *  Draws the various download ad script forms.
      *
      *  @param array $data  contains the anti CSRF token YIOOP_TOKEN
      *  the view
      */
-    function renderView($data) {
-?>
-   <div  class="download">
-  <h1 class="logo"><a href="<?=C\BASE_URL ?>"><img
-src="<?=C\BASE_URL ?>?c=resource&amp;a=get&amp;f=resources&amp;g=2&amp;p=11&amp;n=SeekQuarry.png"
-    alt="SeekQuarry" /></a><span> - <?= tl('download_view_form')
-    ?></span></h1>
-<form  method="post" action="<?=C\BASE_URL ?>" onsubmit="return checkFields();">
-<input type="hidden" name="YIOOP_TOKEN" value="<?= $data['YIOOP_TOKEN'] ?>" />
-<input type="hidden" name="a" value="download" />
-<input type="hidden" name="arg" value="step1" />
-<input type="hidden" name="version" value="<?= $data['version']?>" />
+    function renderView($data)
+    {
+        $method = "render" . ucfirst($data['FORM_TYPE']);
+        $this->$method($data);
+    }

-    <table>
-    <tr><td colspan="2"><?= tl('download_view_thank_you') ?></td></tr>
-    <tr>
-    <th class="table-label" ><label for="full-name"><?= tl('download_view_full_name') ?></label>:</th>
-        <td class="table-input"><input id="full-name" type="text"
-            class="narrowfield" maxlength="80" name="full_name"/>
-    </td></tr>
-    <tr>
-    <th class="table-label" ><label for="e-mail"><?= tl('download_view_email') ?></label>:</th>
-        <td class="table-input"><input id="e-mail" type="text"
-        class="narrowfield" maxlength="80" name="e_mail" /></td>
-    <tr>
-    <th class="table-label" ><label for="business-id"><?=tl('download_view_business') ?></label>:</th>
-        <td class="table-input"><input id="business-id" type="text"
-        class="narrowfield" maxlength="80" name="business" /></td>
-    </tr>
-    <tr>
-    <th class="table-label" colspan="2"><label for="yioop-use"><?= tl('download_view_interest') ?></label></th>
-    </tr>
-    <tr><td colspan="2">
-    <textarea class="shorttextarea" name="interest" ></textarea></td>
-    </tr>
-    <tr><td colspan="2" class="center">
-    <button  type="submit" name="c" value="main"><?= tl('download_view_get_email') ?></button>
-    </td></tr>
-    </table>
-</form>
+    function renderGetScript($data)
+    {
+        $logo = C\BASE_URL . C\LOGO;
+        ?>
+        <div class="download">
+        <h1 class="logo"><a href="<?=C\BASE_URL ?>"><img src="<?=$logo ?>"
+        alt="SeekQuarry" /></a><span> - <?= tl('store_view_get_form')
+        ?></span></h1>
+        <form  method="post" onsubmit="return checkFields();">
+        <input type="hidden" name="YIOOP_TOKEN" value="<?=
+            $data['YIOOP_TOKEN'] ?>" />
+        <input type="hidden" name="c" value="main" />
+        <input type="hidden" name="a" value="store" />
+        <input type="hidden" name="arg" value="<?= $data['FORM_TYPE'] ?>" />
+        <table>
+        <tr><td colspan="2"><?=
+            tl('store_view_keyword_purchase') ?></td></tr>
+        <tr><th class="table-label" ><label for="e-mail"><?=
+            tl('download_view_email') ?></label>:</th>
+            <td class="table-input"><input id="e-mail" type="text"
+            class="narrowfield" maxlength="80" name="e_mail" /></td>
+        <tr>
+        <th class="table-label" ><label for="nameserver-id"><?=
+            tl('store_view_name_server') ?></label>:</th>
+            <td class="table-input"><input id="nameserver-id" type="text"
+            class="narrowfield" maxlength="80" name="name_server" /></td>
+        </tr>
+        <tr><td colspan="2" class="center">
+        <button type="submit" name="c" value="main"><?=
+            tl('store_view_get_script') ?></button>
+        </td></tr>
+        </table>
+        </form>
+        <div class="center"><a href="<?=
+            B\wikiUrl('Downloads', false, 'static') ?>"><?=
+        tl('store_view_return_main') ?></a></div>
+        </div>
+        <script type="text/javascript" />
+        function checkFields()
+        {
+            var email = elt('e-mail');
+            var email_regex =
+            /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
+            var email_good = email_regex.test(email.value);
+            var good = true;
+            if (!email_good) {
+                email.style.backgroundColor = 'red';
+                good = false
+            } else {
+                email.style.backgroundColor = 'white';
+            }
+            var nameserver = elt('nameserver-id');
+            var url_regex = /^https?\:\/\/.*$/; //very crude
+            var nameserver_good = url_regex.test(nameserver.value);
+            if (!nameserver_good) {
+                nameserver.style.backgroundColor = 'red';
+                good = false;
+            } else {
+                nameserver.style.backgroundColor = 'white';
+            }
+            if(!good) {
+                doMessage('<h1 class="red"><?=
+                    tl("store_view_invalid fields") ?></h1>');
+                return false;
+            }
+            return true;
+        }
+        </script>
+        <?php
+    }

-<div class="center"><a href="<?=B\wikiUrl('Downloads', false, 'static') ?>"><?=
-tl('download_view_return_main') ?></a></div>
-</div>
-<script type="text/javascript" />
-function checkFields()
-{
-    var full_name = elt('full-name');
-    var email = elt('e-mail');
-    var email_regex =
-        /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
-    var email_good = email_regex.test(email.value);
-    if(full_name.value == "" && !email_good) {
-        full_name.style.backgroundColor = 'red';
-        email.style.backgroundColor = 'red';
-        doMessage('<h1 class="red"><?= tl("download_view_required_fields") ?></h1>');
-        return false;
-    } else if(full_name.value == "") {
-        full_name.style.backgroundColor = 'red';
-        doMessage('<h1 class="red"><?= tl("download_view_name_required") ?></h1>');
-        return false;
-    } else if(!email_good) {
-        email.style.backgroundColor = 'red';
-        doMessage('<h1 class="red"><?= tl("download_view_valid_email") ?></h1>');
-        return false;
+    function renderPurchaseScript($data)
+    {
+        $logo = C\BASE_URL . C\LOGO;
+        ?>
+        <div class="download">
+        <h1 class="logo"><a href="<?=C\BASE_URL ?>"><img src="<?=$logo ?>"
+        alt="SeekQuarry" /></a><span> - <?= tl('store_view_purchase_form')
+        ?></span></h1>
+        <form  id="adScriptPurchaseForm" method="post"
+            onsubmit="return checkFields();">
+        <input type="hidden" name="YIOOP_TOKEN" value="<?=
+            $data['YIOOP_TOKEN'] ?>" />
+        <input type="hidden" name="c" value="main" />
+        <input type="hidden" name="a" value="store" />
+        <input type="hidden" name="arg" value="<?= $data['FORM_TYPE'] ?>" />
+        <input type="hidden" id="credit-token" name="CREDIT_TOKEN" value="" />
+        <table>
+        <tr><td colspan="2" class="center"><div><?=
+            tl('store_view_purchase_instructions');?></div></td></tr>
+        <tr><th class="table-label" ><label for="e-mail"><?=
+            tl('download_view_email') ?></label>:</th>
+            <td class="table-input"><input id="e-mail" type="text"
+            class="narrowfield" maxlength="80" name="e_mail"
+            value="<?=$data['E_MAIL'] ?>" /></td>
+        <tr>
+        <th class="table-label" ><label for="nameserver-id"><?=
+            tl('store_view_name_server') ?></label>:</th>
+            <td class="table-input"><input id="nameserver-id" type="text"
+            class="narrowfield" maxlength="80" name="name_server"
+            value="<?=$data['NAME_SERVER'] ?>" /></td>
+        </tr>
+        <tr><th class="table-label"><label for="cost"><?=
+            tl('store_view_cost') ?>:
+        </label></th>
+        <td>
+        <input class="narrow-field" type="text" readonly="readonly"
+            disabled="disabled" value="<?=
+            C\AD_SCRIPT_COST ?>" />
+        </td>
+        </tr>
+        <tr><th class="table-label"><label for="card-number"><?=
+            tl('store_view_card_number') ?>:
+        </label></th>
+        <td>
+        <input class="narrow-field" id="card-number"
+            type="text" size="20" <?=
+                C\CreditConfig::getAttribute('card-number','name')
+                ?>="<?=
+                C\CreditConfig::getAttribute('card-number','value')
+                ?>" />
+        </td></tr>
+        <tr><th class="table-label"><label for="cvc"><?=
+            tl('store_view_cvc') ?>:
+        </label></th>
+        <td>
+        <input class="narrow-field" id="cvc"
+            type="text" size="4" <?=
+                C\CreditConfig::getAttribute('cvc','name')?>="<?=
+                C\CreditConfig::getAttribute('cvc','value') ?>" />
+        </td></tr>
+        <tr><th class="table-label"><label for="expiration"><?=
+            tl('store_view_expiration') ?>:
+        </label></th>
+        <td>
+        <?php
+        $this->helper('options')->render('expiration', '',
+            $data['MONTHS'], 0, false, [
+                C\CreditConfig::getAttribute('exp-month','name') =>
+                C\CreditConfig::getAttribute('exp-month','value'),
+                "class" => "medium-font"]);
+        ?> / <?php
+        $this->helper('options')->render('', '',
+            $data['YEARS'], 0, false, [
+                C\CreditConfig::getAttribute('exp-year','name') =>
+                C\CreditConfig::getAttribute('exp-year','value'),
+                "class" => "medium-font"]);
+        ?>
+        </td></tr>
+        <tr><td colspan="2" class="center">
+        <button type="submit" id="purchase" name="c" value="main"><?=
+            tl('store_view_get_script') ?></button>
+        <script type="text/javascript">
+        document.getElementById('purchase').onclick =
+            function(event) {
+                var ad_form = elt('adScriptPurchaseForm');
+                elt('purchase').disabled = true;
+                Stripe.card.createToken(ad_form, tokenResponseHandler);
+                event.preventDefault();
+            }
+        function tokenResponseHandler(status, response) {
+            var ad_form = elt('adScriptPurchaseForm');
+            if (response.error) {
+                alert(response.error.message);
+                elt('purchase').disabled = false;
+            } else {
+                elt('credit-token').value = response.id;
+                ad_form.submit();
+            }
+        }
+        </script>
+        </td></tr>
+        </table>
+        </form>
+        <div class="center"><a href="<?=
+            B\wikiUrl('Downloads', false, 'static') ?>"><?=
+        tl('store_view_return_main') ?></a></div>
+        </div>
+        <script type="text/javascript" />
+        function checkFields()
+        {
+            var email = elt('e-mail');
+            var email_regex =
+            /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
+            var email_good = email_regex.test(email.value);
+            if(!email_good) {
+                email.style.backgroundColor = 'red';
+                doMessage('<h1 class="red"><?=
+                    tl("store_view_valid_email") ?></h1>');
+                return false;
+            }
+            return true;
+        }
+        </script>
+        <?php
     }
-    return true;
-}
-</script>
-<?php
+
+    function renderShowScript($data)
+    {
+        $logo = C\BASE_URL . C\LOGO;
+        ?>
+        <div class="download">
+        <h1 class="logo"><a href="<?=C\BASE_URL ?>"><img src="<?=$logo ?>"
+        alt="SeekQuarry" /></a><span> - <?= tl('store_view_show_form')
+        ?></span></h1>
+        <table>
+        <tr><td colspan="2">
+            <h2><?= tl('store_view_show_instructions') ?></h2>
+            <ol>
+            <li><?= tl('store_view_script_instructions1') ?></li>
+            <li><?= tl('store_view_script_instructions2') ?></li>
+            <li><?= tl('store_view_script_instructions3') ?><br />
+            <tt>&nbsp;&nbsp;&nbsp;WORK_DIRECTORY/app/configs/CreditConfig.php
+            </tt><br />
+            <?= tl('store_view_script_instructions4') ?></li>
+            </ol></td></tr>
+        <tr><td>
+        <?=
+        $this->element('creditconfig')->render($data);
+        ?>
+        </td></tr>
+        </table>
+        </div>
+        <?php
     }
 }
diff --git a/views/elements/CreditconfigElement.php b/views/elements/CreditconfigElement.php
new file mode 100644
index 0000000..d4a2c2b
--- /dev/null
+++ b/views/elements/CreditconfigElement.php
@@ -0,0 +1,194 @@
+<?php
+namespace seekquarry\yioop\views\elements;
+
+use seekquarry\yioop as B;
+use seekquarry\yioop\configs as C;
+use seekquarry\yioop\library as L;
+
+class CreditconfigElement extends Element
+{
+    /**
+     * Displays the CreditConfig script in a textarea
+     *
+     * @param array $data  available activities and CSRF token
+     */
+    public function render($data)
+    {
+        $hash_initialize = "FN" . L\crawlHash($data["NAME_SERVER"] .
+            C\YIOOP_VERSION . "getCreditTokenInitializeScript");
+        $hash_submit = "FN" . L\crawlHash($data["NAME_SERVER"] .
+            C\YIOOP_VERSION . "getSubmitPurchaseScript");
+        $purchase_script = <<< 'ZZZ'
+<?php
+/**
+ * SeekQuarry/Yioop -- Credit Card Configuration
+ *
+ * Copyright (C) 2015  Chris Pollett chris@pollett.org
+ * All rights reserved
+ */
+namespace seekquarry\yioop\configs;
+
+use seekquarry\yioop\library\FetchUrl;
+
+/**
+ * Class containing methods used to handle payment processing when keyword
+ * advertising is enabled.
+ *
+ */
+class CreditConfig
+{
+    const PUBLISHABLE_KEY = "";
+    const SECRET_KEY = "";
+    const TOKEN_URL = "https://js.stripe.com/v2/";
+    const CHARGE_URL = "https://api.stripe.com/v1/charges";
+    const CHARGE_CURRENCY = "usd";
+    const CHARGE_DESCRIPTION = "NAME BUYER WILL SEE CHARGE AS";
+    /**
+     * Returns whether a version of CreditConfig actually capable of charging
+     * cards, receiving bitcoins, etc is in use.
+     *
+     * @return bool whether a real credit card processing class is use
+     */
+    public static function isActive()
+    {
+        return true;
+    }
+    /**
+     * Returns the URL to the credit processing Javascript responsible for
+     * sending securely the credit card details to the credit payment agency
+     * (for example, stripe.com) then sending along a authorization token
+     * as part of the form to the Yioop backend
+     * @return string
+     */
+    public static function getCreditTokenUrl()
+    {
+        return self::TOKEN_URL;
+    }
+    /**
+     * An initialization Javascript used to set up the Credit payment agency's
+     * Javascript
+     *
+     * @return string
+     */
+ZZZ;
+        $purchase_script .= <<< ZZZ
+
+    public static function {$hash_initialize}()
+ZZZ;
+        $purchase_script .= <<< 'ZZZ'
+    {
+        return "\nStripe.setPublishableKey('" .
+            self::getPublishableKey() . "');\n";
+    }
+    /**
+     * Returns inline Javascript needed to send credit card details off
+     * to credit processing agency by invoking the Javascript credit processing
+     * library methods
+     *
+     * @return string
+     */
+ZZZ;
+        $purchase_script .= <<< ZZZ
+
+    public static function {$hash_submit}()
+ZZZ;
+        $purchase_script .= <<< 'ZZZ'
+    {
+        return <<< EOD
+            <script type="text/javascript">
+            document.getElementById('purchase').onclick =
+                function(event) {
+                    var ad_form = elt('createAdvertisementForm');
+                    elt('purchase').disabled = true;
+                    Stripe.card.createToken(ad_form, tokenResponseHandler);
+                    event.preventDefault();
+                }
+            function tokenResponseHandler(status, response) {
+                var ad_form = elt('createAdvertisementForm');
+                if (response.error) {
+                    alert(response.error.message);
+                    elt('purchase').disabled = false;
+                } else {
+                    elt('duration').disabled = false;
+                    elt('credit-token').value = response.id;
+                    ad_form.submit();
+                }
+            }
+            </script>
+EOD;
+    }
+    /**
+     * Used to get field values from input tag with attribute name set to $name
+     * and attribute value set to value
+     * @param string $name of attribute (usually data-)
+     * @param string $value value of attribute
+     * @return string field value of the correspond input tag
+     */
+    public static function getAttribute($name, $type)
+    {
+        $type = ($type == 'name') ? 0 : 1;
+        $names = [
+            'card-number' => ['data-stripe', 'number'],
+            'cvc' => ['data-stripe', 'cvc'],
+            'exp-month' => ['data-stripe', 'exp-month'],
+            'exp-year' => ['data-stripe', 'exp-year']
+        ];
+
+        return isset($names[$name][$type]) ? $names[$name][$type] : "";
+    }
+    /**
+     * Server side method that is actually responsible for charging the
+     * credit card
+     *
+     * @param float $amount dollar amount to charge the card
+     * @param string $token token issued for transaction from the card
+     *      processing agency
+     * @param string& $message message to use as for reason for charge
+     * @return bool whether or not the charge was successful
+     */
+    public static function charge($amount, $token, &$message)
+    {
+        $charge = [
+            //swipe charges in cents * 100 to convert to dollars
+            "amount" => $amount * 100,
+            "currency" => self::CHARGE_CURRENCY,
+            "source" => $token,
+            "description" => self::CHARGE_DESCRIPTION
+        ];
+        $response = FetchUrl::getPage(self::CHARGE_URL,
+            http_build_query($charge), true, self::getSecretKey() . ":");
+        $credit_info = json_decode($response, true);
+        unset($_REQUEST['CREDIT_TOKEN']);
+        return isset($credit_info['status']) &&
+            $credit_info['status'] == 'succeeded';
+    }
+    /*
+     * Depending on the field mode returns either the test or production
+     * publishable key issued by payment agency to seller.
+     *
+     * @return string key
+     */
+    private static function getPublishableKey()
+    {
+        return self::PUBLISHABLE_KEY;
+    }
+    /*
+     * Depending on the field mode returns either the test or production
+     * secret key issued by payment agency to seller.
+     *
+     * @return string key
+     */
+    private static function getSecretKey()
+    {
+        return self::SECRET_KEY;
+    }
+}
+
+ZZZ;
+        $purchase_script = htmlentities($purchase_script);
+        ?>
+        <textarea class="tall-text-area" readonly="readonly"><?=
+            $purchase_script; ?></textarea>
+        <?php
+    }
+}
ViewGit