« Back Issue #229
  • 2013-11-01 10:12 Reported by administrator
  • 2014-06-16 16:02 Marked fixed
Status: Marked fixed
Priority: Medium

Add support for per user and group blogs

administrator 2013-11-01 10:12

Each user in Yioop should have their own blog and these should be indexable

administrator 2013-11-28 11:07

Mallika,

I uploaded your original patch for this and your localization. I noticed that your patch undid some of my stuff so I am uploading a modified patch which doesn't.

Chris

perepamallika 2013-12-15 13:04

HI Professor,

I have made the changes to all view elements and fixed the errors. Please do take a look and let me know if everything looks okay.

Thanks, Mallika

administrator 2013-12-15 16:22

The formatting in admin_controller seems okay.

It looks like you undid some of the corrections I had made in your code. Did you start with the code I gave you and improve forward? In particular, I can see the fix to upgradeDatabaseVersion18(&$db) has been undone. The line: $db->execute("UPDATE VERSION SET ID=17 WHERE ID=17"); is incorrect.

Also, the formatting in BlogPagesElement needs to be fixed. This line + <?php foreach($data['BLOGS'] as $blogs) { ?> needs to be indented four more spaces. The code + </tr><?php } ?></table><?php } ?></div> + <?php + } + } is formatted awkwardly. I want braces to align according to one true brace. You shouldn't have multiple braces on a line. It makes it hard for me to determine if your code will generate stray tags.

@param and @return comments should give the type. The type should be one of string, int, bool, resource, object. For example, on the function function recentBlog($user, $group_ids, $is_admin, $limit = 5) in BlogModel. You have: @param $groupIds id's of the groups presumably this should have been: @param array $group_ids id's of the groups

All variable names in comments should also have $ in front of them.

A function prototype like: function deleteGroup($timestamp,$group_id) should be function deleteGroup($timestamp, $group_id) I think I had fixed these before. SQL should be upper case (there is a lower case and in the same method). Comment stars should not look like

   /**
   * 

but like

   /**
    * 

The formatting in the file managegroups_element.php isn't properly indented. It is getting very close to done. Hopefully, one more quick iteration will get a push-livable patch.

perepamallika 2013-12-15 19:10

Hello Professor,

I have made all the above changes. I have also applied the patch and the feature is working fine.

Thanks, Mallika

administrator 2013-12-15 19:59

Hi Mallika,

That patch still has errors that I had fixed in the code that I gave you. The upgrade_function.php should have had the line:

   addActivityAtId($db, 'db_activity_blogs_pages', "blogPages", 6);

that I had corrected.

It still generates errors when I go to Edit Blogs and Pages Notice: Undefined variable: i in /Applications/MAMP/htdocs/git/yioop/models/blog_model.php on line 228

You are still not following one true brace on editblogpages_element.php. I had corrected some of the error on this page but they are now all back.

Notice: Undefined variable: i in /Applications/MAMP/htdocs/git/yioop/models/blog_model.php on line 242

perepamallika 2013-12-17 03:13

Hi Professor,

I have uploaded the blogs and pages feature. I have also added the pages feature and also gave access control to pages. I tried my best to work with the code. It is getting huge and huge. I might have missed a few things, because of the number of lines of code. But, the functionality is working as expected.

Please do let me know if something is bad. I am just worried about both the patches now.

Thanks, Mallika

administrator 2013-12-17 12:40

Hey Mallika,

Now that I've pushed the register patch, your patch above does not apply:

error: patch failed: configs/createdb.php:81 error: configs/createdb.php: patch does not apply error: patch failed: controllers/admin_controller.php:83 error: controllers/admin_controller.php: patch does not apply warning: models/profile_model.php has type 100755, expected 100644 error: patch failed: models/user_model.php:239 error: models/user_model.php: patch does not apply

can you do a git pull, merge what needs to be merge and make a new patch?

Best, Chris

perepamallika 2013-12-17 12:42

Sure. I will upload a new patch

perepamallika 2013-12-17 12:43

Can you please look into the files and let me know if everything is looking fine.

administrator 2013-12-17 12:50

Mallika,

It roughly looked okay. It is hard to tell without being able to apply the patch.

chris

perepamallika 2013-12-17 14:37

Hi Professor,

I have uploaded a new patch. In this I have also added 'Blogs and Pages' feature to new registered user. I applied the patch and both blogs and pages features are working fine. I will upload configure.ini file in a bit.

Thanks, Mallika

administrator 2013-12-17 16:49

Hi Mallika,

Looking at your patch the two deletions below do not make sense to me. Please tell me why they are necessary or fix the patch.

Best, Chris

(1) in upgrade_functions.php, you seem to have used an old version when merging as table names delete the correct value and add an incorrect value:

@@ -543,10 +544,10 @@ function upgradeDatabaseVersion17(&$db)

    $db->execute("CREATE TABLE GROUPS (GROUP_ID INTEGER PRIMARY KEY
        $auto_increment ,GROUP_NAME VARCHAR(128), CREATED_TIME INT(11),

- CREATOR_ID INT(11))"); - $db->execute("CREATE TABLE USER_GROUP (USER_ID INTEGER , + CREATER_ID INT(11))"); + $db->execute("CREATE TABLE USER_GROUPS (USER_ID INTEGER ,

        GROUP_ID INTEGER,PRIMARY KEY (GROUP_ID, USER_ID) )");

- $db->execute("CREATE TABLE GROUP_ROLE (GROUP_ID INTEGER , + $db->execute("CREATE TABLE GROUP_ROLES (GROUP_ID INTEGER ,

        ROLE_ID INTEGER)");

(2) in user_model.php, you seem to be deleting your previous patch

- function addUser( $username,$password) + function addUser($username, $password, $limit = 1)

    {
        $this->db->selectDB(DB_NAME);

- $sql = "INSERT INTO USER(USER_NAME, PASSWORD, ACTIVE) VALUES ('". - $this->db->escapeString($username)."', '". - crawlCrypt($this->db->escapeString($password))."',1 ) "; - $result = $this->db->execute($sql); - } - - /** - * Register a user with firstname, lastname, username, email - * - * @param string $firstname the firstname of the user to be added - * @param string $lastname the lastname of the user to be added - * @param string $username the username of the user to be added - * @param string $email the email of the user to be added - * @param string $password the password of the user to be added - */ - function registerUser($firstname, $lastname, $username, $email, $password) - { - $this->db->selectDB(DB_NAME); - $sql = "INSERT INTO USER(FIRST_NAME, LAST_NAME, - USER_NAME, EMAIL,ACTIVE, PASSWORD, HASH) VALUES ('". - $this->db->escapeString($firstname)."', '". - $this->db->escapeString($lastname)."', '". - $this->db->escapeString($username)."', '". - $this->db->escapeString($email)."', 1,'". - crawlCrypt($this->db->escapeString($password))."','". - crawlCrypt($this->db->escapeString($username))."') "; + $sql = "INSERT INTO USER(USER_NAME, PASSWORD) VALUES ('". + $this->db->escapeString($username)."', '". + crawlCrypt($this->db->escapeString($password))."' ) ";

perepamallika 2013-12-17 16:53

Oh, that was my mistake. I will give you an other patch in a while professor. I am going through the slides and the report

-Mallika

perepamallika 2013-12-17 19:17

I have made the changes professor.

Thanks, Mallika

administrator 2014-06-16 16:02

Groups have morphed a fair bit since the patches in this issue last December. Groups with feeds and wikis and different kinds of access control are available as of 8f54f15cd

administrator 2014-06-16 16:02

Attachments:

Blogsfeature.patch

configure.ini

BlogsfeatureModified.patch

blogspages.patch

blogs_feature.patch

blogsfeature_revised.patch

blogspages_revised.patch

blogpages_dec17.patch

_binary ; ***** BEGIN LICENSE BLOCK *****
;  SeekQuarry/Yioop Open Source Pure PHP Search Engine, Crawler, and Indexer
;  Copyright (C) 2009 - 2013  Chris Pollett chris@pollett.org
;
;  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 BLOCK *****
;
; configure.ini
;
; en-US configuration file
;
[general]
;
; Strings to translate on various pages
;
[strings]
;
; /Applications/MAMP/htdocs/git/yioop//controllers
;
; admin_controller.php line: 147
admin_controller_login_successful = "Login Successful!!"
;
; admin_controller.php line: 152
admin_controller_login_failed = "Username or Password Incorrect!"
;
; admin_controller.php line: 157
admin_controller_login_to_config = "Login to continue configuration (default: u=root, p=)"
;
; admin_controller.php line: 161
admin_controller_status_updates_stopped = "Status updates have stopped."
;
; admin_controller.php line: 374
admin_controller_passwords_dont_match = "Typed passwords do not match."
;
; admin_controller.php line: 386
admin_controller_invalid_old_password = "Current password incorrect."
;
; admin_controller.php line: 393
admin_controller_change_password = "Password change successful!!"
;
; admin_controller.php line: 401
admin_controller_emails_dont_match = "Typed emails do not match."
;
; admin_controller.php line: 413
admin_controller_invalid_old_email = "Current email incorrect."
;
; admin_controller.php line: 420
admin_controller_change_email = "Email changed successful!!"
;
; admin_controller.php line: 452
admin_controller_select_username = "Select Name"
;
; admin_controller.php line: 499
admin_controller_select_rolename = "Select Role"
;
; admin_controller.php line: 525
admin_controller_passwords_dont_match = "Typed passwords do not match."
;
; admin_controller.php line: 532
admin_controller_username_exists = "Cannot Create User As Username Exists"
;
; admin_controller.php line: 539
admin_controller_username_added = "User Created"
;
; admin_controller.php line: 548
admin_controller_username_doesnt_exists = "Username Does Not Exist"
;
; admin_controller.php line: 555
admin_controller_username_deleted = "User Deleted"
;
; admin_controller.php line: 562
admin_controller_username_doesnt_exists = "Username Does Not Exist"
;
; admin_controller.php line: 568
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 574
admin_controller_rolename_added = "Role Name Added"
;
; admin_controller.php line: 585
admin_controller_username_doesnt_exists = "Username Does Not Exist"
;
; admin_controller.php line: 591
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 601
admin_controller_rolename_deleted = "Role Name Deleted"
;
; admin_controller.php line: 631
admin_controller_select_rolename = "Select Role"
;
; admin_controller.php line: 677
admin_controller_select_activityname = "Select Activity"
;
; admin_controller.php line: 710
admin_controller_rolename_exists = "Role Name Exists"
;
; admin_controller.php line: 720
admin_controller_rolename_added = "Role Name Added"
;
; admin_controller.php line: 731
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 739
admin_controller_rolename_deleted = "Role Name Deleted"
;
; admin_controller.php line: 745
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 751
admin_controller_activityname_doesnt_exists = "Activity Name Does not Exist"
;
; admin_controller.php line: 761
admin_controller_activity_added = "Activity Added"
;
; admin_controller.php line: 767
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 774
admin_controller_activityname_doesnt_exists = "Activity Name Does not Exist"
;
; admin_controller.php line: 786
admin_controller_activity_deleted = "Activity Deleted"
;
; admin_controller.php line: 826
admin_controller_select_groupname = "Select Group"
;
; admin_controller.php line: 847
admin_controller_select_groupname = "Select Group"
;
; admin_controller.php line: 877
admin_controller_select_rolename = "Select Role"
;
; admin_controller.php line: 909
admin_controller_select_username = "Select Name"
;
; admin_controller.php line: 952
admin_controller_groupname_exists = "Group Name Exists"
;
; admin_controller.php line: 962
admin_controller_groupname_added = "Group Name Added"
;
; admin_controller.php line: 968
admin_controller_groupname_doesnt_exists = "Group Name does not exists"
;
; admin_controller.php line: 974
admin_controller_groupname_deleted = "Group Name Deleted"
;
; admin_controller.php line: 980
admin_controller_username_doesnt_exists = "Username Does Not Exist"
;
; admin_controller.php line: 990
admin_controller_user_added = "User Added"
;
; admin_controller.php line: 1003
admin_controller_user_deleted = "User Deleted"
;
; admin_controller.php line: 1008
admin_controller_groupname_doesnt_exists = "Group Name does not exists"
;
; admin_controller.php line: 1014
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 1023
admin_controller_rolename_added = "Role Name Added"
;
; admin_controller.php line: 1028
admin_controller_groupname_doesnt_exists = "Group Name does not exists"
;
; admin_controller.php line: 1034
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 1046
admin_controller_role_deleted = "Role Deleted"
;
; admin_controller.php line: 1046
admin_controller_source_type = "Source type"
;
; admin_controller.php line: 1046
admin_controller_page_added = "Page added successfully!!"
;
; admin_controller.php line: 1046
admin_controller_blog_added = "Blog added successfully!!"
;
; admin_controller.php line: 1046
admin_controller_blog = "Blog"
;
; admin_controller.php line: 1046
admin_controller_page = "Page"
;
; admin_controller.php line: 1046
admin_controller_blog_deleted = "Blog deleted successfully"
;
; admin_controller.php line: 1046
admin_controller_blog_updated = "Blog updated successfully"
;
; admin_controller.php line: 1046
admin_controller_feed_added = "Added blog entry successfully"
;
; admin_controller.php line: 1046
admin_controller_feed_deleted = "Deleted blog entry successfully"
;
; admin_controller.php line: 1046
admin_controller_feed_updated = "Updated blog entry successfully"
;
; admin_controller.php line: 1046
admin_controller_group_added = "Added group to the blog successfully"
;
; admin_controller.php line: 1046
admin_controller_group_deleted = "Deleted group from the blog successfully"
;
; admin_controller.php line: 1094
admin_controller_stop_crawl = "Stopping crawl. . .This will take a moment to refresh."
;
; admin_controller.php line: 1108
admin_controller_resume_crawl = "Resuming crawl. . .This will take a moment to refresh."
;
; admin_controller.php line: 1138
admin_controller_delete_crawl_success = "Deleting Crawl. . .This will take a moment to refresh."
;
; admin_controller.php line: 1143
admin_controller_delete_crawl_fail = "Delete Crawl Failed!!"
;
; admin_controller.php line: 1150
admin_controller_set_index = "Setting Crawl To Use as Index"
;
; admin_controller.php line: 1175
admin_controller_starting_new_crawl = "Starting New Crawl!"
;
; admin_controller.php line: 1185
admin_controller_no_description = "No Description for Crawl"
;
; admin_controller.php line: 1318
admin_controller_use_below = "Use options below"
;
; admin_controller.php line: 1319
admin_controller_use_defaults = "Use Yioop! defaults"
;
; admin_controller.php line: 1321
admin_controller_use_below = "Use options below"
;
; admin_controller.php line: 1325
admin_controller_previous_crawl = "Previous Crawl:"
;
; admin_controller.php line: 1418
admin_controller_breadth_first = "Breadth First"
;
; admin_controller.php line: 1420
admin_controller_page_importance = "Page Importance"
;
; admin_controller.php line: 1486
admin_controller_urls_injected = "Urls Injected!"
;
; admin_controller.php line: 1497
admin_controller_update_seed_info = "Updating Seed Site Info!"
;
; admin_controller.php line: 1589
admin_controller_select_crawl = "Select Crawl"
;
; admin_controller.php line: 1590
admin_controller_default_crawl = "Default Crawl"
;
; admin_controller.php line: 1592
admin_controller_select_crawl = "Select Crawl"
;
; admin_controller.php line: 1594
admin_controller_default_crawl = "Default Crawl"
;
; admin_controller.php line: 1621
admin_controller_unnamed = "Unnamed Crawl"
;
; admin_controller.php line: 1626
admin_controller_mix_created = "Crawl Mix Created!"
;
; admin_controller.php line: 1635
admin_controller_set_index = "Setting Crawl To Use as Index"
;
; admin_controller.php line: 1645
admin_controller_mix_doesnt_exists = "Mix to Delete Does not Exist!"
;
; admin_controller.php line: 1653
admin_controller_mix_deleted = "Crawl Mix Deleted!"
;
; admin_controller.php line: 1689
editmix_element_add_crawls = "Add Crawls"
;
; admin_controller.php line: 1691
editmix_element_num_results = "Number of Results"
;
; admin_controller.php line: 1692
editmix_element_del_grp = "Delete Group"
;
; admin_controller.php line: 1693
editmix_element_weight = "Weight"
;
; admin_controller.php line: 1694
editmix_element_name = "Name"
;
; admin_controller.php line: 1695
editmix_add_keywords = "Keywords"
;
; admin_controller.php line: 1696
editmix_element_actions = "Actions"
;
; admin_controller.php line: 1697
editmix_add_query = "Add Query"
;
; admin_controller.php line: 1698
editmix_element_delete = "Delete"
;
; admin_controller.php line: 1750
admin_controller_mix_saved = "Crawl Mix Changes Saved!"
;
; admin_controller.php line: 1801
admin_controller_use_below = "Use options below"
;
; admin_controller.php line: 1802
admin_controller_use_defaults = "Use Yioop! defaults"
;
; admin_controller.php line: 1804
admin_controller_use_below = "Use options below"
;
; admin_controller.php line: 1808
admin_controller_previous_crawl = "Previous Crawl:"
;
; admin_controller.php line: 1813
admin_controller_recrawl_never = "Never"
;
; admin_controller.php line: 1814
admin_controller_recrawl_1day = "1 days"
;
; admin_controller.php line: 1815
admin_controller_recrawl_2day = "2 days"
;
; admin_controller.php line: 1816
admin_controller_recrawl_3day = "3 days"
;
; admin_controller.php line: 1817
admin_controller_recrawl_7day = "7 days"
;
; admin_controller.php line: 1818
admin_controller_recrawl_14day = "14 days"
;
; admin_controller.php line: 2083
admin_controller_page_options_updated = "Page Options Updated!"
;
; admin_controller.php line: 2109
admin_controller_page_options_running_tests = "Running Tests!"
;
; admin_controller.php line: 2270
admin_controller_new_classifier = "New classifier created."
;
; admin_controller.php line: 2273
admin_controller_classifier_exists = "A classifier with that name already exists."
;
; admin_controller.php line: 2285
admin_controller_no_classifier = "No classifier with that name."
;
; admin_controller.php line: 2304
admin_controller_finalizing_classifier = "Finalizing classifier."
;
; admin_controller.php line: 2327
admin_controller_classifier_deleted = "Classifier deleted."
;
; admin_controller.php line: 2331
admin_controller_no_classifier = "No classifier with that name."
;
; admin_controller.php line: 2348
admin_controller_finalizing_classifier = "Finalizing classifier."
;
; admin_controller.php line: 2391
admin_controller_classifier_exists = "A classifier with that name already exists."
;
; admin_controller.php line: 2402
editclassifier_load_failed = "Failed to load documents"
;
; admin_controller.php line: 2404
editclassifier_loading = "Loading"
;
; admin_controller.php line: 2406
editclassifier_added_examples = "Added {1} {2} examples"
;
; admin_controller.php line: 2408
editclassifier_label_update_failed = "Failed to update labels."
;
; admin_controller.php line: 2410
editclassifier_updating = "Updating"
;
; admin_controller.php line: 2412
editclassifier_acc_update_failed = "Failed to update accuracy"
;
; admin_controller.php line: 2414
editclassifier_na = "N/A"
;
; admin_controller.php line: 2416
editclassifier_no_docs = "No documents"
;
; admin_controller.php line: 2418
editclassifier_num_docs = "{1}{2} documents"
;
; admin_controller.php line: 2420
editclassifier_in_class = "In Class"
;
; admin_controller.php line: 2422
editclassifier_not_in_class = "Not In Class"
;
; admin_controller.php line: 2424
editclassifier_skip = "Skip"
;
; admin_controller.php line: 2426
editclassifier_prediction = "Prediction: {1}"
;
; admin_controller.php line: 2428
editclassifier_scores = "{1}%% confidence, {2}%% disagreement"
;
; admin_controller.php line: 2472
admin_controller_results_editor_update = "Filter Pages Updated!"
;
; admin_controller.php line: 2486
admin_controller_edited_pages = "Select a Previously Edited URL"
;
; admin_controller.php line: 2499
admin_controller_results_editor_need_url = "Result Page Update needs to Specify the URL!"
;
; admin_controller.php line: 2505
admin_controller_results_editor_page_updated = "Result Page Updated!"
;
; admin_controller.php line: 2518
admin_controller_results_editor_page_loaded = "Page Loaded!"
;
; admin_controller.php line: 2564
admin_controller_select_machine = "Select Machine"
;
; admin_controller.php line: 2635
admin_controller_machine_added = "Machine Added!"
;
; admin_controller.php line: 2642
admin_controller_machine_exists = "Machine Name Already Exists; Please Delete First!"
;
; admin_controller.php line: 2646
admin_controller_machine_incomplete = "Missing Fields From Machine Form!"
;
; admin_controller.php line: 2655
admin_controller_machine_doesnt_exists = "Machine Name does not Exists!"
;
; admin_controller.php line: 2672
admin_controller_stop_service_first = "Machine in use. Please stop the service running on it!"
;
; admin_controller.php line: 2685
admin_controller_machine_deleted = "Machine Deleted!"
;
; admin_controller.php line: 2698
admin_controller_news_mode_updated = "News Update Mode Changed!"
;
; admin_controller.php line: 2704
admin_controller_news_mode_updated = "News Update Mode Changed!"
;
; admin_controller.php line: 2711
admin_controller_news_update_failed = "News Update Mode Change Failed!"
;
; admin_controller.php line: 2774
admin_controller_no_machine_log = "No Log File Found."
;
; admin_controller.php line: 2803
admin_controller_machine_servers_updated = "Machine&#039;s Servers Updated!"
;
; admin_controller.php line: 2807
admin_controller_machine_no_action = "Unable to Perform Action!"
;
; admin_controller.php line: 2840
admin_controller_select_localename = "Select Locale"
;
; admin_controller.php line: 2884
admin_controller_locale_added = "Locale Added!"
;
; admin_controller.php line: 2891
admin_controller_localename_doesnt_exists = "Locale Does Not Exist!"
;
; admin_controller.php line: 2900
admin_controller_localename_deleted = "Locale Deleted"
;
; admin_controller.php line: 2909
admin_controller_select_staticpages = "Select a page"
;
; admin_controller.php line: 2928
admin_controller_staticpage_updated = "Static Page Updated!"
;
; admin_controller.php line: 2955
admin_controller_localestrings_updated = "Locale Strings Updated!"
;
; admin_controller.php line: 3012
admin_controller_php_version = "PHP Version 5.3 or Newer"
;
; admin_controller.php line: 3020
admin_controller_no_write_config_php = "configs/config.php not web server writable."
;
; admin_controller.php line: 3025
admin_controller_no_write_work_dir = "Work directory needs to be writable by web server. "
;
; admin_controller.php line: 3030
admin_controller_post_size_small = "php.ini file variable post_max_size should be at least 2M"
;
; admin_controller.php line: 3036
admin_controller_missing_required = "The following required items were missing: %s"
;
; admin_controller.php line: 3059
admin_controller_missing_optional = "The following optional items were missing: %s"
;
; admin_controller.php line: 3064
admin_controller_check_passed = "Check Passed."
;
; admin_controller.php line: 3069
admin_controller_using_local_config = "Using configs/local_config.php so changing work directory above may not work."
;
; admin_controller.php line: 3094
admin_controller_media_kind = "Media Kind"
;
; admin_controller.php line: 3095
admin_controller_video = "Video"
;
; admin_controller.php line: 3096
admin_controller_rss_feed = "RSS"
;
; admin_controller.php line: 3110
admin_controller_sources_indexes = "Index/Mix to Use"
;
; admin_controller.php line: 3163
admin_controller_media_source_added = "Media Source Added!"
;
; admin_controller.php line: 3171
admin_controller_media_source_deleted = "Media Source Deleted!"
;
; admin_controller.php line: 3187
admin_controller_subsearch_added = "Subsearch Added!"
;
; admin_controller.php line: 3195
admin_controller_subsearch_deleted = "Subsearch Deleted!"
;
; admin_controller.php line: 3270
admin_controller_configure_use_absolute_path = "Must use an Absolute path for Work Directory"
;
; admin_controller.php line: 3282
admin_controller_configure_diff_base_dir = "Work Directory cannot be contained in Yioop folder!"
;
; admin_controller.php line: 3315
admin_controller_configure_work_dir_set = "Work Directory Set! You may need to re-login!"
;
; admin_controller.php line: 3329
admin_controller_name_your_bot = "Please Name Your robot"
;
; admin_controller.php line: 3352
admin_controller_configure_work_profile_made = "Working Directory and Profile Created!"
;
; admin_controller.php line: 3365
admin_controller_configure_no_set_config = "Unable to Update config.php File!"
;
; admin_controller.php line: 3377
admin_controller_configure_no_create_profile = "Unable to Create Profile!"
;
; admin_controller.php line: 3388
admin_controller_configure_work_dir_invalid = "Work Directory is Invalid! Cannot Create Profile!"
;
; admin_controller.php line: 3400
admin_controller_configure_work_dir_invalid = "Work Directory is Invalid! Cannot Create Profile!"
;
; admin_controller.php line: 3448
admin_controller_configure_no_change_db = "Problem Updating Database!"
;
; admin_controller.php line: 3463
admin_controller_configure_profile_change = "Profile Updated!"
;
; admin_controller.php line: 3478
admin_controller_configure_no_change_profile = "There was a Problem Updating Profile!"
;
; admin_controller.php line: 3516
admin_controller_describe_robot = "Please Describe Your Robot"
;
; machine_controller.php line: 182
machine_controller_nolines = "No Lines Match Filter!"
;
; register_controller.php line: 117
register_controller_error_fields = "Create Account"
;
; register_controller.php line: 127
register_controller_account_created = "Account created successfully!!"
;
; search_controller.php line: 326
search_controller_logout_successful = "Logout Successful!!"
;
; search_controller.php line: 516
search_controller_mix_info = "Using Crawl Mix: %s"
;
; search_controller.php line: 522
search_controller_crawl_info = "Index: %s -- Size: %s pages/%s urls"
;
; search_controller.php line: 552
search_controller_search = "Search"
;
; search_controller.php line: 656
search_controller_no_index_set = "No Search Index Set For Use!"
;
; search_controller.php line: 659
search_controller_no_index_set = "No Search Index Set For Use!"
;
; search_controller.php line: 1363
search_controller_no_archive_page = "The website in question has requested this page not be archived."
;
; search_controller.php line: 1415
search_controller_original_page = "This image appeared on the page:"
;
; search_controller.php line: 1433
search_controller_extracted_title = "Extracted Title"
;
; search_controller.php line: 1435
search_controller_extracted_description = "Extracted Description"
;
; search_controller.php line: 1437
search_controller_extracted_links = "Extracted Links"
;
; search_controller.php line: 1442
search_controller_extracted_allow_paths = "Extracted Allowed To Crawl Paths"
;
; search_controller.php line: 1448
search_controller_extracted_disallow_paths = "Extracted Disallowed To Crawl Paths"
;
; search_controller.php line: 1454
search_controller_crawl_delay = "YioopBot Crawl Delay"
;
; search_controller.php line: 1525
search_controller_cache_comment = "Yioop Cache Page... This page has been modified to add a robots directive,  make links absolute, add extracted summaries, and to highlight query terms."
;
; search_controller.php line: 1571
search_controller_cached_version = "This cached version of %s was obtained by the Yioop crawler on %s."
;
; search_controller.php line: 1686
search_controller_header_summaries = "Toggle Extracted Headers and Summaries"
;
; search_controller.php line: 1810
search_controller_history = "Toggle History"
;
; search_controller.php line: 1986
search_controller_all_cached = "All Cached Versions - Change Year and/or Months to see Links"
;
; search_controller.php line: 2017
search_controller_year = "Year:"
;
; search_controller.php line: 2018
search_controller_month = "Month:"
;
; settings_controller.php line: 134
settings_controller_crawl_mix = "crawl mix"
;
; settings_controller.php line: 151
settings_controller_settings_saved = "Settings Saved!"
;
; /Applications/MAMP/htdocs/git/yioop//views
;
; admin_view.php line: 88
admin_view_admin = "Admin"
;
; admin_view.php line: 108
adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
;
; crawlstatus_view.php line: 60
crawlstatus_view_currently_processing = "Currently Processing"
;
; crawlstatus_view.php line: 61
crawlstatus_view_description = "Description:"
;
; crawlstatus_view.php line: 66
crawlstatus_view_starting_crawl = "Starting New Crawl..."
;
; crawlstatus_view.php line: 70
managecrawls_element_stop_crawl = "Stop Crawl"
;
; crawlstatus_view.php line: 74
crawlstatus_view_resuming_crawl = "Resuming Crawl"
;
; crawlstatus_view.php line: 78
managecrawls_element_stop_crawl = "Stop Crawl"
;
; crawlstatus_view.php line: 82
crawlstatus_view_shutdown_queue = "Shutting Down Queue..."
;
; crawlstatus_view.php line: 85
crawlstatus_view_closing_dict = "Closing Crawl Dictionary..."
;
; crawlstatus_view.php line: 88
crawlstatus_view_run_plugins = "Running Post Processing Plugins..."
;
; crawlstatus_view.php line: 96
managecrawls_element_stop_crawl = "Stop Crawl"
;
; crawlstatus_view.php line: 104
crawlstatus_view_set_index = "Set as Index"
;
; crawlstatus_view.php line: 107
crawlstatus_view_search_index = "Search Index"
;
; crawlstatus_view.php line: 115
crawlstatus_view_changeoptions = "Change Crawl Options"
;
; crawlstatus_view.php line: 117
crawlstatus_view_no_description = "No active crawl"
;
; crawlstatus_view.php line: 122
crawlstatus_view_timestamp = "Timestamp:"
;
; crawlstatus_view.php line: 124
crawlstatus_view_time_started = "Time started:"
;
; crawlstatus_view.php line: 130
crawlstatus_view_indexer_memory = "Indexer Peak Memory:"
;
; crawlstatus_view.php line: 132
crawlstatus_view_scheduler_memory = "Scheduler Peak Memory:"
;
; crawlstatus_view.php line: 135
crawlstatus_view_queue_memory = "Server Peak Memory:"
;
; crawlstatus_view.php line: 140
crawlstatus_view_no_mem_data = "No Memory Data Yet"
;
; crawlstatus_view.php line: 144
crawlstatus_view_fetcher_memory = "Fetcher Peak Memory:"
;
; crawlstatus_view.php line: 149
crawlstatus_view_no_mem_data = "No Memory Data Yet"
;
; crawlstatus_view.php line: 152
crawlstatus_view_webapp_memory = "Web App Peak Memory:"
;
; crawlstatus_view.php line: 157
crawlstatus_view_no_mem_data = "No Memory Data Yet"
;
; crawlstatus_view.php line: 160
crawlstatus_view_urls_per_hour = "Visited Urls/Hour:"
;
; crawlstatus_view.php line: 168
crawlstatus_view_visited_urls = "Visited Urls Count:"
;
; crawlstatus_view.php line: 172
crawlstatus_view_total_urls = "Total Urls Seen:"
;
; crawlstatus_view.php line: 175
crawlstatus_view_most_recent_fetcher = "Most Recent Fetcher:"
;
; crawlstatus_view.php line: 184
crawlstatus_view_no_fetcher = "No Fetcher Queries Yet"
;
; crawlstatus_view.php line: 188
crawlstatus_view_most_recent_urls = "Most Recent Urls"
;
; crawlstatus_view.php line: 198
crawlstatus_view_no_recent_urls = "No Recent Urls (Could mean only link data)"
;
; crawlstatus_view.php line: 202
crawlstatus_view_previous_crawls = "Previous Crawls"
;
; crawlstatus_view.php line: 208
crawlstatus_view_description = "Description:"
;
; crawlstatus_view.php line: 209
crawlstatus_view_timestamp = "Timestamp:"
;
; crawlstatus_view.php line: 210
crawlstatus_view_url_counts = "Visited/Extracted Urls:"
;
; crawlstatus_view.php line: 211
crawlstatus_view_actions = "Actions"
;
; crawlstatus_view.php line: 219
crawlstatus_view_statistics = "Statistics"
;
; crawlstatus_view.php line: 230
crawlstatus_view_resume = "Resume"
;
; crawlstatus_view.php line: 232
crawlstatus_view_no_resume = "Closed"
;
; crawlstatus_view.php line: 239
crawlstatus_view_set_index = "Set as Index"
;
; crawlstatus_view.php line: 242
crawlstatus_view_search_index = "Search Index"
;
; crawlstatus_view.php line: 249
crawlstatus_view_delete = "Delete"
;
; crawlstatus_view.php line: 257
crawlstatus_view_no_previous_crawl = "No Previous Crawls"
;
; /Applications/MAMP/htdocs/git/yioop//views/elements
;
; activity_element.php line: 57
activity_element_activities = "Activities"
;
; configure_element.php line: 80
configure_element_work_directory = "Search Engine Work Directory"
;
; configure_element.php line: 86
configure_element_load_or_create = "Load or Create"
;
; configure_element.php line: 101
configure_element_component_check = "Component Check"
;
; configure_element.php line: 105
configure_element_profile_settings = "Profile Settings"
;
; configure_element.php line: 108
configure_element_toggle_advanced = "Toggle Advanced Settings"
;
; configure_element.php line: 114
configure_element_default_language = "Default Language:"
;
; configure_element.php line: 121
configure_element_debug_display = "Debug Display"
;
; configure_element.php line: 126
configure_element_error_info = "Error Info"
;
; configure_element.php line: 131
configure_element_query_info = "Query Info"
;
; configure_element.php line: 136
configure_element_test_info = "Test Info"
;
; configure_element.php line: 140
configure_element_user_accounts = "User Accounts"
;
; configure_element.php line: 148
configure_element_email_registration = "Email Registration"
;
; configure_element.php line: 154
configure_element_site_access = "Search Access"
;
; configure_element.php line: 159
configure_element_web_access = "Web"
;
; configure_element.php line: 164
configure_element_rss_access = "RSS"
;
; configure_element.php line: 169
configure_element_api_access = "API"
;
; configure_element.php line: 174
configure_element_database_setup = "Database Set-up"
;
; configure_element.php line: 176
configure_element_database_system = "Database System:"
;
; configure_element.php line: 182
configure_element_databasename = "Database Name:"
;
; configure_element.php line: 189
configure_element_databasehost = "Hostname:"
;
; configure_element.php line: 195
configure_element_databaseuser = "Database User:"
;
; configure_element.php line: 202
configure_element_databasepassword = "Database Password:"
;
; configure_element.php line: 211
configure_element_name_server = "Name Server Set-up"
;
; configure_element.php line: 213
configure_element_name_server_key = "Server Key:"
;
; configure_element.php line: 219
configure_element_name_server_url = "Name Server URL:"
;
; configure_element.php line: 226
configure_element_use_memcache = "Use Memcache:"
;
; configure_element.php line: 233
configure_element_memcache_servers = "Memcache Servers"
;
; configure_element.php line: 242
configure_element_use_filecache = "Use Filecache:"
;
; configure_element.php line: 252
configure_element_crawl_robot = "Crawl Robot Set-up"
;
; configure_element.php line: 254
configure_element_robot_name = "Crawl Robot Name:"
;
; configure_element.php line: 262
configure_element_robot_instance = "Robot Instance:"
;
; configure_element.php line: 269
configure_element_robot_description = "Robot Description"
;
; configure_element.php line: 278
configure_element_submit = "Submit"
;
; crawloptions_element.php line: 62
crawloptions_element_back_to_manage = "Back"
;
; crawloptions_element.php line: 65
crawloptions_element_modify_active_crawl = "Modify Active Crawl"
;
; crawloptions_element.php line: 67
crawloptions_element_edit_crawl_options = "Edit Crawl Options"
;
; crawloptions_element.php line: 90
crawloptions_element_web_crawl = "Web Crawl"
;
; crawloptions_element.php line: 100
crawloptions_element_archive_crawl = "Archive Crawl"
;
; crawloptions_element.php line: 107
crawloptions_element_load_options = "Get Crawl Options From:"
;
; crawloptions_element.php line: 112
crawloptions_element_crawl_order = "Crawl Order:"
;
; crawloptions_element.php line: 119
crawloptions_element_restrict_by_url = "Restrict Sites By Url:"
;
; crawloptions_element.php line: 127
crawloptions_element_allowed_to_crawl = "Allowed To Crawl Sites"
;
; crawloptions_element.php line: 132
crawloptions_element_disallowed_and_quota_sites = "Disallowed Sites/Sites with Quotas"
;
; crawloptions_element.php line: 139
crawloptions_element_seed_sites = "Seed Sites"
;
; crawloptions_element.php line: 145
crawloptions_element_inject_sites = "Sites to Inject into Current Crawl"
;
; crawloptions_element.php line: 153
crawloptions_element_reindex_crawl = "Crawl or Arc Folder to Re-index:"
;
; crawloptions_element.php line: 159
crawloptions_element_need_api_for_mix = "Yioop API access required for mix archive crawls  "
;
; crawloptions_element.php line: 167
crawloptions_element_save_options = "Save Options"
;
; editclassifier_element.php line: 63
editclassifier_back = "Back"
;
; editclassifier_element.php line: 65
editclassifier_edit_classifier = "Edit Classifier"
;
; editclassifier_element.php line: 77
editclassifier_classifier_label = "Classifier Label:"
;
; editclassifier_element.php line: 82
editclassifier_change = "Change"
;
; editclassifier_element.php line: 85
editclassifier_statistics = "Statistics"
;
; editclassifier_element.php line: 86
editclassifier_positive_examples = "Positive Examples:"
;
; editclassifier_element.php line: 89
editclassifier_negative_examples = "Negative Examples:"
;
; editclassifier_element.php line: 92
editclassifier_accuracy = "Accuracy:"
;
; editclassifier_element.php line: 97
editclassifier_na = "N/A"
;
; editclassifier_element.php line: 102
editclassifier_update = "Update"
;
; editclassifier_element.php line: 103
editclassifier_add_examples = "Add Examples"
;
; editclassifier_element.php line: 107
editclassifier_source = "Source:"
;
; editclassifier_element.php line: 111
editclassifier_default_crawl = "Default Crawl"
;
; editclassifier_element.php line: 121
editclassifier_label_by_hand = "Label By Hand"
;
; editclassifier_element.php line: 123
editclassifier_all_in_class = "All In Class"
;
; editclassifier_element.php line: 125
editclassifier_none_in_class = "None In Class"
;
; editclassifier_element.php line: 130
editclassifier_keywords = "Keywords:"
;
; editclassifier_element.php line: 135
editclassifier_load = "Load"
;
; editclassifier_element.php line: 141
editclassifier_finalize = "Finalize"
;
; editclassifier_element.php line: 147
editclassifier_no_documents = "No Documents"
;
; editlocales_element.php line: 62
editlocales_element_back_to_manage = "Back"
;
; editlocales_element.php line: 64
editlocales_element_edit_locale = "Edit Locale: %s"
;
; editlocales_element.php line: 76
editlocales_element_static_pages = "Static Pages:"
;
; editlocales_element.php line: 110
editlocales_element_submit = "Save"
;
; editmix_element.php line: 58
editmix_element_back_to_mix = "Back"
;
; editmix_element.php line: 60
mixcrawls_element_edit_mix = "Edit Crawl Mix"
;
; editmix_element.php line: 71
mixcrawls_element_mix_name = "Mix Name:"
;
; editmix_element.php line: 77
mixcrawls_element_mix_components = "Mix Components"
;
; editmix_element.php line: 80
mixcrawls_element_add_group = "Add Group"
;
; editmix_element.php line: 86
mixcrawls_element_save_button = "Save"
;
; editstatic_element.php line: 64
editlocales_element_back_to_manage = "Back"
;
; editstatic_element.php line: 78
editstatic_element_locale_name = "Current Locale: %s"
;
; editstatic_element.php line: 82
editstatic_element_page = "Editing: %s"
;
; editstatic_element.php line: 89
editstatic_element_savebutton = "Save"
;
; footer_element.php line: 63
footer_element_blog = "Blog"
;
; footer_element.php line: 65
footer_element_privacy = "Privacy"
;
; footer_element.php line: 67
footer_element_bot = "YioopBot"
;
; footer_element.php line: 73
footer_element_developed_seek_quarry = "Developed at SeekQuarry"
;
; footer_element.php line: 76
footer_element_copyright_yioop = "(c) 2013 Yioop!"
;
; footer_element.php line: 78
footer_element_php_search_engine = "PHP Search Engine"
;
; machinelog_element.php line: 61
machinelog_element_back_to_manage = "Back"
;
; machinelog_element.php line: 66
machinelog_element_filter = "Filter:"
;
; machinelog_element.php line: 73
machinelog_element_log_file = "%s Log File"
;
; machinelog_element.php line: 78
machinelog_element_refresh_off = "Turn Auto Refresh Off"
;
; machinelog_element.php line: 83
machinelog_element_refresh_on = "Turn Auto Refresh On"
;
;createblogpages_element.php line: 58
createblogpages_element_edit_blogpages = "Create Blogs and Pages"
;
;createblogpages_element.php line: 58
createblogpages_element_sourcetype = "Source Type:"
;
;createblogpages_element.php line: 58
createblogpages_element_typename = "Title:"
;
;createblogpages_element.php line: 58
createblogpages_element_add_group = "Add Group:"
;
;createblogpages_element.php line: 58
createblogpages_element_description = "Description"
;
;createblogpages_element.php line: 58
createblogpages_element_save_page = "Save"
;
;blogpages_element.php line: 58
blogpages_element_search = "Search"
;
;blogpages_element.php line: 58
blogpages_element_title = "Title"
;
;blogpages_element.php line: 58
blogpages_element_sourcetype = "Type"
;
;blogpages_element.php line: 58
blogpages_element_action = "Action"
;
;blogpages_element.php line: 58
blogpages_element_deleteblog = "Blog deleted successfully"
;
;editblogpages_element.php line: 80
editblogpages_element_edit_settings = "Settings"
;
;editblogpages_element.php line: 80
editblgpages_element_submit = "Submit"
;
;editblogpages_element.php line: 80
editblogpages_element_transfer = "Transfer Admin"
;
;editblogpages_element.php line: 80
editblogpages_element_add_blogentry = "Add Blog Entry"
;
;editblogpages_element.php line: 80
editblogpages_element_sourcetype = "Source Type"
;
;editblogpages_element.php line: 80
editblogpages_element_typename = "Title"
;
;editblogpages_element.php line: 80
editblogpages_element_description  = "Description"
;
;editblogpages_element.php line: 80
editblogpages_element_save_page = "Save"
;
;editblogpages_element.php line: 80
editblogpages_element_feeditems = "Title"
;
;editblogpages_element.php line: 80
editblogpages_element_feeditems = "Description"
;
; manageaccount_element.php line: 56
manageaccount_element_change_email = "Change Email"
;
; manageaccount_element.php line: 66
manageaccount_element_old_email = "Old Email:"
;
; manageaccount_element.php line: 72
manageaccount_element_new_email = "New Email:"
;
; manageaccount_element.php line: 77
manageaccount_element_retype_email = "Retype New Email:"
;
; manageaccount_element.php line: 85
manageaccount_element_save = "Save"
;
; manageaccount_element.php line: 89
manageaccount_element_change_password = "Change Account Password"
;
; manageaccount_element.php line: 99
manageaccount_element_old_password = "Old Password: "
;
; manageaccount_element.php line: 104
manageaccount_element_new_password = "New Password: "
;
; manageaccount_element.php line: 109
manageaccount_element_retype_password = "Retype Password: "
;
; manageaccount_element.php line: 117
manageaccount_element_save = "Save"
;
; manageclassifiers_element.php line: 58
manageclassifiers_manage_classifiers = "Manage Classifiers"
;
; manageclassifiers_element.php line: 66
manageclassifiers_classifier_name = "Classifier Name:"
;
; manageclassifiers_element.php line: 71
manageclassifiers_create_button = "Create"
;
; manageclassifiers_element.php line: 75
manageclassifiers_available_classifiers = "Available Classifiers"
;
; manageclassifiers_element.php line: 78
manageclassifiers_label_col = "Label"
;
; manageclassifiers_element.php line: 79
manageclassifiers_positive_col = "Positive"
;
; manageclassifiers_element.php line: 80
manageclassifiers_negative_col = "Negative"
;
; manageclassifiers_element.php line: 82
manageclassifiers_actions_col = "Actions"
;
; manageclassifiers_element.php line: 95
manageclassifiers_edit = "Edit"
;
; manageclassifiers_element.php line: 98
manageclassifiers_finalized = "Finalized"
;
; manageclassifiers_element.php line: 104
manageclassifiers_finalize = "Finalize"
;
; manageclassifiers_element.php line: 106
manageclassifiers_finalize = "Finalize"
;
; manageclassifiers_element.php line: 109
manageclassifiers_finalizing = "Finalizing"
;
; manageclassifiers_element.php line: 116
manageclassifiers_delete = "Delete"
;
; managecrawls_element.php line: 56
managecrawls_element_create_crawl = "Create Crawl"
;
; managecrawls_element.php line: 65
managecrawls_element_description = "Name"
;
; managecrawls_element.php line: 71
managecrawls_element_start_new_crawl = "Start New Crawl"
;
; managecrawls_element.php line: 75
managecrawls_element_options = "Options"
;
; managecrawls_element.php line: 79
managecrawls_element_awaiting_status = "Awaiting Crawl Status"
;
; managecrawls_element.php line: 96
managecrawls_element_up_longer_update = "Crawl Status No Longer Updating"
;
; managegroups_element.php line: 73
managegroups_element_transfer_admin = "Are you sure you want to transfer the admin rights?"
;
; managegroups_element.php line: 83
managegroups_element_add_group = "Add Group"
;
; managegroups_element.php line: 94
managegroups_element_groupname = "Name:"
;
; managegroups_element.php line: 99
managegroups_element_submit = "Submit"
;
; managegroups_element.php line: 105
managegroups_element_delete_group = "Delete Group"
;
; managegroups_element.php line: 109
managegroups_element_delete_groupname = "Are you sure you want to delete the Group?"
;
; managegroups_element.php line: 118
manageusers_element_delete_groupname = "Name:"
;
; managegroups_element.php line: 125
managegroups_element_submit = "Submit"
;
; managegroups_element.php line: 131
managegroups_element_view_groups = "View Groups"
;
; managegroups_element.php line: 142
managegroups_element_select_group = "Name: "
;
; managegroups_element.php line: 166
managegroups_element_add_user = "Add User: "
;
; managegroups_element.php line: 174
managegroups_element_submit = "Submit"
;
; managegroups_element.php line: 200
managegroups_element_delete_groupuser = "Do you want to remove the user from the Group?"
;
; managegroups_element.php line: 202
managegroups_element_delete = "Delete"
;
; managegroups_element.php line: 208
managegroups_element_transfer = "Transfer Admin"
;
; managegroups_element.php line: 230
managegroups_element_add_group_role = "Add Role: "
;
; managegroups_element.php line: 238
managegroups_element_submit = "Submit"
;
; managegroups_element.php line: 260
managegroups_element_delete = "Delete"
;
; managelocales_element.php line: 59
managelocales_element_add_locale = "Add Locale"
;
; managelocales_element.php line: 69
managelocales_element_localenamelabel = "Locale Name:"
;
; managelocales_element.php line: 75
managelocales_element_localetaglabel = "Locale Tag:"
;
; managelocales_element.php line: 79
managelocales_element_writingmodelabel = "Writing Mode:"
;
; managelocales_element.php line: 92
managelocales_element_submit = "Submit"
;
; managelocales_element.php line: 98
managelocales_element_delete_locale = "Delete Locale"
;
; managelocales_element.php line: 108
managelocales_element_delete_localelabel = "Locale Name:"
;
; managelocales_element.php line: 112
managelocales_element_submit = "Submit"
;
; managelocales_element.php line: 117
managelocales_element_locale_list = "Locale List"
;
; managelocales_element.php line: 120
managelocales_element_localename = "Locale Name"
;
; managelocales_element.php line: 121
managelocales_element_localetag = "Locale Tag"
;
; managelocales_element.php line: 122
managelocales_element_writingmode = "Writing Mode"
;
; managelocales_element.php line: 124
managelocales_element_percenttranslated = "Percent Translated"
;
; managemachines_element.php line: 58
managemachines_element_add_machine = "Add Machine"
;
; managemachines_element.php line: 68
managemachines_element_machine_name = "Machine Name:"
;
; managemachines_element.php line: 74
managemachines_element_machineurl = "Machine Url:"
;
; managemachines_element.php line: 78
managemachines_element_is_mirror = "Is Mirror:"
;
; managemachines_element.php line: 83
managemachines_element_parent_name = "Parent Name:"
;
; managemachines_element.php line: 87
admin_controller_select_machine = "Select Machine"
;
; managemachines_element.php line: 91
managemachines_element_has_queueserver = "Has Queue Server:"
;
; managemachines_element.php line: 95
managemachines_element_num_fetchers = "Number of Fetchers:"
;
; managemachines_element.php line: 100
managemachines_element_submit = "Submit"
;
; managemachines_element.php line: 105
managemachines_element_delete_machine = "Delete Machine"
;
; managemachines_element.php line: 114
managemachines_element_machine_name = "Machine Name:"
;
; managemachines_element.php line: 118
admin_controller_select_machine = "Select Machine"
;
; managemachines_element.php line: 120
managemachines_element_submit = "Submit"
;
; managemachines_element.php line: 125
managemachines_element_machine_info = "Machine Information"
;
; managemachines_element.php line: 128
managemachines_element_awaiting_status = "Awaiting statuses of machines..."
;
; managemachines_element.php line: 145
managemachines_element_no_longer_update = "Machine status no longer updating..."
;
; manageroles_element.php line: 57
manageroles_element_add_role = "Add Role"
;
; manageroles_element.php line: 67
manageroles_element_rolename = "Role Name: "
;
; manageroles_element.php line: 71
manageroles_element_submit = "Submit"
;
; manageroles_element.php line: 76
manageroles_element_delete_role = "Delete Role"
;
; manageroles_element.php line: 86
manageusers_element_delete_rolename = "Role Name:"
;
; manageroles_element.php line: 90
manageroles_element_submit = "Submit"
;
; manageroles_element.php line: 94
manageroles_element_view_role_activities = "View Role Activities"
;
; manageroles_element.php line: 103
manageusers_element_select_role = "Role Name: "
;
; manageroles_element.php line: 123
manageusers_element_add_activity = "Add Activity:"
;
; manageroles_element.php line: 128
manageroles_element_submit = "Submit"
;
; manageusers_element.php line: 57
manageusers_element_add_user = "Add User"
;
; manageusers_element.php line: 67
manageusers_element_username = "Username: "
;
; manageusers_element.php line: 71
manageusers_element_password = "Password: "
;
; manageusers_element.php line: 75
manageusers_element_retype_password = "Retype Password: "
;
; manageusers_element.php line: 80
manageusers_element_submit = "Submit"
;
; manageusers_element.php line: 86
manageusers_element_delete_user = "Delete User"
;
; manageusers_element.php line: 96
manageusers_element_delete_username = "Username: "
;
; manageusers_element.php line: 100
manageusers_element_submit = "Submit"
;
; manageusers_element.php line: 105
manageusers_element_view_user_roles = "View User Roles"
;
; manageusers_element.php line: 114
manageusers_element_select_user = "Username: "
;
; manageusers_element.php line: 135
manageusers_element_add_role = "Add Role: "
;
; manageusers_element.php line: 140
manageusers_element_submit = "Submit"
;
; mixcrawls_element.php line: 59
mixcrawls_element_make_mix = "Make a Crawl Mix"
;
; mixcrawls_element.php line: 69
mixcrawls_element_mix_name = "Mix Name:"
;
; mixcrawls_element.php line: 74
mixcrawls_element_create_button = "Create"
;
; mixcrawls_element.php line: 78
mixcrawls_element_available_mixes = "Available Mixes"
;
; mixcrawls_element.php line: 80
mixcrawls_view_name = "Name"
;
; mixcrawls_element.php line: 81
mixcrawls_view_definition = "Definition"
;
; mixcrawls_element.php line: 82
mixcrawls_view_actions = "Actions"
;
; mixcrawls_element.php line: 109
mixcrawls_view_no_components = "Mix has no components yet"
;
; mixcrawls_element.php line: 114
mixcrawls_view_edit = "Edit"
;
; mixcrawls_element.php line: 120
mixcrawls_set_index = "Set as Index"
;
; mixcrawls_element.php line: 123
mixcrawl_search_index = "Search Index"
;
; mixcrawls_element.php line: 130
mixcrawls_view_delete = "Delete"
;
; pageoptions_element.php line: 63
pageoptions_element_crawl_time = "Crawl Time"
;
; pageoptions_element.php line: 68
pageoptions_element_search_time = "Search Time"
;
; pageoptions_element.php line: 73
pageoptions_element_test_options = "Test Options"
;
; pageoptions_element.php line: 85
pageoptions_element_load_options = "Get Page Options From:"
;
; pageoptions_element.php line: 90
pageoptions_element_page_range = "Byte Range to Download (0 - Value):"
;
; pageoptions_element.php line: 95
pageoptions_element_max_description = "Max Page Summary Length in Bytes:"
;
; pageoptions_element.php line: 100
pageoptions_element_save_cache = "Cache whole crawled pages:"
;
; pageoptions_element.php line: 110
pageoptions_element_allow_recrawl = "Allow Page Recrawl After:"
;
; pageoptions_element.php line: 116
pageoptions_element_file_types = "Page File Types to Crawl:"
;
; pageoptions_element.php line: 146
pageoptions_element_classifiers_rankers = "Classifiers and Rankers"
;
; pageoptions_element.php line: 164
pageoptions_element_use_classify = "Use to Classify"
;
; pageoptions_element.php line: 165
pageoptions_element_use_rank = "Use to Rank"
;
; pageoptions_element.php line: 195
pageoptions_element_no_classifiers = "No classifiers."
;
; pageoptions_element.php line: 198
pageoptions_element_indexing_plugins = "Indexing Plugins"
;
; pageoptions_element.php line: 202
pageoptions_element_plugin = "Plugin"
;
; pageoptions_element.php line: 205
pageoptions_element_plugin_include = "Use in Crawl"
;
; pageoptions_element.php line: 221
pageoptions_element_configure = "Configure"
;
; pageoptions_element.php line: 233
pageoptions_element_no_compatible_plugins = "No compatible indexing plugins found!"
;
; pageoptions_element.php line: 236
pageoptions_element_page_rules = "Page Field Extraction Rules"
;
; pageoptions_element.php line: 244
page_element_search_page = "Search Page Elements and Links"
;
; pageoptions_element.php line: 249
pageoptions_element_wd_suggest = "Word Suggest"
;
; pageoptions_element.php line: 257
pageoptions_element_subsearch_link = "Subsearch"
;
; pageoptions_element.php line: 266
pageoptions_element_signin_link = "Signin"
;
; pageoptions_element.php line: 274
pageoptions_element_cache_link = "Cache"
;
; pageoptions_element.php line: 283
pageoptions_element_similar_link = "Similar"
;
; pageoptions_element.php line: 292
pageoptions_element_in_link = "Inlinks"
;
; pageoptions_element.php line: 299
pageoptions_element_ip_link = "IP Address"
;
; pageoptions_element.php line: 308
pageoptions_element_ranking_factors = "Search Ranking Factors"
;
; pageoptions_element.php line: 311
pageoptions_element_title_weight = "Title Weight:"
;
; pageoptions_element.php line: 316
pageoptions_element_description_weight = "Description Weight:"
;
; pageoptions_element.php line: 321
pageoptions_element_link_weight = "Link Weight:"
;
; pageoptions_element.php line: 326
pageoptions_element_results_grouping_options = "Search Results Grouping"
;
; pageoptions_element.php line: 329
pageoptions_element_min_results_to_group = "Minimum Results to Group:"
;
; pageoptions_element.php line: 334
pageoptions_element_server_alpha = "Server Alpha:"
;
; pageoptions_element.php line: 342
pageoptions_element_test_page = "Test Page"
;
; pageoptions_element.php line: 344
pageoptions_element_page_type = "Type:"
;
; pageoptions_element.php line: 361
pageoptions_element_save_options = "Save"
;
; pageoptions_element.php line: 363
pageoptions_element_run_tests = "Test Process Page"
;
; pageoptions_element.php line: 369
pageoptions_element_test_results = "Test Results"
;
; pageoptions_element.php line: 372
pageoptions_element_after_process = "After page processor extracts summary"
;
; pageoptions_element.php line: 376
pageoptions_element_after_rules = "After page rules applied"
;
; pageoptions_element.php line: 380
pageoptions_element_extracted_words = "Words and positions extracted to index from summary"
;
; pageoptions_element.php line: 384
pageoptions_element_extracted_metas = "Extracted meta words"
;
; pageoptions_element.php line: 403
page_element_plugin_back = "Back"
;
; pageoptions_element.php line: 440
pageoptions_element_run_tests = "Test Process Page"
;
; pageoptions_element.php line: 444
pageoptions_element_save_options = "Save"
;
; resultseditor_element.php line: 58
resultseditor_element_edit_page = "Edit Result Page"
;
; resultseditor_element.php line: 61
resultseditor_element_edited_pages = "Edited Urls:"
;
; resultseditor_element.php line: 70
resultseditor_element_url_list = "Select a previously edited summary"
;
; resultseditor_element.php line: 72
resultseditor_element_load_page = "Load"
;
; resultseditor_element.php line: 83
resultseditor_element_page_url = "URL:"
;
; resultseditor_element.php line: 90
resultseditor_element_page_title = "Title:"
;
; resultseditor_element.php line: 96
resultseditor_element_description = "Description"
;
; resultseditor_element.php line: 102
resultseditor_element_reset = "Reset"
;
; resultseditor_element.php line: 105
resultseditor_element_save_page = "Save Page"
;
; resultseditor_element.php line: 108
resultseditor_element_filter_websites = "Filter Websites from Results"
;
; resultseditor_element.php line: 118
resultseditor_element_sites_to_filter = "Sites to Filter"
;
; resultseditor_element.php line: 125
resultseditor_element_save_filter = "Save Filter"
;
; searchsources_element.php line: 61
searchsources_element_add_media_source = "Add Media Source"
;
; searchsources_element.php line: 70
searchsources_element_sourcetype = "Type:"
;
; searchsources_element.php line: 75
searchsources_element_sourcename = "Name:"
;
; searchsources_element.php line: 79
searchsources_element_url = "URL:"
;
; searchsources_element.php line: 83
searchsources_element_thumbnail = "Thumb:"
;
; searchsources_element.php line: 87
searchsources_element_locale_tag = "Language:"
;
; searchsources_element.php line: 92
searchsources_element_submit = "Submit"
;
; searchsources_element.php line: 96
searchsources_element_media_sources = "Media Sources"
;
; searchsources_element.php line: 98
searchsources_element_medianame = "Name"
;
; searchsources_element.php line: 99
searchsources_element_mediatype = "Type"
;
; searchsources_element.php line: 100
searchsources_element_mediaurls = "Urls"
;
; searchsources_element.php line: 101
searchsources_element_action = "Action"
;
; searchsources_element.php line: 110
searchsources_element_deletemedia = "Delete"
;
; searchsources_element.php line: 115
searchsources_element_add_subsearch = "Add a Subsearch"
;
; searchsources_element.php line: 124
searchsources_element_foldername = "Folder Name:"
;
; searchsources_element.php line: 128
searchsources_element_indexsource = "Index Source:"
;
; searchsources_element.php line: 134
searchsources_element_per_page = "Results Per Page:"
;
; searchsources_element.php line: 140
searchsources_element_submit = "Submit"
;
; searchsources_element.php line: 143
searchsources_element_subsearches = "Current Subsearches"
;
; searchsources_element.php line: 145
searchsources_element_dirname = "Folder Name"
;
; searchsources_element.php line: 147
searchsources_element_index = "Index"
;
; searchsources_element.php line: 148
searchsources_element_localestring = "Localization Identifier"
;
; searchsources_element.php line: 150
searchsources_element_perpage = "Results/Page"
;
; searchsources_element.php line: 153
searchsources_element_actions = "Actions"
;
; searchsources_element.php line: 164
searchsources_element_localize = "Localize"
;
; searchsources_element.php line: 168
searchsources_element_deletesubsearch = "Delete"
;
; signin_element.php line: 64
signin_element_settings = "Settings"
;
; signin_element.php line: 69
signin_element_signin = "Sign In"
;
; signin_element.php line: 73
signin_element_admin = "Admin"
;
; signin_element.php line: 75
signin_element_signout = "Sign Out"
;
; subsearch_element.php line: 57
subsearch_element_web = "Web"
;
; subsearch_element.php line: 83
subsearch_element_more = "More"
;
; subsearch_element.php line: 89
subsearch_element_more = "More"
;
; /Applications/MAMP/htdocs/git/yioop//views/helpers
;
; feeds_helper.php line: 70
feeds_helper_view_feed_results = "News Results for %s"
;
; feeds_helper.php line: 107
feeds_helper_view_onehour = "1 hour ago"
;
; feeds_helper.php line: 110
feeds_helper_view_hourdate = "%s hours ago"
;
; images_helper.php line: 64
images_helper_view_image_results = "View More Image Results..."
;
; pagination_helper.php line: 97
pagination_helper_previous = "Prev"
;
; pagination_helper.php line: 120
pagination_helper_next = "Next"
;
; toggle_helper.php line: 68
toggle_helper_on = "On"
;
; toggle_helper.php line: 70
toggle_helper_off = "Off"
;
; toggle_helper.php line: 74
toggle_helper_on = "On"
;
; toggle_helper.php line: 76
toggle_helper_off = "Off"
;
; toggle_helper.php line: 80
toggle_helper_on = "On"
;
; toggle_helper.php line: 82
toggle_helper_off = "Off"
;
; /Applications/MAMP/htdocs/git/yioop//views/layouts
;
; rss_layout.php line: 64
rss_layout_title = "PHP Search Engine - Yioop! : %s"
;
; rss_layout.php line: 72
rss_layout_description = "Search results for: %s"
;
; web_layout.php line: 68
web_layout_title = "PHP Search Engine - Yioop!"
;
; web_layout.php line: 77
web_layout_description = "PHP Crawler and Search Engine Software"
;
; web_layout.php line: 80
web_layout_description = "PHP Crawler and Search Engine Software"
;
; web_layout.php line: 109
web_layout_query_statistics = "Query Statistics"
;
; web_layout.php line: 113
web_layout_total_elapsed_time = "Total Elapsed Time for Queries: %s seconds."
;
; web_layout.php line: 118
web_layout_query_time = "Time: %s seconds."
;
; machinestatus_view.php line: 65
machinestatus_view_no_monitored = "No Monitored Machines"
;
; machinestatus_view.php line: 70
machinestatus_name_server = "Name Server"
;
; machinestatus_view.php line: 82
machinestatus_view_news_updater = "News Updater"
;
; machinestatus_view.php line: 84
machinestatus_view_log = "Log"
;
; machinestatus_view.php line: 110
machinestatus_view_mirrors = "Mirrors"
;
; machinestatus_view.php line: 113
machinestatus_view_log = "Log"
;
; machinestatus_view.php line: 126
machinestatus_view_queue_server = "Queue Server"
;
; machinestatus_view.php line: 128
machinestatus_view_log = "Log"
;
; machinestatus_view.php line: 137
machinestatus_view_no_queue_server = "Machine has no queue server"
;
; machinestatus_view.php line: 140
machinestatus_view_no_fetchers = "Machine has no fetchers"
;
; machinestatus_view.php line: 150
machinestatus_view_fetchers = "Fetchers"
;
; machinestatus_view.php line: 160
machinestatus_view_log = "Log"
;
; nocache_view.php line: 65
nocache_view_no_cache = "Did not have cache of requested item."
;
; nocache_view.php line: 70
nocache_view_summary_contents = "Summary Data stored in Yioop for Item"
;
; register_view.php line: 69
register_view_create_account = "Create Account"
;
; register_view.php line: 77
register_view_firstname = "First Name:"
;
; register_view.php line: 96
register_view_lastname = "Last Name:"
;
; register_view.php line: 115
register_view_username = "Username:"
;
; register_view.php line: 132
register_view_email = "Email:"
;
; register_view.php line: 149
register_view_password = "Password:"
;
; register_view.php line: 162
register_view_retypepassword = "Re-type password:"
;
; register_view.php line: 180
register_create_account = "Create Account"
;
; register_view.php line: 188
signin_view_return_yioop = "Return to Yioop"
;
; search_view.php line: 105
search_view_title = "Yioop! PHP Search Engine"
;
; search_view.php line: 132
search_view_input_label = "Enter the terms you would like to search the web for"
;
; search_view.php line: 136
search_view_input_placeholder = "Type what you are looking for"
;
; search_view.php line: 140
search_view_search = "Search"
;
; search_view.php line: 162
search_view_calculated = "%s seconds."
;
; search_view.php line: 163
search_view_results = "Showing %s - %s of %s"
;
; search_view.php line: 284
search_view_cache = "Cached"
;
; search_view.php line: 287
search_view_as_text = "View&nbsp;as&nbsp;text"
;
; search_view.php line: 300
search_view_similar = "Similar"
;
; search_view.php line: 312
search_view_inlink = "Inlinks"
;
; search_view.php line: 332
search_view_rank = "Rank:%s "
;
; search_view.php line: 334
search_view_relevancy = "Rel:%s "
;
; search_view.php line: 336
search_view_proximity = "Prox:%s"
;
; search_view.php line: 344
search_view_score = "Score:%s"
;
; search_view.php line: 369
search_view_more_statistics = "More Statistics"
;
; settings_view.php line: 80
settings_view_settings = "Settings"
;
; settings_view.php line: 88
settings_view_results_per_page = "Results per Page:"
;
; settings_view.php line: 94
settings_view_open_in_tabs = "Open Results in New Tabs:"
;
; settings_view.php line: 101
settings_view_search_index = "Search Index:"
;
; settings_view.php line: 106
settings_view_language_label = "Language:"
;
; settings_view.php line: 115
settings_view_return_yioop = "Return"
;
; settings_view.php line: 118
settings_view_save = "Save Settings"
;
; settings_view.php line: 126
settings_install_search_plugin = "Install Yioop! Open Search Plugin"
;
; signin_view.php line: 69
signin_view_signin = "Signin"
;
; signin_view.php line: 75
signin_view_username = "Username"
;
; signin_view.php line: 82
signin_view_password = "Password"
;
; signin_view.php line: 93
signin_view_login = "Login"
;
; signin_view.php line: 101
signin_view_return_yioop = "Return to Yioop"
;
; signin_view.php line: 105
signin_view_create_account = "Create Account"
;
; static_view.php line: 83
static_view_title = "PHP Search Engine - Yioop!"
;
; statistics_view.php line: 81
statistics_view_statistics = "Statistics"
;
; statistics_view.php line: 86
statistics_view_calculating = "Calculating... Please be patient."
;
; statistics_view.php line: 102
statistics_view_error_codes = "Error Codes Seen"
;
; statistics_view.php line: 103
statistics_view_sizes = "File Sizes Downloaded"
;
; statistics_view.php line: 104
statistics_view_links_per_page = "Average Links per Page"
;
; statistics_view.php line: 105
statistics_view_page_date = "Page Modified Dates"
;
; statistics_view.php line: 106
statistics_view_dns_time = "DNS Lookup Time"
;
; statistics_view.php line: 107
statistics_view_download_time = "Page Download Time"
;
; statistics_view.php line: 108
statistics_view_top_level_domain = "Top Level Domains"
;
; statistics_view.php line: 109
statistics_view_file_extension = "File Extension"
;
; statistics_view.php line: 110
statistics_view_media_type = "Media Type"
;
; statistics_view.php line: 111
statistics_view_language = "Web Page Language"
;
; statistics_view.php line: 112
statistics_view_server = "Web Server"
;
; statistics_view.php line: 113
statistics_view_os = "Operating System (if detected)"
;
; statistics_view.php line: 117
statistics_view_general_info = "General Index Info"
;
; statistics_view.php line: 118
statistics_view_description = "Index Description"
;
; statistics_view.php line: 120
statistics_view_timestamp = "Timestamp"
;
; statistics_view.php line: 122
statistics_view_crawl_date = "Crawl Start Time"
;
; statistics_view.php line: 124
statistics_view_pages = "Downloaded Pages"
;
; statistics_view.php line: 126
statistics_view_url = "Seen Urls"
;
; statistics_view.php line: 129
statistics_view_number_hosts = "Hostnames Seen"
;
; view.php line: 36
view_locale_version4 = "Version 4"
;
; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
;
; wordfilter_plugin.php line: 230
wordfilter_plugin_settings_saved = "Word Filter Settings Saved!"
;
; wordfilter_plugin.php line: 256
wordfilter_plugin_preferences = "Word Filter Preferences"
;
; wordfilter_plugin.php line: 269
wordfilter_plugin_save = "Save"

blogspages_rev.patch

blogs_rev.patch

_binary ; ***** BEGIN LICENSE BLOCK *****
;  SeekQuarry/Yioop Open Source Pure PHP Search Engine, Crawler, and Indexer
;  Copyright (C) 2009 - 2013  Chris Pollett chris@pollett.org
;
;  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 BLOCK *****
;
; configure.ini
;
; en-US configuration file
;
[general]
;
; Strings to translate on various pages
;
[strings]
;
; /Applications/MAMP/htdocs/git/yioop//controllers
;
; admin_controller.php line: 147
admin_controller_login_successful = "Login Successful!!"
;
; admin_controller.php line: 152
admin_controller_login_failed = "Username or Password Incorrect!"
;
; admin_controller.php line: 157
admin_controller_login_to_config = "Login to continue configuration (default: u=root, p=)"
;
; admin_controller.php line: 161
admin_controller_status_updates_stopped = "Status updates have stopped."
;
; admin_controller.php line: 374
admin_controller_passwords_dont_match = "Typed passwords do not match."
;
; admin_controller.php line: 386
admin_controller_invalid_old_password = "Current password incorrect."
;
; admin_controller.php line: 393
admin_controller_change_password = "Password change successful!!"
;
; admin_controller.php line: 401
admin_controller_emails_dont_match = "Typed emails do not match."
;
; admin_controller.php line: 413
admin_controller_invalid_old_email = "Current email incorrect."
;
; admin_controller.php line: 420
admin_controller_change_email = "Email changed successful!!"
;
; admin_controller.php line: 452
admin_controller_select_username = "Select Name"
;
; admin_controller.php line: 499
admin_controller_select_rolename = "Select Role"
;
; admin_controller.php line: 525
admin_controller_passwords_dont_match = "Typed passwords do not match."
;
; admin_controller.php line: 532
admin_controller_username_exists = "Cannot Create User As Username Exists"
;
; admin_controller.php line: 539
admin_controller_username_added = "User Created"
;
; admin_controller.php line: 548
admin_controller_username_doesnt_exists = "Username Does Not Exist"
;
; admin_controller.php line: 555
admin_controller_username_deleted = "User Deleted"
;
; admin_controller.php line: 562
admin_controller_username_doesnt_exists = "Username Does Not Exist"
;
; admin_controller.php line: 568
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 574
admin_controller_rolename_added = "Role Name Added"
;
; admin_controller.php line: 585
admin_controller_username_doesnt_exists = "Username Does Not Exist"
;
; admin_controller.php line: 591
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 601
admin_controller_rolename_deleted = "Role Name Deleted"
;
; admin_controller.php line: 631
admin_controller_select_rolename = "Select Role"
;
; admin_controller.php line: 677
admin_controller_select_activityname = "Select Activity"
;
; admin_controller.php line: 710
admin_controller_rolename_exists = "Role Name Exists"
;
; admin_controller.php line: 720
admin_controller_rolename_added = "Role Name Added"
;
; admin_controller.php line: 731
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 739
admin_controller_rolename_deleted = "Role Name Deleted"
;
; admin_controller.php line: 745
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 751
admin_controller_activityname_doesnt_exists = "Activity Name Does not Exist"
;
; admin_controller.php line: 761
admin_controller_activity_added = "Activity Added"
;
; admin_controller.php line: 767
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 774
admin_controller_activityname_doesnt_exists = "Activity Name Does not Exist"
;
; admin_controller.php line: 786
admin_controller_activity_deleted = "Activity Deleted"
;
; admin_controller.php line: 826
admin_controller_select_groupname = "Select Group"
;
; admin_controller.php line: 847
admin_controller_select_groupname = "Select Group"
;
; admin_controller.php line: 877
admin_controller_select_rolename = "Select Role"
;
; admin_controller.php line: 909
admin_controller_select_username = "Select Name"
;
; admin_controller.php line: 952
admin_controller_groupname_exists = "Group Name Exists"
;
; admin_controller.php line: 962
admin_controller_groupname_added = "Group Name Added"
;
; admin_controller.php line: 968
admin_controller_groupname_doesnt_exists = "Group Name does not exists"
;
; admin_controller.php line: 974
admin_controller_groupname_deleted = "Group Name Deleted"
;
; admin_controller.php line: 980
admin_controller_username_doesnt_exists = "Username Does Not Exist"
;
; admin_controller.php line: 990
admin_controller_user_added = "User Added"
;
; admin_controller.php line: 1003
admin_controller_user_deleted = "User Deleted"
;
; admin_controller.php line: 1008
admin_controller_groupname_doesnt_exists = "Group Name does not exists"
;
; admin_controller.php line: 1014
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 1023
admin_controller_rolename_added = "Role Name Added"
;
; admin_controller.php line: 1028
admin_controller_groupname_doesnt_exists = "Group Name does not exists"
;
; admin_controller.php line: 1034
admin_controller_rolename_doesnt_exists = "Role Name Does not Exist"
;
; admin_controller.php line: 1046
admin_controller_role_deleted = "Role Deleted"
;
; admin_controller.php line: 1046
admin_controller_source_type = "Source type"
;
; admin_controller.php line: 1046
admin_controller_page_added = "Page added successfully!!"
;
; admin_controller.php line: 1046
admin_controller_blog_added = "Blog added successfully!!"
;
; admin_controller.php line: 1046
admin_controller_blog = "Blog"
;
; admin_controller.php line: 1046
admin_controller_page = "Page"
;
; admin_controller.php line: 1046
admin_controller_blog_deleted = "Blog deleted successfully"
;
; admin_controller.php line: 1046
admin_controller_blog_updated = "Blog updated successfully"
;
; admin_controller.php line: 1046
admin_controller_feed_added = "Added blog entry successfully"
;
; admin_controller.php line: 1046
admin_controller_feed_deleted = "Deleted blog entry successfully"
;
; admin_controller.php line: 1046
admin_controller_feed_updated = "Updated blog entry successfully"
;
; admin_controller.php line: 1046
admin_controller_group_added = "Added group to the blog successfully"
;
; admin_controller.php line: 1046
admin_controller_group_deleted = "Deleted group from the blog successfully"
;
; admin_controller.php line: 1094
admin_controller_stop_crawl = "Stopping crawl. . .This will take a moment to refresh."
;
; admin_controller.php line: 1108
admin_controller_resume_crawl = "Resuming crawl. . .This will take a moment to refresh."
;
; admin_controller.php line: 1138
admin_controller_delete_crawl_success = "Deleting Crawl. . .This will take a moment to refresh."
;
; admin_controller.php line: 1143
admin_controller_delete_crawl_fail = "Delete Crawl Failed!!"
;
; admin_controller.php line: 1150
admin_controller_set_index = "Setting Crawl To Use as Index"
;
; admin_controller.php line: 1175
admin_controller_starting_new_crawl = "Starting New Crawl!"
;
; admin_controller.php line: 1185
admin_controller_no_description = "No Description for Crawl"
;
; admin_controller.php line: 1318
admin_controller_use_below = "Use options below"
;
; admin_controller.php line: 1319
admin_controller_use_defaults = "Use Yioop! defaults"
;
; admin_controller.php line: 1321
admin_controller_use_below = "Use options below"
;
; admin_controller.php line: 1325
admin_controller_previous_crawl = "Previous Crawl:"
;
; admin_controller.php line: 1418
admin_controller_breadth_first = "Breadth First"
;
; admin_controller.php line: 1420
admin_controller_page_importance = "Page Importance"
;
; admin_controller.php line: 1486
admin_controller_urls_injected = "Urls Injected!"
;
; admin_controller.php line: 1497
admin_controller_update_seed_info = "Updating Seed Site Info!"
;
; admin_controller.php line: 1589
admin_controller_select_crawl = "Select Crawl"
;
; admin_controller.php line: 1590
admin_controller_default_crawl = "Default Crawl"
;
; admin_controller.php line: 1592
admin_controller_select_crawl = "Select Crawl"
;
; admin_controller.php line: 1594
admin_controller_default_crawl = "Default Crawl"
;
; admin_controller.php line: 1621
admin_controller_unnamed = "Unnamed Crawl"
;
; admin_controller.php line: 1626
admin_controller_mix_created = "Crawl Mix Created!"
;
; admin_controller.php line: 1635
admin_controller_set_index = "Setting Crawl To Use as Index"
;
; admin_controller.php line: 1645
admin_controller_mix_doesnt_exists = "Mix to Delete Does not Exist!"
;
; admin_controller.php line: 1653
admin_controller_mix_deleted = "Crawl Mix Deleted!"
;
; admin_controller.php line: 1689
editmix_element_add_crawls = "Add Crawls"
;
; admin_controller.php line: 1691
editmix_element_num_results = "Number of Results"
;
; admin_controller.php line: 1692
editmix_element_del_grp = "Delete Group"
;
; admin_controller.php line: 1693
editmix_element_weight = "Weight"
;
; admin_controller.php line: 1694
editmix_element_name = "Name"
;
; admin_controller.php line: 1695
editmix_add_keywords = "Keywords"
;
; admin_controller.php line: 1696
editmix_element_actions = "Actions"
;
; admin_controller.php line: 1697
editmix_add_query = "Add Query"
;
; admin_controller.php line: 1698
editmix_element_delete = "Delete"
;
; admin_controller.php line: 1750
admin_controller_mix_saved = "Crawl Mix Changes Saved!"
;
; admin_controller.php line: 1801
admin_controller_use_below = "Use options below"
;
; admin_controller.php line: 1802
admin_controller_use_defaults = "Use Yioop! defaults"
;
; admin_controller.php line: 1804
admin_controller_use_below = "Use options below"
;
; admin_controller.php line: 1808
admin_controller_previous_crawl = "Previous Crawl:"
;
; admin_controller.php line: 1813
admin_controller_recrawl_never = "Never"
;
; admin_controller.php line: 1814
admin_controller_recrawl_1day = "1 days"
;
; admin_controller.php line: 1815
admin_controller_recrawl_2day = "2 days"
;
; admin_controller.php line: 1816
admin_controller_recrawl_3day = "3 days"
;
; admin_controller.php line: 1817
admin_controller_recrawl_7day = "7 days"
;
; admin_controller.php line: 1818
admin_controller_recrawl_14day = "14 days"
;
; admin_controller.php line: 2083
admin_controller_page_options_updated = "Page Options Updated!"
;
; admin_controller.php line: 2109
admin_controller_page_options_running_tests = "Running Tests!"
;
; admin_controller.php line: 2270
admin_controller_new_classifier = "New classifier created."
;
; admin_controller.php line: 2273
admin_controller_classifier_exists = "A classifier with that name already exists."
;
; admin_controller.php line: 2285
admin_controller_no_classifier = "No classifier with that name."
;
; admin_controller.php line: 2304
admin_controller_finalizing_classifier = "Finalizing classifier."
;
; admin_controller.php line: 2327
admin_controller_classifier_deleted = "Classifier deleted."
;
; admin_controller.php line: 2331
admin_controller_no_classifier = "No classifier with that name."
;
; admin_controller.php line: 2348
admin_controller_finalizing_classifier = "Finalizing classifier."
;
; admin_controller.php line: 2391
admin_controller_classifier_exists = "A classifier with that name already exists."
;
; admin_controller.php line: 2402
editclassifier_load_failed = "Failed to load documents"
;
; admin_controller.php line: 2404
editclassifier_loading = "Loading"
;
; admin_controller.php line: 2406
editclassifier_added_examples = "Added {1} {2} examples"
;
; admin_controller.php line: 2408
editclassifier_label_update_failed = "Failed to update labels."
;
; admin_controller.php line: 2410
editclassifier_updating = "Updating"
;
; admin_controller.php line: 2412
editclassifier_acc_update_failed = "Failed to update accuracy"
;
; admin_controller.php line: 2414
editclassifier_na = "N/A"
;
; admin_controller.php line: 2416
editclassifier_no_docs = "No documents"
;
; admin_controller.php line: 2418
editclassifier_num_docs = "{1}{2} documents"
;
; admin_controller.php line: 2420
editclassifier_in_class = "In Class"
;
; admin_controller.php line: 2422
editclassifier_not_in_class = "Not In Class"
;
; admin_controller.php line: 2424
editclassifier_skip = "Skip"
;
; admin_controller.php line: 2426
editclassifier_prediction = "Prediction: {1}"
;
; admin_controller.php line: 2428
editclassifier_scores = "{1}%% confidence, {2}%% disagreement"
;
; admin_controller.php line: 2472
admin_controller_results_editor_update = "Filter Pages Updated!"
;
; admin_controller.php line: 2486
admin_controller_edited_pages = "Select a Previously Edited URL"
;
; admin_controller.php line: 2499
admin_controller_results_editor_need_url = "Result Page Update needs to Specify the URL!"
;
; admin_controller.php line: 2505
admin_controller_results_editor_page_updated = "Result Page Updated!"
;
; admin_controller.php line: 2518
admin_controller_results_editor_page_loaded = "Page Loaded!"
;
; admin_controller.php line: 2564
admin_controller_select_machine = "Select Machine"
;
; admin_controller.php line: 2635
admin_controller_machine_added = "Machine Added!"
;
; admin_controller.php line: 2642
admin_controller_machine_exists = "Machine Name Already Exists; Please Delete First!"
;
; admin_controller.php line: 2646
admin_controller_machine_incomplete = "Missing Fields From Machine Form!"
;
; admin_controller.php line: 2655
admin_controller_machine_doesnt_exists = "Machine Name does not Exists!"
;
; admin_controller.php line: 2672
admin_controller_stop_service_first = "Machine in use. Please stop the service running on it!"
;
; admin_controller.php line: 2685
admin_controller_machine_deleted = "Machine Deleted!"
;
; admin_controller.php line: 2698
admin_controller_news_mode_updated = "News Update Mode Changed!"
;
; admin_controller.php line: 2704
admin_controller_news_mode_updated = "News Update Mode Changed!"
;
; admin_controller.php line: 2711
admin_controller_news_update_failed = "News Update Mode Change Failed!"
;
; admin_controller.php line: 2774
admin_controller_no_machine_log = "No Log File Found."
;
; admin_controller.php line: 2803
admin_controller_machine_servers_updated = "Machine&#039;s Servers Updated!"
;
; admin_controller.php line: 2807
admin_controller_machine_no_action = "Unable to Perform Action!"
;
; admin_controller.php line: 2840
admin_controller_select_localename = "Select Locale"
;
; admin_controller.php line: 2884
admin_controller_locale_added = "Locale Added!"
;
; admin_controller.php line: 2891
admin_controller_localename_doesnt_exists = "Locale Does Not Exist!"
;
; admin_controller.php line: 2900
admin_controller_localename_deleted = "Locale Deleted"
;
; admin_controller.php line: 2909
admin_controller_select_staticpages = "Select a page"
;
; admin_controller.php line: 2928
admin_controller_staticpage_updated = "Static Page Updated!"
;
; admin_controller.php line: 2955
admin_controller_localestrings_updated = "Locale Strings Updated!"
;
; admin_controller.php line: 3012
admin_controller_php_version = "PHP Version 5.3 or Newer"
;
; admin_controller.php line: 3020
admin_controller_no_write_config_php = "configs/config.php not web server writable."
;
; admin_controller.php line: 3025
admin_controller_no_write_work_dir = "Work directory needs to be writable by web server. "
;
; admin_controller.php line: 3030
admin_controller_post_size_small = "php.ini file variable post_max_size should be at least 2M"
;
; admin_controller.php line: 3036
admin_controller_missing_required = "The following required items were missing: %s"
;
; admin_controller.php line: 3059
admin_controller_missing_optional = "The following optional items were missing: %s"
;
; admin_controller.php line: 3064
admin_controller_check_passed = "Check Passed."
;
; admin_controller.php line: 3069
admin_controller_using_local_config = "Using configs/local_config.php so changing work directory above may not work."
;
; admin_controller.php line: 3094
admin_controller_media_kind = "Media Kind"
;
; admin_controller.php line: 3095
admin_controller_video = "Video"
;
; admin_controller.php line: 3096
admin_controller_rss_feed = "RSS"
;
; admin_controller.php line: 3110
admin_controller_sources_indexes = "Index/Mix to Use"
;
; admin_controller.php line: 3163
admin_controller_media_source_added = "Media Source Added!"
;
; admin_controller.php line: 3171
admin_controller_media_source_deleted = "Media Source Deleted!"
;
; admin_controller.php line: 3187
admin_controller_subsearch_added = "Subsearch Added!"
;
; admin_controller.php line: 3195
admin_controller_subsearch_deleted = "Subsearch Deleted!"
;
; admin_controller.php line: 3270
admin_controller_configure_use_absolute_path = "Must use an Absolute path for Work Directory"
;
; admin_controller.php line: 3282
admin_controller_configure_diff_base_dir = "Work Directory cannot be contained in Yioop folder!"
;
; admin_controller.php line: 3315
admin_controller_configure_work_dir_set = "Work Directory Set! You may need to re-login!"
;
; admin_controller.php line: 3329
admin_controller_name_your_bot = "Please Name Your robot"
;
; admin_controller.php line: 3352
admin_controller_configure_work_profile_made = "Working Directory and Profile Created!"
;
; admin_controller.php line: 3365
admin_controller_configure_no_set_config = "Unable to Update config.php File!"
;
; admin_controller.php line: 3377
admin_controller_configure_no_create_profile = "Unable to Create Profile!"
;
; admin_controller.php line: 3388
admin_controller_configure_work_dir_invalid = "Work Directory is Invalid! Cannot Create Profile!"
;
; admin_controller.php line: 3400
admin_controller_configure_work_dir_invalid = "Work Directory is Invalid! Cannot Create Profile!"
;
; admin_controller.php line: 3448
admin_controller_configure_no_change_db = "Problem Updating Database!"
;
; admin_controller.php line: 3463
admin_controller_configure_profile_change = "Profile Updated!"
;
; admin_controller.php line: 3478
admin_controller_configure_no_change_profile = "There was a Problem Updating Profile!"
;
; admin_controller.php line: 3516
admin_controller_describe_robot = "Please Describe Your Robot"
;
; machine_controller.php line: 182
machine_controller_nolines = "No Lines Match Filter!"
;
; register_controller.php line: 117
register_controller_error_fields = "Create Account"
;
; register_controller.php line: 127
register_controller_account_created = "Account created successfully!!"
;
; search_controller.php line: 326
search_controller_logout_successful = "Logout Successful!!"
;
; search_controller.php line: 516
search_controller_mix_info = "Using Crawl Mix: %s"
;
; search_controller.php line: 522
search_controller_crawl_info = "Index: %s -- Size: %s pages/%s urls"
;
; search_controller.php line: 552
search_controller_search = "Search"
;
; search_controller.php line: 656
search_controller_no_index_set = "No Search Index Set For Use!"
;
; search_controller.php line: 659
search_controller_no_index_set = "No Search Index Set For Use!"
;
; search_controller.php line: 1363
search_controller_no_archive_page = "The website in question has requested this page not be archived."
;
; search_controller.php line: 1415
search_controller_original_page = "This image appeared on the page:"
;
; search_controller.php line: 1433
search_controller_extracted_title = "Extracted Title"
;
; search_controller.php line: 1435
search_controller_extracted_description = "Extracted Description"
;
; search_controller.php line: 1437
search_controller_extracted_links = "Extracted Links"
;
; search_controller.php line: 1442
search_controller_extracted_allow_paths = "Extracted Allowed To Crawl Paths"
;
; search_controller.php line: 1448
search_controller_extracted_disallow_paths = "Extracted Disallowed To Crawl Paths"
;
; search_controller.php line: 1454
search_controller_crawl_delay = "YioopBot Crawl Delay"
;
; search_controller.php line: 1525
search_controller_cache_comment = "Yioop Cache Page... This page has been modified to add a robots directive,  make links absolute, add extracted summaries, and to highlight query terms."
;
; search_controller.php line: 1571
search_controller_cached_version = "This cached version of %s was obtained by the Yioop crawler on %s."
;
; search_controller.php line: 1686
search_controller_header_summaries = "Toggle Extracted Headers and Summaries"
;
; search_controller.php line: 1810
search_controller_history = "Toggle History"
;
; search_controller.php line: 1986
search_controller_all_cached = "All Cached Versions - Change Year and/or Months to see Links"
;
; search_controller.php line: 2017
search_controller_year = "Year:"
;
; search_controller.php line: 2018
search_controller_month = "Month:"
;
; settings_controller.php line: 134
settings_controller_crawl_mix = "crawl mix"
;
; settings_controller.php line: 151
settings_controller_settings_saved = "Settings Saved!"
;
; /Applications/MAMP/htdocs/git/yioop//views
;
; admin_view.php line: 88
admin_view_admin = "Admin"
;
; admin_view.php line: 108
adminview_auto_logout_one_minute = "Auto-logout in One Minute!!"
;
; crawlstatus_view.php line: 60
crawlstatus_view_currently_processing = "Currently Processing"
;
; crawlstatus_view.php line: 61
crawlstatus_view_description = "Description:"
;
; crawlstatus_view.php line: 66
crawlstatus_view_starting_crawl = "Starting New Crawl..."
;
; crawlstatus_view.php line: 70
managecrawls_element_stop_crawl = "Stop Crawl"
;
; crawlstatus_view.php line: 74
crawlstatus_view_resuming_crawl = "Resuming Crawl"
;
; crawlstatus_view.php line: 78
managecrawls_element_stop_crawl = "Stop Crawl"
;
; crawlstatus_view.php line: 82
crawlstatus_view_shutdown_queue = "Shutting Down Queue..."
;
; crawlstatus_view.php line: 85
crawlstatus_view_closing_dict = "Closing Crawl Dictionary..."
;
; crawlstatus_view.php line: 88
crawlstatus_view_run_plugins = "Running Post Processing Plugins..."
;
; crawlstatus_view.php line: 96
managecrawls_element_stop_crawl = "Stop Crawl"
;
; crawlstatus_view.php line: 104
crawlstatus_view_set_index = "Set as Index"
;
; crawlstatus_view.php line: 107
crawlstatus_view_search_index = "Search Index"
;
; crawlstatus_view.php line: 115
crawlstatus_view_changeoptions = "Change Crawl Options"
;
; crawlstatus_view.php line: 117
crawlstatus_view_no_description = "No active crawl"
;
; crawlstatus_view.php line: 122
crawlstatus_view_timestamp = "Timestamp:"
;
; crawlstatus_view.php line: 124
crawlstatus_view_time_started = "Time started:"
;
; crawlstatus_view.php line: 130
crawlstatus_view_indexer_memory = "Indexer Peak Memory:"
;
; crawlstatus_view.php line: 132
crawlstatus_view_scheduler_memory = "Scheduler Peak Memory:"
;
; crawlstatus_view.php line: 135
crawlstatus_view_queue_memory = "Server Peak Memory:"
;
; crawlstatus_view.php line: 140
crawlstatus_view_no_mem_data = "No Memory Data Yet"
;
; crawlstatus_view.php line: 144
crawlstatus_view_fetcher_memory = "Fetcher Peak Memory:"
;
; crawlstatus_view.php line: 149
crawlstatus_view_no_mem_data = "No Memory Data Yet"
;
; crawlstatus_view.php line: 152
crawlstatus_view_webapp_memory = "Web App Peak Memory:"
;
; crawlstatus_view.php line: 157
crawlstatus_view_no_mem_data = "No Memory Data Yet"
;
; crawlstatus_view.php line: 160
crawlstatus_view_urls_per_hour = "Visited Urls/Hour:"
;
; crawlstatus_view.php line: 168
crawlstatus_view_visited_urls = "Visited Urls Count:"
;
; crawlstatus_view.php line: 172
crawlstatus_view_total_urls = "Total Urls Seen:"
;
; crawlstatus_view.php line: 175
crawlstatus_view_most_recent_fetcher = "Most Recent Fetcher:"
;
; crawlstatus_view.php line: 184
crawlstatus_view_no_fetcher = "No Fetcher Queries Yet"
;
; crawlstatus_view.php line: 188
crawlstatus_view_most_recent_urls = "Most Recent Urls"
;
; crawlstatus_view.php line: 198
crawlstatus_view_no_recent_urls = "No Recent Urls (Could mean only link data)"
;
; crawlstatus_view.php line: 202
crawlstatus_view_previous_crawls = "Previous Crawls"
;
; crawlstatus_view.php line: 208
crawlstatus_view_description = "Description:"
;
; crawlstatus_view.php line: 209
crawlstatus_view_timestamp = "Timestamp:"
;
; crawlstatus_view.php line: 210
crawlstatus_view_url_counts = "Visited/Extracted Urls:"
;
; crawlstatus_view.php line: 211
crawlstatus_view_actions = "Actions"
;
; crawlstatus_view.php line: 219
crawlstatus_view_statistics = "Statistics"
;
; crawlstatus_view.php line: 230
crawlstatus_view_resume = "Resume"
;
; crawlstatus_view.php line: 232
crawlstatus_view_no_resume = "Closed"
;
; crawlstatus_view.php line: 239
crawlstatus_view_set_index = "Set as Index"
;
; crawlstatus_view.php line: 242
crawlstatus_view_search_index = "Search Index"
;
; crawlstatus_view.php line: 249
crawlstatus_view_delete = "Delete"
;
; crawlstatus_view.php line: 257
crawlstatus_view_no_previous_crawl = "No Previous Crawls"
;
; /Applications/MAMP/htdocs/git/yioop//views/elements
;
; activity_element.php line: 57
activity_element_activities = "Activities"
;
; configure_element.php line: 80
configure_element_work_directory = "Search Engine Work Directory"
;
; configure_element.php line: 86
configure_element_load_or_create = "Load or Create"
;
; configure_element.php line: 101
configure_element_component_check = "Component Check"
;
; configure_element.php line: 105
configure_element_profile_settings = "Profile Settings"
;
; configure_element.php line: 108
configure_element_toggle_advanced = "Toggle Advanced Settings"
;
; configure_element.php line: 114
configure_element_default_language = "Default Language:"
;
; configure_element.php line: 121
configure_element_debug_display = "Debug Display"
;
; configure_element.php line: 126
configure_element_error_info = "Error Info"
;
; configure_element.php line: 131
configure_element_query_info = "Query Info"
;
; configure_element.php line: 136
configure_element_test_info = "Test Info"
;
; configure_element.php line: 140
configure_element_user_accounts = "User Accounts"
;
; configure_element.php line: 148
configure_element_email_registration = "Email Registration"
;
; configure_element.php line: 154
configure_element_site_access = "Search Access"
;
; configure_element.php line: 159
configure_element_web_access = "Web"
;
; configure_element.php line: 164
configure_element_rss_access = "RSS"
;
; configure_element.php line: 169
configure_element_api_access = "API"
;
; configure_element.php line: 174
configure_element_database_setup = "Database Set-up"
;
; configure_element.php line: 176
configure_element_database_system = "Database System:"
;
; configure_element.php line: 182
configure_element_databasename = "Database Name:"
;
; configure_element.php line: 189
configure_element_databasehost = "Hostname:"
;
; configure_element.php line: 195
configure_element_databaseuser = "Database User:"
;
; configure_element.php line: 202
configure_element_databasepassword = "Database Password:"
;
; configure_element.php line: 211
configure_element_name_server = "Name Server Set-up"
;
; configure_element.php line: 213
configure_element_name_server_key = "Server Key:"
;
; configure_element.php line: 219
configure_element_name_server_url = "Name Server URL:"
;
; configure_element.php line: 226
configure_element_use_memcache = "Use Memcache:"
;
; configure_element.php line: 233
configure_element_memcache_servers = "Memcache Servers"
;
; configure_element.php line: 242
configure_element_use_filecache = "Use Filecache:"
;
; configure_element.php line: 252
configure_element_crawl_robot = "Crawl Robot Set-up"
;
; configure_element.php line: 254
configure_element_robot_name = "Crawl Robot Name:"
;
; configure_element.php line: 262
configure_element_robot_instance = "Robot Instance:"
;
; configure_element.php line: 269
configure_element_robot_description = "Robot Description"
;
; configure_element.php line: 278
configure_element_submit = "Submit"
;
; crawloptions_element.php line: 62
crawloptions_element_back_to_manage = "Back"
;
; crawloptions_element.php line: 65
crawloptions_element_modify_active_crawl = "Modify Active Crawl"
;
; crawloptions_element.php line: 67
crawloptions_element_edit_crawl_options = "Edit Crawl Options"
;
; crawloptions_element.php line: 90
crawloptions_element_web_crawl = "Web Crawl"
;
; crawloptions_element.php line: 100
crawloptions_element_archive_crawl = "Archive Crawl"
;
; crawloptions_element.php line: 107
crawloptions_element_load_options = "Get Crawl Options From:"
;
; crawloptions_element.php line: 112
crawloptions_element_crawl_order = "Crawl Order:"
;
; crawloptions_element.php line: 119
crawloptions_element_restrict_by_url = "Restrict Sites By Url:"
;
; crawloptions_element.php line: 127
crawloptions_element_allowed_to_crawl = "Allowed To Crawl Sites"
;
; crawloptions_element.php line: 132
crawloptions_element_disallowed_and_quota_sites = "Disallowed Sites/Sites with Quotas"
;
; crawloptions_element.php line: 139
crawloptions_element_seed_sites = "Seed Sites"
;
; crawloptions_element.php line: 145
crawloptions_element_inject_sites = "Sites to Inject into Current Crawl"
;
; crawloptions_element.php line: 153
crawloptions_element_reindex_crawl = "Crawl or Arc Folder to Re-index:"
;
; crawloptions_element.php line: 159
crawloptions_element_need_api_for_mix = "Yioop API access required for mix archive crawls  "
;
; crawloptions_element.php line: 167
crawloptions_element_save_options = "Save Options"
;
; editclassifier_element.php line: 63
editclassifier_back = "Back"
;
; editclassifier_element.php line: 65
editclassifier_edit_classifier = "Edit Classifier"
;
; editclassifier_element.php line: 77
editclassifier_classifier_label = "Classifier Label:"
;
; editclassifier_element.php line: 82
editclassifier_change = "Change"
;
; editclassifier_element.php line: 85
editclassifier_statistics = "Statistics"
;
; editclassifier_element.php line: 86
editclassifier_positive_examples = "Positive Examples:"
;
; editclassifier_element.php line: 89
editclassifier_negative_examples = "Negative Examples:"
;
; editclassifier_element.php line: 92
editclassifier_accuracy = "Accuracy:"
;
; editclassifier_element.php line: 97
editclassifier_na = "N/A"
;
; editclassifier_element.php line: 102
editclassifier_update = "Update"
;
; editclassifier_element.php line: 103
editclassifier_add_examples = "Add Examples"
;
; editclassifier_element.php line: 107
editclassifier_source = "Source:"
;
; editclassifier_element.php line: 111
editclassifier_default_crawl = "Default Crawl"
;
; editclassifier_element.php line: 121
editclassifier_label_by_hand = "Label By Hand"
;
; editclassifier_element.php line: 123
editclassifier_all_in_class = "All In Class"
;
; editclassifier_element.php line: 125
editclassifier_none_in_class = "None In Class"
;
; editclassifier_element.php line: 130
editclassifier_keywords = "Keywords:"
;
; editclassifier_element.php line: 135
editclassifier_load = "Load"
;
; editclassifier_element.php line: 141
editclassifier_finalize = "Finalize"
;
; editclassifier_element.php line: 147
editclassifier_no_documents = "No Documents"
;
; editlocales_element.php line: 62
editlocales_element_back_to_manage = "Back"
;
; editlocales_element.php line: 64
editlocales_element_edit_locale = "Edit Locale: %s"
;
; editlocales_element.php line: 76
editlocales_element_static_pages = "Static Pages:"
;
; editlocales_element.php line: 110
editlocales_element_submit = "Save"
;
; editmix_element.php line: 58
editmix_element_back_to_mix = "Back"
;
; editmix_element.php line: 60
mixcrawls_element_edit_mix = "Edit Crawl Mix"
;
; editmix_element.php line: 71
mixcrawls_element_mix_name = "Mix Name:"
;
; editmix_element.php line: 77
mixcrawls_element_mix_components = "Mix Components"
;
; editmix_element.php line: 80
mixcrawls_element_add_group = "Add Group"
;
; editmix_element.php line: 86
mixcrawls_element_save_button = "Save"
;
; editstatic_element.php line: 64
editlocales_element_back_to_manage = "Back"
;
; editstatic_element.php line: 78
editstatic_element_locale_name = "Current Locale: %s"
;
; editstatic_element.php line: 82
editstatic_element_page = "Editing: %s"
;
; editstatic_element.php line: 89
editstatic_element_savebutton = "Save"
;
; footer_element.php line: 63
footer_element_blog = "Blog"
;
; footer_element.php line: 65
footer_element_privacy = "Privacy"
;
; footer_element.php line: 67
footer_element_bot = "YioopBot"
;
; footer_element.php line: 73
footer_element_developed_seek_quarry = "Developed at SeekQuarry"
;
; footer_element.php line: 76
footer_element_copyright_yioop = "(c) 2013 Yioop!"
;
; footer_element.php line: 78
footer_element_php_search_engine = "PHP Search Engine"
;
; machinelog_element.php line: 61
machinelog_element_back_to_manage = "Back"
;
; machinelog_element.php line: 66
machinelog_element_filter = "Filter:"
;
; machinelog_element.php line: 73
machinelog_element_log_file = "%s Log File"
;
; machinelog_element.php line: 78
machinelog_element_refresh_off = "Turn Auto Refresh Off"
;
; machinelog_element.php line: 83
machinelog_element_refresh_on = "Turn Auto Refresh On"
;
;createblogpages_element.php line: 58
createblogpages_element_edit_blogpages = "Create Blogs and Pages"
;
;createblogpages_element.php line: 58
createblogpages_element_sourcetype = "Source Type:"
;
;createblogpages_element.php line: 58
createblogpages_element_typename = "Title:"
;
;createblogpages_element.php line: 58
createblogpages_element_add_group = "Add Group:"
;
;createblogpages_element.php line: 58
createblogpages_element_description = "Description"
;
;createblogpages_element.php line: 58
createblogpages_element_save_page = "Save"
;
;blogpages_element.php line: 58
blogpages_element_search = "Search"
;
;blogpages_element.php line: 58
blogpages_element_title = "Title"
;
;blogpages_element.php line: 58
blogpages_element_sourcetype = "Type"
;
;blogpages_element.php line: 58
blogpages_element_action = "Action"
;
;blogpages_element.php line: 58
blogpages_element_deleteblog = "Delete"
;
;blogpages_element.php line: 58
blogpages_element_recent_blogs = "Recent Blogs"
;
;editblogpages_element.php line: 58
editblogpages_element_edit_blogpages = "Blog Description"
;
;editblogpages_element.php line: 58
editblogpages_element_deleteblog = "Delete"
;
;editblogpages_element.php line: 58
editblogpages_element_title = "Title"
;
;editblogpages_element.php line: 58
editblogpages_element_action = "Action"
;
;editblogpages_element.php line: 58
editblogpages_element_editblog  = "Edit"
;
;blogpages_element.php line:58
blogpages_element_related_blogs = "Related Blogs"
;
;signin_view.php line 45
signin_view_create_account = "Create Account"
;
;editblogpages_element.php line: 80
editblogpages_element_edit_settings = "Settings"
;
;editblogpages_element.php line: 80
editblgpages_element_submit = "Submit"
;
;editblogpages_element.php line: 80
editblogpages_element_transfer = "Transfer Admin"
;
;editblogpages_element.php line: 80
editblogpages_element_add_blogentry = "Add Blog Entry"
;
;editblogpages_element.php line: 80
editblogpages_element_sourcetype = "Source Type"
;
;editblogpages_element.php line: 80
editblogpages_element_typename = "Title"
;
;editblogpages_element.php line: 80
editblogpages_element_description  = "Description"
;
;editblogpages_element.php line: 80
editblogpages_element_save_page = "Save"
;
; blogpages_element.php line: 58
blogpages_element_lookup_page = "Manage Blogs and Pages"
;
; blogpages_element.php line: 64
blogpages_element_search_blog = "Enter Blog or Page Name"
;
;editblogpages_element.php line: 80
editblogpages_element_feeditems = "Title"
;
; manageaccount_element.php line: 56
manageaccount_element_change_email = "Change Email"
;
; manageaccount_element.php line: 66
manageaccount_element_old_email = "Old Email:"
;
; manageaccount_element.php line: 72
manageaccount_element_new_email = "New Email:"
;
; manageaccount_element.php line: 77
manageaccount_element_retype_email = "Retype New Email:"
;
; manageaccount_element.php line: 85
manageaccount_element_save = "Save"
;
; manageaccount_element.php line: 89
manageaccount_element_change_password = "Change Account Password"
;
; manageaccount_element.php line: 99
manageaccount_element_old_password = "Old Password: "
;
; manageaccount_element.php line: 104
manageaccount_element_new_password = "New Password: "
;
; manageaccount_element.php line: 109
manageaccount_element_retype_password = "Retype Password: "
;
; manageaccount_element.php line: 117
manageaccount_element_save = "Save"
;
; manageclassifiers_element.php line: 58
manageclassifiers_manage_classifiers = "Manage Classifiers"
;
; manageclassifiers_element.php line: 66
manageclassifiers_classifier_name = "Classifier Name:"
;
; manageclassifiers_element.php line: 71
manageclassifiers_create_button = "Create"
;
; manageclassifiers_element.php line: 75
manageclassifiers_available_classifiers = "Available Classifiers"
;
; manageclassifiers_element.php line: 78
manageclassifiers_label_col = "Label"
;
; manageclassifiers_element.php line: 79
manageclassifiers_positive_col = "Positive"
;
; manageclassifiers_element.php line: 80
manageclassifiers_negative_col = "Negative"
;
; manageclassifiers_element.php line: 82
manageclassifiers_actions_col = "Actions"
;
; manageclassifiers_element.php line: 95
manageclassifiers_edit = "Edit"
;
; manageclassifiers_element.php line: 98
manageclassifiers_finalized = "Finalized"
;
; manageclassifiers_element.php line: 104
manageclassifiers_finalize = "Finalize"
;
; manageclassifiers_element.php line: 106
manageclassifiers_finalize = "Finalize"
;
; manageclassifiers_element.php line: 109
manageclassifiers_finalizing = "Finalizing"
;
; manageclassifiers_element.php line: 116
manageclassifiers_delete = "Delete"
;
; managecrawls_element.php line: 56
managecrawls_element_create_crawl = "Create Crawl"
;
; managecrawls_element.php line: 65
managecrawls_element_description = "Name"
;
; managecrawls_element.php line: 71
managecrawls_element_start_new_crawl = "Start New Crawl"
;
; managecrawls_element.php line: 75
managecrawls_element_options = "Options"
;
; managecrawls_element.php line: 79
managecrawls_element_awaiting_status = "Awaiting Crawl Status"
;
; managecrawls_element.php line: 96
managecrawls_element_up_longer_update = "Crawl Status No Longer Updating"
;
; managegroups_element.php line: 73
managegroups_element_transfer_admin = "Are you sure you want to transfer the admin rights?"
;
; managegroups_element.php line: 83
managegroups_element_add_group = "Add Group"
;
; managegroups_element.php line: 94
managegroups_element_groupname = "Name:"
;
; managegroups_element.php line: 99
managegroups_element_submit = "Submit"
;
; managegroups_element.php line: 105
managegroups_element_delete_group = "Delete Group"
;
; managegroups_element.php line: 109
managegroups_element_delete_groupname = "Are you sure you want to delete the Group?"
;
; managegroups_element.php line: 118
manageusers_element_delete_groupname = "Name:"
;
; managegroups_element.php line: 125
managegroups_element_submit = "Submit"
;
; managegroups_element.php line: 131
managegroups_element_view_groups = "View Groups"
;
; managegroups_element.php line: 142
managegroups_element_select_group = "Name: "
;
; managegroups_element.php line: 166
managegroups_element_add_user = "Add User: "
;
; managegroups_element.php line: 174
managegroups_element_submit = "Submit"
;
; managegroups_element.php line: 200
managegroups_element_delete_groupuser = "Do you want to remove the user from the Group?"
;
; managegroups_element.php line: 202
managegroups_element_delete = "Delete"
;
; managegroups_element.php line: 208
managegroups_element_transfer = "Transfer Admin"
;
; managegroups_element.php line: 230
managegroups_element_add_group_role = "Add Role: "
;
; managegroups_element.php line: 238
managegroups_element_submit = "Submit"
;
; managegroups_element.php line: 260
managegroups_element_delete = "Delete"
;
; managelocales_element.php line: 59
managelocales_element_add_locale = "Add Locale"
;
; managelocales_element.php line: 69
managelocales_element_localenamelabel = "Locale Name:"
;
; managelocales_element.php line: 75
managelocales_element_localetaglabel = "Locale Tag:"
;
; managelocales_element.php line: 79
managelocales_element_writingmodelabel = "Writing Mode:"
;
; managelocales_element.php line: 92
managelocales_element_submit = "Submit"
;
; managelocales_element.php line: 98
managelocales_element_delete_locale = "Delete Locale"
;
; managelocales_element.php line: 108
managelocales_element_delete_localelabel = "Locale Name:"
;
; managelocales_element.php line: 112
managelocales_element_submit = "Submit"
;
; managelocales_element.php line: 117
managelocales_element_locale_list = "Locale List"
;
; managelocales_element.php line: 120
managelocales_element_localename = "Locale Name"
;
; managelocales_element.php line: 121
managelocales_element_localetag = "Locale Tag"
;
; managelocales_element.php line: 122
managelocales_element_writingmode = "Writing Mode"
;
; managelocales_element.php line: 124
managelocales_element_percenttranslated = "Percent Translated"
;
; managemachines_element.php line: 58
managemachines_element_add_machine = "Add Machine"
;
; managemachines_element.php line: 68
managemachines_element_machine_name = "Machine Name:"
;
; managemachines_element.php line: 74
managemachines_element_machineurl = "Machine Url:"
;
; managemachines_element.php line: 78
managemachines_element_is_mirror = "Is Mirror:"
;
; managemachines_element.php line: 83
managemachines_element_parent_name = "Parent Name:"
;
; managemachines_element.php line: 87
admin_controller_select_machine = "Select Machine"
;
; managemachines_element.php line: 91
managemachines_element_has_queueserver = "Has Queue Server:"
;
; managemachines_element.php line: 95
managemachines_element_num_fetchers = "Number of Fetchers:"
;
; managemachines_element.php line: 100
managemachines_element_submit = "Submit"
;
; managemachines_element.php line: 105
managemachines_element_delete_machine = "Delete Machine"
;
; managemachines_element.php line: 114
managemachines_element_machine_name = "Machine Name:"
;
; managemachines_element.php line: 118
admin_controller_select_machine = "Select Machine"
;
; managemachines_element.php line: 120
managemachines_element_submit = "Submit"
;
; managemachines_element.php line: 125
managemachines_element_machine_info = "Machine Information"
;
; managemachines_element.php line: 128
managemachines_element_awaiting_status = "Awaiting statuses of machines..."
;
; managemachines_element.php line: 145
managemachines_element_no_longer_update = "Machine status no longer updating..."
;
; manageroles_element.php line: 57
manageroles_element_add_role = "Add Role"
;
; manageroles_element.php line: 67
manageroles_element_rolename = "Role Name: "
;
; manageroles_element.php line: 71
manageroles_element_submit = "Submit"
;
; manageroles_element.php line: 76
manageroles_element_delete_role = "Delete Role"
;
; manageroles_element.php line: 86
manageusers_element_delete_rolename = "Role Name:"
;
; manageroles_element.php line: 90
manageroles_element_submit = "Submit"
;
; manageroles_element.php line: 94
manageroles_element_view_role_activities = "View Role Activities"
;
; manageroles_element.php line: 103
manageusers_element_select_role = "Role Name: "
;
; manageroles_element.php line: 123
manageusers_element_add_activity = "Add Activity:"
;
; manageroles_element.php line: 128
manageroles_element_submit = "Submit"
;
; manageusers_element.php line: 57
manageusers_element_add_user = "Add User"
;
; manageusers_element.php line: 67
manageusers_element_username = "Username: "
;
; manageusers_element.php line: 71
manageusers_element_password = "Password: "
;
; manageusers_element.php line: 75
manageusers_element_retype_password = "Retype Password: "
;
; manageusers_element.php line: 80
manageusers_element_submit = "Submit"
;
; manageusers_element.php line: 86
manageusers_element_delete_user = "Delete User"
;
; manageusers_element.php line: 96
manageusers_element_delete_username = "Username: "
;
; manageusers_element.php line: 100
manageusers_element_submit = "Submit"
;
; manageusers_element.php line: 105
manageusers_element_view_user_roles = "View User Roles"
;
; manageusers_element.php line: 114
manageusers_element_select_user = "Username: "
;
; manageusers_element.php line: 135
manageusers_element_add_role = "Add Role: "
;
; manageusers_element.php line: 140
manageusers_element_submit = "Submit"
;
; mixcrawls_element.php line: 59
mixcrawls_element_make_mix = "Make a Crawl Mix"
;
; mixcrawls_element.php line: 69
mixcrawls_element_mix_name = "Mix Name:"
;
; mixcrawls_element.php line: 74
mixcrawls_element_create_button = "Create"
;
; mixcrawls_element.php line: 78
mixcrawls_element_available_mixes = "Available Mixes"
;
; mixcrawls_element.php line: 80
mixcrawls_view_name = "Name"
;
; mixcrawls_element.php line: 81
mixcrawls_view_definition = "Definition"
;
; mixcrawls_element.php line: 82
mixcrawls_view_actions = "Actions"
;
; mixcrawls_element.php line: 109
mixcrawls_view_no_components = "Mix has no components yet"
;
; mixcrawls_element.php line: 114
mixcrawls_view_edit = "Edit"
;
; mixcrawls_element.php line: 120
mixcrawls_set_index = "Set as Index"
;
; mixcrawls_element.php line: 123
mixcrawl_search_index = "Search Index"
;
; mixcrawls_element.php line: 130
mixcrawls_view_delete = "Delete"
;
; pageoptions_element.php line: 63
pageoptions_element_crawl_time = "Crawl Time"
;
; pageoptions_element.php line: 68
pageoptions_element_search_time = "Search Time"
;
; pageoptions_element.php line: 73
pageoptions_element_test_options = "Test Options"
;
; pageoptions_element.php line: 85
pageoptions_element_load_options = "Get Page Options From:"
;
; pageoptions_element.php line: 90
pageoptions_element_page_range = "Byte Range to Download (0 - Value):"
;
; pageoptions_element.php line: 95
pageoptions_element_max_description = "Max Page Summary Length in Bytes:"
;
; pageoptions_element.php line: 100
pageoptions_element_save_cache = "Cache whole crawled pages:"
;
; pageoptions_element.php line: 110
pageoptions_element_allow_recrawl = "Allow Page Recrawl After:"
;
; pageoptions_element.php line: 116
pageoptions_element_file_types = "Page File Types to Crawl:"
;
; pageoptions_element.php line: 146
pageoptions_element_classifiers_rankers = "Classifiers and Rankers"
;
; pageoptions_element.php line: 164
pageoptions_element_use_classify = "Use to Classify"
;
; pageoptions_element.php line: 165
pageoptions_element_use_rank = "Use to Rank"
;
; pageoptions_element.php line: 195
pageoptions_element_no_classifiers = "No classifiers."
;
; pageoptions_element.php line: 198
pageoptions_element_indexing_plugins = "Indexing Plugins"
;
; pageoptions_element.php line: 202
pageoptions_element_plugin = "Plugin"
;
; pageoptions_element.php line: 205
pageoptions_element_plugin_include = "Use in Crawl"
;
; pageoptions_element.php line: 221
pageoptions_element_configure = "Configure"
;
; pageoptions_element.php line: 233
pageoptions_element_no_compatible_plugins = "No compatible indexing plugins found!"
;
; pageoptions_element.php line: 236
pageoptions_element_page_rules = "Page Field Extraction Rules"
;
; pageoptions_element.php line: 244
page_element_search_page = "Search Page Elements and Links"
;
; pageoptions_element.php line: 249
pageoptions_element_wd_suggest = "Word Suggest"
;
; pageoptions_element.php line: 257
pageoptions_element_subsearch_link = "Subsearch"
;
; pageoptions_element.php line: 266
pageoptions_element_signin_link = "Signin"
;
; pageoptions_element.php line: 274
pageoptions_element_cache_link = "Cache"
;
; pageoptions_element.php line: 283
pageoptions_element_similar_link = "Similar"
;
; pageoptions_element.php line: 292
pageoptions_element_in_link = "Inlinks"
;
; pageoptions_element.php line: 299
pageoptions_element_ip_link = "IP Address"
;
; pageoptions_element.php line: 308
pageoptions_element_ranking_factors = "Search Ranking Factors"
;
; pageoptions_element.php line: 311
pageoptions_element_title_weight = "Title Weight:"
;
; pageoptions_element.php line: 316
pageoptions_element_description_weight = "Description Weight:"
;
; pageoptions_element.php line: 321
pageoptions_element_link_weight = "Link Weight:"
;
; pageoptions_element.php line: 326
pageoptions_element_results_grouping_options = "Search Results Grouping"
;
; pageoptions_element.php line: 329
pageoptions_element_min_results_to_group = "Minimum Results to Group:"
;
; pageoptions_element.php line: 334
pageoptions_element_server_alpha = "Server Alpha:"
;
; pageoptions_element.php line: 342
pageoptions_element_test_page = "Test Page"
;
; pageoptions_element.php line: 344
pageoptions_element_page_type = "Type:"
;
; pageoptions_element.php line: 361
pageoptions_element_save_options = "Save"
;
; pageoptions_element.php line: 363
pageoptions_element_run_tests = "Test Process Page"
;
; pageoptions_element.php line: 369
pageoptions_element_test_results = "Test Results"
;
; pageoptions_element.php line: 372
pageoptions_element_after_process = "After page processor extracts summary"
;
; pageoptions_element.php line: 376
pageoptions_element_after_rules = "After page rules applied"
;
; pageoptions_element.php line: 380
pageoptions_element_extracted_words = "Words and positions extracted to index from summary"
;
; pageoptions_element.php line: 384
pageoptions_element_extracted_metas = "Extracted meta words"
;
; pageoptions_element.php line: 403
page_element_plugin_back = "Back"
;
; pageoptions_element.php line: 440
pageoptions_element_run_tests = "Test Process Page"
;
; pageoptions_element.php line: 444
pageoptions_element_save_options = "Save"
;
; resultseditor_element.php line: 58
resultseditor_element_edit_page = "Edit Result Page"
;
; resultseditor_element.php line: 61
resultseditor_element_edited_pages = "Edited Urls:"
;
; resultseditor_element.php line: 70
resultseditor_element_url_list = "Select a previously edited summary"
;
; resultseditor_element.php line: 72
resultseditor_element_load_page = "Load"
;
; resultseditor_element.php line: 83
resultseditor_element_page_url = "URL:"
;
; resultseditor_element.php line: 90
resultseditor_element_page_title = "Title:"
;
; resultseditor_element.php line: 96
resultseditor_element_description = "Description"
;
; resultseditor_element.php line: 102
resultseditor_element_reset = "Reset"
;
; resultseditor_element.php line: 105
resultseditor_element_save_page = "Save Page"
;
; resultseditor_element.php line: 108
resultseditor_element_filter_websites = "Filter Websites from Results"
;
; resultseditor_element.php line: 118
resultseditor_element_sites_to_filter = "Sites to Filter"
;
; resultseditor_element.php line: 125
resultseditor_element_save_filter = "Save Filter"
;
; searchsources_element.php line: 61
searchsources_element_add_media_source = "Add Media Source"
;
; searchsources_element.php line: 70
searchsources_element_sourcetype = "Type:"
;
; searchsources_element.php line: 75
searchsources_element_sourcename = "Name:"
;
; searchsources_element.php line: 79
searchsources_element_url = "URL:"
;
; searchsources_element.php line: 83
searchsources_element_thumbnail = "Thumb:"
;
; searchsources_element.php line: 87
searchsources_element_locale_tag = "Language:"
;
; searchsources_element.php line: 92
searchsources_element_submit = "Submit"
;
; searchsources_element.php line: 96
searchsources_element_media_sources = "Media Sources"
;
; searchsources_element.php line: 98
searchsources_element_medianame = "Name"
;
; searchsources_element.php line: 99
searchsources_element_mediatype = "Type"
;
; searchsources_element.php line: 100
searchsources_element_mediaurls = "Urls"
;
; searchsources_element.php line: 101
searchsources_element_action = "Action"
;
; searchsources_element.php line: 110
searchsources_element_deletemedia = "Delete"
;
; searchsources_element.php line: 115
searchsources_element_add_subsearch = "Add a Subsearch"
;
; searchsources_element.php line: 124
searchsources_element_foldername = "Folder Name:"
;
; searchsources_element.php line: 128
searchsources_element_indexsource = "Index Source:"
;
; searchsources_element.php line: 134
searchsources_element_per_page = "Results Per Page:"
;
; searchsources_element.php line: 140
searchsources_element_submit = "Submit"
;
; searchsources_element.php line: 143
searchsources_element_subsearches = "Current Subsearches"
;
; searchsources_element.php line: 145
searchsources_element_dirname = "Folder Name"
;
; searchsources_element.php line: 147
searchsources_element_index = "Index"
;
; searchsources_element.php line: 148
searchsources_element_localestring = "Localization Identifier"
;
; searchsources_element.php line: 150
searchsources_element_perpage = "Results/Page"
;
; searchsources_element.php line: 153
searchsources_element_actions = "Actions"
;
; searchsources_element.php line: 164
searchsources_element_localize = "Localize"
;
; searchsources_element.php line: 168
searchsources_element_deletesubsearch = "Delete"
;
;signin_view.php line 45
signin_view_create_account = "Create Account"
; signin_element.php line: 64
signin_element_settings = "Settings"
;
; signin_element.php line: 69
signin_element_signin = "Sign In"
;
; signin_element.php line: 73
signin_element_admin = "Admin"
;
; signin_element.php line: 75
signin_element_signout = "Sign Out"
;
; subsearch_element.php line: 57
subsearch_element_web = "Web"
;
; subsearch_element.php line: 83
subsearch_element_more = "More"
;
; subsearch_element.php line: 89
subsearch_element_more = "More"
;
; /Applications/MAMP/htdocs/git/yioop//views/helpers
;
; feeds_helper.php line: 70
feeds_helper_view_feed_results = "News Results for %s"
;
; feeds_helper.php line: 107
feeds_helper_view_onehour = "1 hour ago"
;
; feeds_helper.php line: 110
feeds_helper_view_hourdate = "%s hours ago"
;
; images_helper.php line: 64
images_helper_view_image_results = "View More Image Results..."
;
; pagination_helper.php line: 97
pagination_helper_previous = "Prev"
;
; pagination_helper.php line: 120
pagination_helper_next = "Next"
;
; toggle_helper.php line: 68
toggle_helper_on = "On"
;
; toggle_helper.php line: 70
toggle_helper_off = "Off"
;
; toggle_helper.php line: 74
toggle_helper_on = "On"
;
; toggle_helper.php line: 76
toggle_helper_off = "Off"
;
; toggle_helper.php line: 80
toggle_helper_on = "On"
;
; toggle_helper.php line: 82
toggle_helper_off = "Off"
;
; /Applications/MAMP/htdocs/git/yioop//views/layouts
;
; rss_layout.php line: 64
rss_layout_title = "PHP Search Engine - Yioop! : %s"
;
; rss_layout.php line: 72
rss_layout_description = "Search results for: %s"
;
; web_layout.php line: 68
web_layout_title = "PHP Search Engine - Yioop!"
;
; web_layout.php line: 77
web_layout_description = "PHP Crawler and Search Engine Software"
;
; web_layout.php line: 80
web_layout_description = "PHP Crawler and Search Engine Software"
;
; web_layout.php line: 109
web_layout_query_statistics = "Query Statistics"
;
; web_layout.php line: 113
web_layout_total_elapsed_time = "Total Elapsed Time for Queries: %s seconds."
;
; web_layout.php line: 118
web_layout_query_time = "Time: %s seconds."
;
; machinestatus_view.php line: 65
machinestatus_view_no_monitored = "No Monitored Machines"
;
; machinestatus_view.php line: 70
machinestatus_name_server = "Name Server"
;
; machinestatus_view.php line: 82
machinestatus_view_news_updater = "News Updater"
;
; machinestatus_view.php line: 84
machinestatus_view_log = "Log"
;
; machinestatus_view.php line: 110
machinestatus_view_mirrors = "Mirrors"
;
; machinestatus_view.php line: 113
machinestatus_view_log = "Log"
;
; machinestatus_view.php line: 126
machinestatus_view_queue_server = "Queue Server"
;
; machinestatus_view.php line: 128
machinestatus_view_log = "Log"
;
; machinestatus_view.php line: 137
machinestatus_view_no_queue_server = "Machine has no queue server"
;
; machinestatus_view.php line: 140
machinestatus_view_no_fetchers = "Machine has no fetchers"
;
; machinestatus_view.php line: 150
machinestatus_view_fetchers = "Fetchers"
;
; machinestatus_view.php line: 160
machinestatus_view_log = "Log"
;
; nocache_view.php line: 65
nocache_view_no_cache = "Did not have cache of requested item."
;
; nocache_view.php line: 70
nocache_view_summary_contents = "Summary Data stored in Yioop for Item"
;
; register_view.php line: 69
register_view_create_account = "Create Account"
;
; register_view.php line: 77
register_view_firstname = "First Name:"
;
; register_view.php line: 96
register_view_lastname = "Last Name:"
;
; register_view.php line: 115
register_view_username = "Username:"
;
; register_view.php line: 132
register_view_email = "Email:"
;
; register_view.php line: 149
register_view_password = "Password:"
;
; register_view.php line: 162
register_view_retypepassword = "Re-type password:"
;
; register_view.php line: 180
register_create_account = "Create Account"
;
; register_view.php line: 188
signin_view_return_yioop = "Return to Yioop"
;
; search_view.php line: 105
search_view_title = "Yioop! PHP Search Engine"
;
; search_view.php line: 132
search_view_input_label = "Enter the terms you would like to search the web for"
;
; search_view.php line: 136
search_view_input_placeholder = "Type what you are looking for"
;
; search_view.php line: 140
search_view_search = "Search"
;
; search_view.php line: 162
search_view_calculated = "%s seconds."
;
; search_view.php line: 163
search_view_results = "Showing %s - %s of %s"
;
; search_view.php line: 284
search_view_cache = "Cached"
;
; search_view.php line: 287
search_view_as_text = "View&nbsp;as&nbsp;text"
;
; search_view.php line: 300
search_view_similar = "Similar"
;
; search_view.php line: 312
search_view_inlink = "Inlinks"
;
; search_view.php line: 332
search_view_rank = "Rank:%s "
;
; search_view.php line: 334
search_view_relevancy = "Rel:%s "
;
; search_view.php line: 336
search_view_proximity = "Prox:%s"
;
; search_view.php line: 344
search_view_score = "Score:%s"
;
; search_view.php line: 369
search_view_more_statistics = "More Statistics"
;
; settings_view.php line: 80
settings_view_settings = "Settings"
;
; settings_view.php line: 88
settings_view_results_per_page = "Results per Page:"
;
; settings_view.php line: 94
settings_view_open_in_tabs = "Open Results in New Tabs:"
;
; settings_view.php line: 101
settings_view_search_index = "Search Index:"
;
; settings_view.php line: 106
settings_view_language_label = "Language:"
;
; settings_view.php line: 115
settings_view_return_yioop = "Return"
;
; settings_view.php line: 118
settings_view_save = "Save Settings"
;
; settings_view.php line: 126
settings_install_search_plugin = "Install Yioop! Open Search Plugin"
;
; signin_view.php line: 69
signin_view_signin = "Signin"
;
; signin_view.php line: 75
signin_view_username = "Username"
;
; signin_view.php line: 82
signin_view_password = "Password"
;
; signin_view.php line: 93
signin_view_login = "Login"
;
; signin_view.php line: 101
signin_view_return_yioop = "Return to Yioop"
;
; signin_view.php line: 105
signin_view_create_account = "Create Account"
;
; static_view.php line: 83
static_view_title = "PHP Search Engine - Yioop!"
;
; statistics_view.php line: 81
statistics_view_statistics = "Statistics"
;
; statistics_view.php line: 86
statistics_view_calculating = "Calculating... Please be patient."
;
; statistics_view.php line: 102
statistics_view_error_codes = "Error Codes Seen"
;
; statistics_view.php line: 103
statistics_view_sizes = "File Sizes Downloaded"
;
; statistics_view.php line: 104
statistics_view_links_per_page = "Average Links per Page"
;
; statistics_view.php line: 105
statistics_view_page_date = "Page Modified Dates"
;
; statistics_view.php line: 106
statistics_view_dns_time = "DNS Lookup Time"
;
; statistics_view.php line: 107
statistics_view_download_time = "Page Download Time"
;
; statistics_view.php line: 108
statistics_view_top_level_domain = "Top Level Domains"
;
; statistics_view.php line: 109
statistics_view_file_extension = "File Extension"
;
; statistics_view.php line: 110
statistics_view_media_type = "Media Type"
;
; statistics_view.php line: 111
statistics_view_language = "Web Page Language"
;
; statistics_view.php line: 112
statistics_view_server = "Web Server"
;
; statistics_view.php line: 113
statistics_view_os = "Operating System (if detected)"
;
; statistics_view.php line: 117
statistics_view_general_info = "General Index Info"
;
; statistics_view.php line: 118
statistics_view_description = "Index Description"
;
; statistics_view.php line: 120
statistics_view_timestamp = "Timestamp"
;
; statistics_view.php line: 122
statistics_view_crawl_date = "Crawl Start Time"
;
; statistics_view.php line: 124
statistics_view_pages = "Downloaded Pages"
;
; statistics_view.php line: 126
statistics_view_url = "Seen Urls"
;
; statistics_view.php line: 129
statistics_view_number_hosts = "Hostnames Seen"
;
; view.php line: 36
view_locale_version4 = "Version 4"
;
; /Applications/MAMP/htdocs/git/yioop//lib/indexing_plugins
;
; wordfilter_plugin.php line: 230
wordfilter_plugin_settings_saved = "Word Filter Settings Saved!"
;
; wordfilter_plugin.php line: 256
wordfilter_plugin_preferences = "Word Filter Preferences"
;
; wordfilter_plugin.php line: 269
wordfilter_plugin_save = "Save"

X