Bläddra i källkod

remove unused messages and rename to DocBoostMatcher

Shinsuke Sugaya 9 år sedan
förälder
incheckning
b386b3843c

+ 1 - 1
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

@@ -194,7 +194,7 @@ public class AdminSearchlistAction extends FessAdminAction {
         try {
         try {
             final QueryBuilder query = QueryBuilders.termQuery(fessConfig.getIndexFieldDocId(), docId);
             final QueryBuilder query = QueryBuilders.termQuery(fessConfig.getIndexFieldDocId(), docId);
             fessEsClient.deleteByQuery(fessConfig.getIndexDocumentIndex(), fessConfig.getIndexDocumentType(), query);
             fessEsClient.deleteByQuery(fessConfig.getIndexDocumentIndex(), fessConfig.getIndexDocumentType(), query);
-            saveInfo(messages -> messages.addSuccessDeleteSolrIndex(GLOBAL));
+            saveInfo(messages -> messages.addSuccessDeleteDocFromIndex(GLOBAL));
         } catch (final Exception e) {
         } catch (final Exception e) {
             throwValidationError(messages -> messages.addErrorsFailedToDeleteDocInAdmin(GLOBAL),
             throwValidationError(messages -> messages.addErrorsFailedToDeleteDocInAdmin(GLOBAL),
                     () -> asHtml(path_AdminSearchlist_AdminSearchlistJsp));
                     () -> asHtml(path_AdminSearchlist_AdminSearchlistJsp));

+ 1 - 1
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

@@ -387,7 +387,7 @@ public class WebFsIndexHelper implements Serializable {
         indexUpdater.setDaemon(true);
         indexUpdater.setDaemon(true);
         indexUpdater.setCrawlerList(crawlerList);
         indexUpdater.setCrawlerList(crawlerList);
         for (final BoostDocumentRule rule : boostDocumentRuleService.getAvailableBoostDocumentRuleList()) {
         for (final BoostDocumentRule rule : boostDocumentRuleService.getAvailableBoostDocumentRuleList()) {
-            indexUpdater.addBoostDocumentRule(new org.codelibs.fess.indexer.BoostDocumentRule(rule));
+            indexUpdater.addDocBoostMatcher(new org.codelibs.fess.indexer.DocBoostMatcher(rule));
         }
         }
         indexUpdater.start();
         indexUpdater.start();
 
 

+ 5 - 4
src/main/java/org/codelibs/fess/indexer/BoostDocumentRule.java → src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

@@ -17,24 +17,25 @@ package org.codelibs.fess.indexer;
 
 
 import java.util.Map;
 import java.util.Map;
 
 
+import org.codelibs.fess.es.config.exentity.BoostDocumentRule;
 import org.slf4j.Logger;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.slf4j.LoggerFactory;
 
 
 import groovy.lang.Binding;
 import groovy.lang.Binding;
 import groovy.lang.GroovyShell;
 import groovy.lang.GroovyShell;
 
 
-public class BoostDocumentRule {
-    private static final Logger logger = LoggerFactory.getLogger(BoostDocumentRule.class);
+public class DocBoostMatcher {
+    private static final Logger logger = LoggerFactory.getLogger(DocBoostMatcher.class);
 
 
     private String boostExpression = "0";
     private String boostExpression = "0";
 
 
     private String matchExpression;
     private String matchExpression;
 
 
-    public BoostDocumentRule() {
+    public DocBoostMatcher() {
         // nothing
         // nothing
     }
     }
 
 
-    public BoostDocumentRule(final org.codelibs.fess.es.config.exentity.BoostDocumentRule rule) {
+    public DocBoostMatcher(final BoostDocumentRule rule) {
         matchExpression = rule.getUrlExpr();
         matchExpression = rule.getUrlExpr();
         boostExpression = rule.getBoostExpr();
         boostExpression = rule.getBoostExpr();
     }
     }

+ 8 - 8
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

@@ -101,7 +101,7 @@ public class IndexUpdater extends Thread {
 
 
     protected int unprocessedDocumentSize = 100;
     protected int unprocessedDocumentSize = 100;
 
 
-    protected List<String> finishedSessionIdList = new ArrayList<String>();
+    protected List<String> finishedSessionIdList = new ArrayList<>();
 
 
     public long commitMarginTime = 10000; // 10ms
     public long commitMarginTime = 10000; // 10ms
 
 
@@ -113,9 +113,9 @@ public class IndexUpdater extends Thread {
 
 
     public boolean favoriteCountEnabled = true;
     public boolean favoriteCountEnabled = true;
 
 
-    private final List<BoostDocumentRule> boostRuleList = new ArrayList<BoostDocumentRule>();
+    private final List<DocBoostMatcher> docBoostMatcherList = new ArrayList<>();
 
 
-    private final Map<String, Object> docValueMap = new HashMap<String, Object>();
+    private final Map<String, Object> docValueMap = new HashMap<>();
 
 
     private List<Crawler> crawlerList;
     private List<Crawler> crawlerList;
 
 
@@ -391,9 +391,9 @@ public class IndexUpdater extends Thread {
         }
         }
 
 
         float documentBoost = 0.0f;
         float documentBoost = 0.0f;
-        for (final BoostDocumentRule rule : boostRuleList) {
-            if (rule.match(map)) {
-                documentBoost = rule.getValue(map);
+        for (final DocBoostMatcher docBoostMatcher : docBoostMatcherList) {
+            if (docBoostMatcher.match(map)) {
+                documentBoost = docBoostMatcher.getValue(map);
                 break;
                 break;
             }
             }
         }
         }
@@ -546,8 +546,8 @@ public class IndexUpdater extends Thread {
         this.unprocessedDocumentSize = unprocessedDocumentSize;
         this.unprocessedDocumentSize = unprocessedDocumentSize;
     }
     }
 
 
-    public void addBoostDocumentRule(final BoostDocumentRule rule) {
-        boostRuleList.add(rule);
+    public void addDocBoostMatcher(final DocBoostMatcher rule) {
+        docBoostMatcherList.add(rule);
     }
     }
 
 
     public void addDefaultDocValue(final String fieldName, final Object value) {
     public void addDefaultDocValue(final String fieldName, final Object value) {

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 22 - 757
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 9 - 774
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java


+ 0 - 595
src/main/resources/fess_label.properties

@@ -40,7 +40,6 @@ labels.webConfigId=Web Config Name
 labels.logFileName=Log File Name
 labels.logFileName=Log File Name
 labels.cronExpression=Schedule
 labels.cronExpression=Schedule
 labels.dayForCleanup=Remove Index Before Days
 labels.dayForCleanup=Remove Index Before Days
-labels.commitPerCount=Commit per Document Size
 labels.crawlingThreadCount=Num of Simultaneous Crawler Config
 labels.crawlingThreadCount=Num of Simultaneous Crawler Config
 labels.snapshotPath=Snapshot Path
 labels.snapshotPath=Snapshot Path
 labels.boost=Boost
 labels.boost=Boost
@@ -62,7 +61,6 @@ labels.appendQueryParameter=Additional Query Parameters
 labels.callback=callback
 labels.callback=callback
 labels.clientIp=Client IP
 labels.clientIp=Client IP
 labels.code=User ID
 labels.code=User ID
-labels.commit=Commit
 labels.configId=Config ID
 labels.configId=Config ID
 labels.configParameter=Config Parameters
 labels.configParameter=Config Parameters
 labels.content=Content
 labels.content=Content
@@ -99,7 +97,6 @@ labels.latitude=Latitude
 labels.longitude=Longitude
 labels.longitude=Longitude
 labels.notificationTo=Notification To
 labels.notificationTo=Notification To
 labels.num=Num
 labels.num=Num
-labels.optimize=Optimize
 labels.overwrite=Overwrite
 labels.overwrite=Overwrite
 labels.pn=Page Numger
 labels.pn=Page Numger
 labels.protocolScheme=Scheme
 labels.protocolScheme=Scheme
@@ -173,7 +170,6 @@ labels.menu_wizard=Wizard
 labels.menu_crawl_config=General
 labels.menu_crawl_config=General
 labels.menu_scheduler_config=Scheduler
 labels.menu_scheduler_config=Scheduler
 labels.menu_dashboard_config=Dashboard
 labels.menu_dashboard_config=Dashboard
-labels.menu_document_config=Index
 labels.menu_design=Page Design
 labels.menu_design=Page Design
 labels.menu_dict=Dictionary
 labels.menu_dict=Dictionary
 labels.menu_data=Backup/Restore
 labels.menu_data=Backup/Restore
@@ -203,14 +199,6 @@ labels.menu_log=Log Files
 labels.menu_jobLog=Job Log
 labels.menu_jobLog=Job Log
 labels.menu_failure_url=Failure URL
 labels.menu_failure_url=Failure URL
 labels.menu_search_list=Search
 labels.menu_search_list=Search
-labels.menu_user_log=User Info
-labels.menu_search_log=Search Log
-labels.menu_stats=Statistics
-labels.menu_favoriteLog=Popular URL
-labels.menu_logout=Logout
-labels.header.logo_alt=Fess
-labels.header.home=Home
-labels.header.help=Help
 labels.sidebar.placeholder_search=Search...
 labels.sidebar.placeholder_search=Search...
 labels.footer.copyright=Copyright(C) 2009-2015 <a href="https://github.com/codelibs">CodeLibs Project</a>. <span class="br-phone"></span>All Rights Reserved.
 labels.footer.copyright=Copyright(C) 2009-2015 <a href="https://github.com/codelibs">CodeLibs Project</a>. <span class="br-phone"></span>All Rights Reserved.
 labels.search=Search
 labels.search=Search
@@ -219,9 +207,6 @@ labels.search_result_time=({0} sec)
 labels.prev_page=Prev
 labels.prev_page=Prev
 labels.next_page=Next
 labels.next_page=Next
 labels.did_not_match=Your search - <b>{0}</b> - did not match any documents.
 labels.did_not_match=Your search - <b>{0}</b> - did not match any documents.
-labels.search_header_logo_alt=Fess
-labels.search_result_noneselect_label=-- Label --
-labels.search_result_select_label=# selected
 labels.search_title=Fess
 labels.search_title=Fess
 labels.search_hot_search_word=Popular Words: 
 labels.search_hot_search_word=Popular Words: 
 labels.search_result_select_sort=-- Sort --
 labels.search_result_select_sort=-- Sort --
@@ -278,12 +263,10 @@ labels.request_error_title=Bad Request
 labels.bad_request=Invalid request for the url.
 labels.bad_request=Invalid request for the url.
 labels.page_not_found_title=Page Not Found
 labels.page_not_found_title=Page Not Found
 labels.check_url=Check the url.
 labels.check_url=Check the url.
-labels.home=Home
 labels.user_name=Username
 labels.user_name=Username
 labels.login=Login
 labels.login=Login
 labels.login.placeholder_username=Username
 labels.login.placeholder_username=Username
 labels.login.placeholder_password=Password
 labels.login.placeholder_password=Password
-labels.login.footer_copyright=Copyright(C) 2009-2014 CodeLibs Project. All Rights Reserved.
 labels.login.title=Login
 labels.login.title=Login
 labels.index_label=Labels
 labels.index_label=Labels
 labels.index_lang=Languages
 labels.index_lang=Languages
@@ -294,15 +277,8 @@ labels.logout=Logout
 labels.do_you_want_to_logout=Do you want to logout?
 labels.do_you_want_to_logout=Do you want to logout?
 labels.logout_button=Logout
 labels.logout_button=Logout
 labels.top.search=Search
 labels.top.search=Search
-labels.search_top_logo_alt=Fess
 labels.index_title=Fess
 labels.index_title=Fess
-labels.index_subtitle=Full tExt Search Server
-labels.index_search_title=Search
-labels.index_form_query_label=Search the Web/Document
-labels.index_form_label_label=Select a label
 labels.index_form_search_btn=Search
 labels.index_form_search_btn=Search
-labels.index_form_reset_btn=Reset
-labels.index_hotkeywords_title=Popular Words
 labels.index_osdd_title=Fess Search
 labels.index_osdd_title=Fess Search
 labels.index_form_option_btn=Options
 labels.index_form_option_btn=Options
 labels.index_help=Help
 labels.index_help=Help
@@ -314,8 +290,6 @@ labels.search_unknown=Unknown
 labels.footer_back_to_top=Back to top
 labels.footer_back_to_top=Back to top
 labels.header_brand_name=Fess
 labels.header_brand_name=Fess
 labels.header_form_option_btn=Options
 labels.header_form_option_btn=Options
-labels.header_username=Username: {0}
-labels.open_uri=Accessing {0}<br>At a first time starting, it might take a little more time to open the file.
 labels.file_crawling_configuration=File Crawling
 labels.file_crawling_configuration=File Crawling
 labels.file_crawling_title_details=File Crawling Configuration
 labels.file_crawling_title_details=File Crawling Configuration
 labels.included_paths=Included Paths For Crawling
 labels.included_paths=Included Paths For Crawling
@@ -330,24 +304,7 @@ labels.millisec=ms
 labels.role_type=Role
 labels.role_type=Role
 labels.label_type=Label
 labels.label_type=Label
 labels.file_crawling_button_create=Create
 labels.file_crawling_button_create=Create
-labels.file_crawling_button_back=Back
-labels.file_crawling_button_confirm=Confirm
-labels.file_crawling_title_confirm=Confirm File Crawling Configuration
-labels.file_crawling_button_update=Update
-labels.file_crawling_button_delete=Delete
-labels.file_crawling_button_edit=Edit
 labels.file_crawling_button_create_job=Create new job
 labels.file_crawling_button_create_job=Create new job
-labels.file_crawling_link_create_new=Create New
-labels.file_crawling_link_list=List
-labels.file_crawling_link_create=Create New
-labels.file_crawling_link_update=Edit
-labels.file_crawling_link_delete=Delete
-labels.file_crawling_link_confirm=Details
-labels.file_crawling_link_details=Details
-labels.file_crawling_link_edit=Edit
-labels.file_crawling_link_delete=Delete
-labels.file_crawling_link_prev_page=Prev
-labels.file_crawling_link_next_page=Next
 labels.file_crawling_job_title=File Crawler - {0}
 labels.file_crawling_job_title=File Crawler - {0}
 labels.web_crawling_configuration=Web Crawling
 labels.web_crawling_configuration=Web Crawling
 labels.web_crawling_title_details=Web Crawling Configuration
 labels.web_crawling_title_details=Web Crawling Configuration
@@ -357,37 +314,19 @@ labels.included_doc_urls=Included URLs For Indexing
 labels.excluded_doc_urls=Excluded URLs For Indexing
 labels.excluded_doc_urls=Excluded URLs For Indexing
 labels.user_agent=User Agent
 labels.user_agent=User Agent
 labels.web_crawling_button_create=Create
 labels.web_crawling_button_create=Create
-labels.web_crawling_button_back=Back
-labels.web_crawling_button_confirm=Confirm
 labels.web_crawling_button_create_job=Create new job
 labels.web_crawling_button_create_job=Create new job
-labels.web_crawling_title_confirm=Confirm Web Crawling Configuration
-labels.web_crawling_button_update=Update
-labels.web_crawling_button_delete=Delete
-labels.web_crawling_button_edit=Edit
 labels.web_crawling_link_create_new=Create New
 labels.web_crawling_link_create_new=Create New
-labels.web_crawling_link_list=List
 labels.web_crawling_link_create=Create New
 labels.web_crawling_link_create=Create New
-labels.web_crawling_link_update=Edit
-labels.web_crawling_link_delete=Delete
-labels.web_crawling_link_confirm=Details
-labels.web_crawling_link_details=Details
-labels.web_crawling_link_edit=Edit
-labels.web_crawling_link_delete=Delete
-labels.web_crawling_link_prev_page=Prev
-labels.web_crawling_link_next_page=Next
 labels.web_crawling_job_title=Web Crawler - {0}
 labels.web_crawling_job_title=Web Crawler - {0}
 labels.crawler_configuration=General Configuration
 labels.crawler_configuration=General Configuration
 labels.crawler_title_edit=General Configuration
 labels.crawler_title_edit=General Configuration
 labels.schedule=Schedule
 labels.schedule=Schedule
-labels.optimize=Optimize Index
 labels.enabled=Enabled
 labels.enabled=Enabled
-labels.commit=Commit Index
 labels.server_rotation=Server Rotation
 labels.server_rotation=Server Rotation
 labels.day_for_cleanup=Remove Index Before
 labels.day_for_cleanup=Remove Index Before
 labels.day=Day(s)
 labels.day=Day(s)
 labels.crawl_button_update=Update
 labels.crawl_button_update=Update
 labels.none=None
 labels.none=None
-labels.commit_per_count=Commit per Document Size
 labels.crawling_thread_count=Num of Simultaneous Crawler Config
 labels.crawling_thread_count=Num of Simultaneous Crawler Config
 labels.diff_crawling=Check Last Modified
 labels.diff_crawling=Check Last Modified
 labels.use_acl_as_role=Use ACL as Role
 labels.use_acl_as_role=Use ACL as Role
@@ -396,8 +335,6 @@ labels.user_info_enabled=User Logging
 labels.user_favorite_enabled=Favarite Logging
 labels.user_favorite_enabled=Favarite Logging
 labels.web_api_xml_enabled=XML Response
 labels.web_api_xml_enabled=XML Response
 labels.web_api_json_enabled=JSON Response
 labels.web_api_json_enabled=JSON Response
-labels.web_api_suggest_enabled=Suggest API Response
-labels.web_api_analysis_enabled=Analysis API Response
 labels.default_label_value=Default Label Value
 labels.default_label_value=Default Label Value
 labels.append_query_param_enabled=Append Params to URL
 labels.append_query_param_enabled=Append Params to URL
 labels.supported_search_feature=Supported Search
 labels.supported_search_feature=Supported Search
@@ -406,7 +343,6 @@ labels.failure_count_threshold=Failure Count Threshold
 labels.hot_search_word_enabled=Popular Word Response
 labels.hot_search_word_enabled=Popular Word Response
 labels.supported_search_web=Web
 labels.supported_search_web=Web
 labels.supported_search_none=Not Available
 labels.supported_search_none=Not Available
-labels.purge_session_info_day=Purge Session Info Before
 labels.purge_search_log_day=Purge Search Log Before
 labels.purge_search_log_day=Purge Search Log Before
 labels.purge_job_log_day=Purge Job Log Before
 labels.purge_job_log_day=Purge Job Log Before
 labels.purge_user_info_day=Purge User Before
 labels.purge_user_info_day=Purge User Before
@@ -415,102 +351,15 @@ labels.csv_file_encoding=Encoding for CSV
 labels.notification_to=Notification Email
 labels.notification_to=Notification Email
 labels.path_mapping_configuration=Path Mapping
 labels.path_mapping_configuration=Path Mapping
 labels.path_mapping_title_details=Path Mapping
 labels.path_mapping_title_details=Path Mapping
-labels.path_mapping_button_create=Create
-labels.path_mapping_button_back=Back
-labels.path_mapping_button_confirm=Confirm
 labels.disabled=Disabled
 labels.disabled=Disabled
 labels.path_mapping_pt_crawling=Crawling
 labels.path_mapping_pt_crawling=Crawling
 labels.path_mapping_pt_displaying=Displaying
 labels.path_mapping_pt_displaying=Displaying
 labels.path_mapping_pt_both=Crawling/Displaying
 labels.path_mapping_pt_both=Crawling/Displaying
-labels.path_mapping_title_confirm=Confirm Path Mapping
 labels.regular_name=Regular Name
 labels.regular_name=Regular Name
 labels.duplicate_name=Duplicate Name
 labels.duplicate_name=Duplicate Name
-labels.path_mapping_button_create=Create
-labels.path_mapping_button_back=Back
-labels.path_mapping_button_update=Update
-labels.path_mapping_button_delete=Delete
-labels.path_mapping_button_edit=Edit
-labels.path_mapping_link_create_new=Create New
-labels.path_mapping_link_list=List
-labels.path_mapping_link_create=Create New
-labels.path_mapping_link_update=Edit
-labels.path_mapping_link_delete=Delete
-labels.path_mapping_link_confirm=Details
-labels.path_mapping_link_details=Details
-labels.path_mapping_link_edit=Edit
-labels.path_mapping_link_delete=Delete
-labels.path_mapping_link_prev_page=Prev
-labels.path_mapping_link_next_page=Next
 labels.duplicate_host_configuration=Duplicate Host
 labels.duplicate_host_configuration=Duplicate Host
 labels.duplicate_host_title_details=Duplicate Host
 labels.duplicate_host_title_details=Duplicate Host
-labels.duplicate_host_button_create=Create
-labels.duplicate_host_button_back=Back
-labels.duplicate_host_button_confirm=Confirm
-labels.duplicate_host_title_confirm=Confirm Duplicate Host
-labels.duplicate_host_button_create=Create
-labels.duplicate_host_button_back=Back
-labels.duplicate_host_button_update=Update
-labels.duplicate_host_button_delete=Delete
-labels.duplicate_host_button_edit=Edit
-labels.duplicate_host_link_create_new=Create New
-labels.duplicate_host_link_list=List
-labels.duplicate_host_link_create=Create New
-labels.duplicate_host_link_update=Edit
-labels.duplicate_host_link_delete=Delete
-labels.duplicate_host_link_confirm=Details
-labels.duplicate_host_link_details=Details
-labels.duplicate_host_link_edit=Edit
-labels.duplicate_host_link_delete=Delete
-labels.duplicate_host_link_prev_page=Prev
-labels.duplicate_host_link_next_page=Next
 labels.dashboard_title_configuration=System Configuration
 labels.dashboard_title_configuration=System Configuration
-labels.system_title_system_status=System Status
-labels.es_button_update=Update
-labels.es_active=Active
-labels.es_inactive=Inactive
-labels.es_ready=Ready
-labels.es_completed=Completed
-labels.es_unfinished=Unfinished
-labels.es_action_none=None
-labels.es_action_commit=Commit
-labels.es_action_optimize=Optimize
-labels.es_action_delete=Delete
-labels.es_action_confirm_list=Results
-labels.es_action_all=All
-labels.es_cluster_name=Cluster Name
-labels.es_title_action=Solr Action
-labels.es_title_delete=Delete Docs From Index
-labels.crawler_process_running=Crawler Process
-labels.crawler_running=Running
-labels.crawler_stopped=Stopped
-labels.crawler_process_action=Action
-labels.es_document_title=Added Docs
-labels.es_group_name=Server Group
-labels.session_name=Session 
-labels.es_num_of_docs=Num of Docs
-labels.es_title_edit=Solr Status
-labels.crawler_button_start=Start Crawler
-labels.crawler_button_stop=Stop Crawker
-labels.es_management_title=Solr Instance
-labels.es_instance_name=Name
-labels.es_instance_status=Status
-labels.es_instance_action=Action
-labels.es_instance_start=Start
-labels.es_instance_stop=Stop
-labels.es_instance_reload=Reload
-labels.es_action_url_delete=URL
-labels.system_document_all=All
-labels.system_group_server_name=Group : Server
-labels.system_server_status=Server Status
-labels.system_index_status=Index Status
-labels.crawler_status_title=Crawler Status
-labels.crawler_sessionid_all=All
-labels.no_available_solr_servers=No available Solr server.
-labels.suggest_document_title=Added Suggest Docs
-labels.suggest_type=type
-labels.suggest_type_all=all
-labels.suggest_type_content=content
-labels.suggest_type_searchlog=search words
 labels.suggest_search_log_enabled=Suggest by Search Words
 labels.suggest_search_log_enabled=Suggest by Search Words
 labels.purge_suggest_search_log_day=Purge Suggest Docs by Search Words
 labels.purge_suggest_search_log_day=Purge Suggest Docs by Search Words
 labels.crawling_session_title=Crawling Information
 labels.crawling_session_title=Crawling Information
@@ -522,74 +371,18 @@ labels.crawling_session_search=Search
 labels.crawling_session_reset=Reset
 labels.crawling_session_reset=Reset
 labels.crawling_session_link_list=List
 labels.crawling_session_link_list=List
 labels.crawling_session_link_details=Details
 labels.crawling_session_link_details=Details
-labels.crawling_session_link_delete=Delete
-labels.crawling_session_prev_page=Prev
-labels.crawling_session_next_page=Next
 labels.crawling_session_session_id_search=Session ID
 labels.crawling_session_session_id_search=Session ID
 labels.crawling_session_session_id=Session ID
 labels.crawling_session_session_id=Session ID
-labels.crawling_session_name=Name
 labels.crawling_session_created_time=Created
 labels.crawling_session_created_time=Created
-labels.crawling_session_expired_time=Expired
 labels.crawling_session_delete_all_link=Delete All
 labels.crawling_session_delete_all_link=Delete All
 labels.crawling_session_delete_all_confirmation=Do you really want to delete all?
 labels.crawling_session_delete_all_confirmation=Do you really want to delete all?
 labels.crawling_session_delete_all_cancel=Cancel
 labels.crawling_session_delete_all_cancel=Cancel
-labels.crawling_session_CrawlerStatus=Crawling Status
-labels.crawling_session_CrawlerStartTime=Start Time (Crawling)
-labels.crawling_session_CrawlerEndTime=End Time (Crawling)
-labels.crawling_session_CrawlerExecTime=Exec Time (Crawling)
-labels.crawling_session_WebFsCrawlStartTime=Start Time (Web/File)
-labels.crawling_session_WebFsCrawlEndTime=End Time (Web/File)
-labels.crawling_session_DataCrawlStartTime=Start Time (Data Store)
-labels.crawling_session_DataCrawlEndTime=End Time (Data Store)
-labels.crawling_session_OptimizeStartTime=Start Time (Optimize)
-labels.crawling_session_OptimizeEndTime=End Time (Optimize)
-labels.crawling_session_OptimizeExecTime=Exec Time (Optimize)
-labels.crawling_session_CommitStartTime=Start Time (Commit)
-labels.crawling_session_CommitEndTime=End Time (Commit)
-labels.crawling_session_CommitExecTime=Exec Time (Commit)
-labels.crawling_session_WebFsCrawlExecTime=Exec Time (Web/File)
-labels.crawling_session_WebFsIndexExecTime=Indexing Exec Time (Web/File)
-labels.crawling_session_WebFsIndexSize=Index Size (Web/File)
-labels.crawling_session_DataCrawlExecTime=Exec Time (Data Store)
-labels.crawling_session_DataIndexExecTime=Indexing Exec Time (Data Store)
-labels.crawling_session_DataIndexSize=Index Size (Data Store)
-labels.crawling_session_ReplicationStatus=Replication Status
-labels.crawling_session_ReplicationStartTime=Start Time (Replication)
-labels.crawling_session_ReplicationEndTime=End Time (Replication)
-labels.crawling_session_ReplicationExecTime=Exec Time (Replication)
-labels.data_configuration=Backup/Restore Configuration
-labels.backup_title_edit=Backup 
-labels.backup=Backup
-labels.download_data=Download as XML File
-labels.download_data_csv=Download as CSV File
-labels.restore_title_edit=Restore 
-labels.restore=File
-labels.upload_button=Restore Data
-labels.backup_config=Confinguration
-labels.backup_session_info=Session Info
-labels.backup_search_log=Search Log
-labels.backup_click_log=Click Long
 labels.web_authentication_configuration=Web Authentication
 labels.web_authentication_configuration=Web Authentication
-labels.web_authentication_link_create_new=Create New
-labels.web_authentication_link_list=List
-labels.web_authentication_link_create=Create New
-labels.web_authentication_link_update=Edit
-labels.web_authentication_link_delete=Delete
-labels.web_authentication_link_confirm=Details
-labels.web_authentication_link_details=Details
-labels.web_authentication_link_edit=Edit
-labels.web_authentication_link_delete=Delete
-labels.web_authentication_link_prev_page=Prev
-labels.web_authentication_link_next_page=Next
 labels.web_authentication_list_hostname=Hostname
 labels.web_authentication_list_hostname=Hostname
-labels.web_authentication_list_realm=Realm
 labels.web_authentication_list_web_crawling_config=Config Name
 labels.web_authentication_list_web_crawling_config=Config Name
 labels.web_authentication_any=Any
 labels.web_authentication_any=Any
 labels.web_authentication_create_web_config=Create New Web Config
 labels.web_authentication_create_web_config=Create New Web Config
 labels.web_authentication_title_details=Web Authentication
 labels.web_authentication_title_details=Web Authentication
-labels.web_authentication_button_create=Create
-labels.web_authentication_button_back=Back
-labels.web_authentication_button_confirm=Confirm
 labels.web_authentication_hostname=Hostname
 labels.web_authentication_hostname=Hostname
 labels.web_authentication_port=Port
 labels.web_authentication_port=Port
 labels.web_authentication_realm=Realm
 labels.web_authentication_realm=Realm
@@ -601,102 +394,28 @@ labels.web_authentication_web_crawling_config=Web Config
 labels.web_authentication_scheme_basic=Basic
 labels.web_authentication_scheme_basic=Basic
 labels.web_authentication_scheme_digest=Digest
 labels.web_authentication_scheme_digest=Digest
 labels.web_authentication_scheme_ntlm=NTLM
 labels.web_authentication_scheme_ntlm=NTLM
-labels.web_authentication_title_confirm=Web Authentication
-labels.web_authentication_button_update=Update
-labels.web_authentication_button_delete=Delete
-labels.web_authentication_button_edit=Edit
 labels.log_configuration=Log Files
 labels.log_configuration=Log Files
-labels.log_file_download_title=Log Files
 labels.log_file_name=File Name
 labels.log_file_name=File Name
 labels.log_file_date=Timestamp
 labels.log_file_date=Timestamp
 labels.labeltype_configuration=Label
 labels.labeltype_configuration=Label
 labels.labeltype_title_details=Label
 labels.labeltype_title_details=Label
-labels.labeltype_button_create=Create
-labels.labeltype_button_back=Back
-labels.labeltype_button_confirm=Confirm
 labels.labeltype_name=Name
 labels.labeltype_name=Name
 labels.labeltype_value=Value
 labels.labeltype_value=Value
-labels.labeltype_title_confirm=Confirm Label
-labels.labeltype_button_create=Create
-labels.labeltype_button_back=Back
-labels.labeltype_button_update=Update
-labels.labeltype_button_delete=Delete
-labels.labeltype_button_edit=Edit
 labels.labeltype_included_paths=Included Paths
 labels.labeltype_included_paths=Included Paths
 labels.labeltype_excluded_paths=Excluded Paths
 labels.labeltype_excluded_paths=Excluded Paths
-labels.labeltype_link_create_new=Create New
-labels.labeltype_link_list=List
-labels.labeltype_link_create=Create New
-labels.labeltype_link_update=Edit
-labels.labeltype_link_delete=Delete
-labels.labeltype_link_confirm=Details
-labels.labeltype_link_details=Details
-labels.labeltype_link_edit=Edit
-labels.labeltype_link_delete=Delete
-labels.labeltype_link_prev_page=Prev
-labels.labeltype_link_next_page=Next
 labels.roletype_configuration=Role
 labels.roletype_configuration=Role
 labels.roletype_title_details=Role
 labels.roletype_title_details=Role
-labels.roletype_button_create=Create
-labels.roletype_button_back=Back
-labels.roletype_button_confirm=Confirm
 labels.roletype_name=Name
 labels.roletype_name=Name
 labels.roletype_value=Value
 labels.roletype_value=Value
-labels.roletype_title_confirm=Confirm Role
-labels.roletype_button_create=Create
-labels.roletype_button_back=Back
-labels.roletype_button_update=Update
-labels.roletype_button_delete=Delete
-labels.roletype_button_edit=Edit
-labels.roletype_link_create_new=Create New
-labels.roletype_link_list=List
-labels.roletype_link_create=Create New
-labels.roletype_link_update=Edit
-labels.roletype_link_delete=Delete
-labels.roletype_link_confirm=Details
-labels.roletype_link_details=Details
-labels.roletype_link_edit=Edit
-labels.roletype_link_delete=Delete
-labels.roletype_link_prev_page=Prev
-labels.roletype_link_next_page=Next
 labels.request_header_configuration=Request Header
 labels.request_header_configuration=Request Header
-labels.request_header_link_create_new=Create New
-labels.request_header_link_list=List
-labels.request_header_link_create=Create New
-labels.request_header_link_update=Edit
-labels.request_header_link_delete=Delete
-labels.request_header_link_confirm=Details
-labels.request_header_link_details=Details
-labels.request_header_link_edit=Edit
-labels.request_header_link_delete=Delete
-labels.request_header_link_prev_page=Prev
-labels.request_header_link_next_page=Next
 labels.request_header_list_name=Name
 labels.request_header_list_name=Name
 labels.request_header_list_web_crawling_config=Config Name
 labels.request_header_list_web_crawling_config=Config Name
 labels.request_header_create_web_config=Create New Web Config
 labels.request_header_create_web_config=Create New Web Config
 labels.request_header_title_details=Request Header
 labels.request_header_title_details=Request Header
-labels.request_header_button_create=Create
-labels.request_header_button_back=Back
-labels.request_header_button_confirm=Confirm
 labels.request_header_name=Name
 labels.request_header_name=Name
 labels.request_header_value=Value
 labels.request_header_value=Value
 labels.request_header_web_crawling_config=Web Config
 labels.request_header_web_crawling_config=Web Config
-labels.request_header_title_confirm=Request Header
-labels.request_header_button_update=Update
-labels.request_header_button_delete=Delete
-labels.request_header_button_edit=Edit
 labels.key_match_configuration=Key Match
 labels.key_match_configuration=Key Match
-labels.key_match_link_create_new=Create New
-labels.key_match_link_list=List
-labels.key_match_link_create=Create New
-labels.key_match_link_update=Edit
-labels.key_match_link_delete=Delete
-labels.key_match_link_confirm=Details
-labels.key_match_link_details=Details
-labels.key_match_link_edit=Edit
-labels.key_match_link_delete=Delete
-labels.key_match_link_prev_page=Prev
-labels.key_match_link_next_page=Next
 labels.key_match_list_term=Term
 labels.key_match_list_term=Term
 labels.key_match_list_query=Query
 labels.key_match_list_query=Query
 labels.key_match_term=Term
 labels.key_match_term=Term
@@ -704,15 +423,6 @@ labels.key_match_query=Query
 labels.key_match_size=Size
 labels.key_match_size=Size
 labels.key_match_boost=Boost
 labels.key_match_boost=Boost
 labels.key_match_title_details=Key Match
 labels.key_match_title_details=Key Match
-labels.key_match_button_create=Create
-labels.key_match_button_back=Back
-labels.key_match_button_confirm=Confirm
-labels.key_match_name=Name
-labels.key_match_value=Value
-labels.key_match_title_confirm=Confirm Key Match
-labels.key_match_button_update=Update
-labels.key_match_button_delete=Delete
-labels.key_match_button_edit=Edit
 labels.design_configuration=Page Design
 labels.design_configuration=Page Design
 labels.design_title_file_upload=File Upload
 labels.design_title_file_upload=File Upload
 labels.design_title_file=File Manager
 labels.design_title_file=File Manager
@@ -751,108 +461,28 @@ labels.handler_script=Script
 labels.role_type=Role
 labels.role_type=Role
 labels.label_type=Label
 labels.label_type=Label
 labels.data_crawling_button_create=Create
 labels.data_crawling_button_create=Create
-labels.data_crawling_button_back=Back
-labels.data_crawling_button_confirm=Confirm
-labels.data_crawling_title_confirm=Confirm Data Crawling Configuration
-labels.data_crawling_button_update=Update
-labels.data_crawling_button_delete=Delete
-labels.data_crawling_button_edit=Edit
 labels.data_crawling_button_create_job=Create new job
 labels.data_crawling_button_create_job=Create new job
-labels.data_crawling_link_create_new=Create New
-labels.data_crawling_link_list=List
-labels.data_crawling_link_create=Create New
-labels.data_crawling_link_update=Edit
-labels.data_crawling_link_delete=Delete
-labels.data_crawling_link_confirm=Details
-labels.data_crawling_link_details=Details
-labels.data_crawling_link_edit=Edit
-labels.data_crawling_link_delete=Delete
-labels.data_crawling_link_prev_page=Prev
-labels.data_crawling_link_next_page=Next
 labels.data_crawling_job_title=Data Crawler - {0}
 labels.data_crawling_job_title=Data Crawler - {0}
 labels.wizard_title_configuration=Configuration Wizard
 labels.wizard_title_configuration=Configuration Wizard
 labels.wizard_start_title=Quick Setup
 labels.wizard_start_title=Quick Setup
 labels.wizard_start_desc=Using Configuration Wizard, you can create crawling settings easily.
 labels.wizard_start_desc=Using Configuration Wizard, you can create crawling settings easily.
 labels.wizard_start_button=Start Configuration
 labels.wizard_start_button=Start Configuration
-labels.wizard_schedule_title=Crawling Schedule
-labels.wizard_schedule_enabled=Use Schedule
-labels.wizard_schedule=Schedule
-labels.wizard_schedule_month_prefix=MM:
-labels.wizard_schedule_month_suffix=
-labels.wizard_schedule_date_prefix=DD:
-labels.wizard_schedule_date_suffix=
-labels.wizard_schedule_hour_prefix=hh:
-labels.wizard_schedule_hour_suffix=
-labels.wizard_schedule_min_prefix=mm:
-labels.wizard_schedule_min_suffix=
-labels.wizard_button_next=Next
-labels.wizard_button_skip=Skip
 labels.wizard_button_cancel=Cancel
 labels.wizard_button_cancel=Cancel
-labels.wizard_button_back=Back
 labels.wizard_crawling_config_title=Crawling Configuration
 labels.wizard_crawling_config_title=Crawling Configuration
 labels.wizard_crawling_setting_title=Crawling Settings
 labels.wizard_crawling_setting_title=Crawling Settings
 labels.wizard_crawling_config_name=Name
 labels.wizard_crawling_config_name=Name
 labels.wizard_crawling_config_path=Crawling Path
 labels.wizard_crawling_config_path=Crawling Path
 labels.wizard_button_register_again=Create again
 labels.wizard_button_register_again=Create again
 labels.wizard_button_register_next=Create and Next
 labels.wizard_button_register_next=Create and Next
-labels.wizard_schedule_day_sun=Sun
-labels.wizard_schedule_day_mon=Mon
-labels.wizard_schedule_day_tue=Tue
-labels.wizard_schedule_day_wed=Wed
-labels.wizard_schedule_day_thu=Thu
-labels.wizard_schedule_day_fri=Fri
-labels.wizard_schedule_day_sat=Sat
-labels.wizard_schedule_day_m_f=Mon-Fri
-labels.wizard_schedule_day_mwf=Mon,Wed,Fri
-labels.wizard_schedule_day_tt=Tue,Thu
 labels.wizard_start_crawling_title=Start Crawling
 labels.wizard_start_crawling_title=Start Crawling
 labels.wizard_start_crawler_title=Crawler
 labels.wizard_start_crawler_title=Crawler
 labels.wizard_start_crawling_desc=To click "Start Crawling" button, you can start a crawling now.
 labels.wizard_start_crawling_desc=To click "Start Crawling" button, you can start a crawling now.
 labels.wizard_button_start_crawling=Start Crawling
 labels.wizard_button_start_crawling=Start Crawling
 labels.wizard_button_finish=Skip
 labels.wizard_button_finish=Skip
 labels.search_list_configuration=Search
 labels.search_list_configuration=Search
-labels.search_list_index_page=Type a search query.
-labels.search_list_title_confirm_delete=Delete Confirmation
-labels.search_list_url=URL
 labels.search_list_delete_link=Delete
 labels.search_list_delete_link=Delete
 labels.search_list_delete_cancel=Cancel
 labels.search_list_delete_cancel=Cancel
 labels.search_list_delete_confirmation=Do you really want to delete? ({0})
 labels.search_list_delete_confirmation=Do you really want to delete? ({0})
-labels.search_log_configuration=Search Log
-labels.search_log_search_word_search=Search Word
-labels.search_log_user_code_search=User ID
-labels.search_log_button_search=Search
-labels.search_log_button_reset=Reset
-labels.search_log_requested_time=Requested Time
-labels.search_log_search_word=Search Word
-labels.search_log_search_query=Search Query
-labels.search_log_response_time=Response Time
-labels.search_log_hit_count=Hits
-labels.search_log_client_ip=IP
-labels.search_log_link_details=Details
-labels.search_log_link_delete=Delete
-labels.search_log_delete_all_link=Delete All
-labels.search_log_delete_all_confirmation=Do you really want to delete all?
-labels.search_log_sort_up=(Up)
-labels.search_log_sort_down=(Down)
-labels.search_log_download_csv=Download(CSV)
-labels.search_log_search_start_page=First Query Only
-labels.search_log_search_term=Term
-labels.search_log_search_term_from=From: 
-labels.search_log_search_term_to=To: 
-labels.search_log_title=Search Log
-labels.search_log_title_confirm=Details
-labels.search_log_id=ID
-labels.search_log_solr_query=Solr Query
-labels.search_log_query_offset=Offset
-labels.search_log_query_page_size=Size
-labels.search_log_user_agent=User Agent
-labels.search_log_referer=Referer
-labels.search_log_client_ip=IP
-labels.search_log_session_id=Session ID
-labels.search_log_click_log_title=Click Logs
-labels.search_log_click_log_url=URL
-labels.search_log_click_log_requestedTime=Requested Time
-labels.search_log_access_type=Access Type
 labels.failure_url_configuration=Failure URL
 labels.failure_url_configuration=Failure URL
 labels.failure_url_search_url=URL
 labels.failure_url_search_url=URL
 labels.failure_url_search_error_count=Error Count
 labels.failure_url_search_error_count=Error Count
@@ -874,22 +504,6 @@ labels.failure_url_error_log=Log
 labels.failure_url_url=URL
 labels.failure_url_url=URL
 labels.failure_url_web_config_name=Web Crawling Configuration
 labels.failure_url_web_config_name=Web Crawling Configuration
 labels.failure_url_file_config_name=File Crawling Configuration
 labels.failure_url_file_config_name=File Crawling Configuration
-labels.stats_configuration=Statistics
-labels.stats_search_report_type=Report Type
-labels.stats_search_term=Term
-labels.stats_search_term_from=From: 
-labels.stats_search_term_to=To: 
-labels.stats_button_search=Search
-labels.stats_button_reset=Reset
-labels.stats_search_word=Search Word
-labels.stats_search_query=Search Query
-labels.stats_solr_query=Solr Query
-labels.stats_user_agent=User Agent
-labels.stats_referer=Referer
-labels.stats_client_ip=Client IP
-labels.stats_count=Count
-labels.stats_click_url=Clicked URL
-labels.stats_favorite_url=Voted URL
 labels.system_info_configuration=System Info
 labels.system_info_configuration=System Info
 labels.system_info_env_title=Env Properties
 labels.system_info_env_title=Env Properties
 labels.system_info_prop_title=System Properties
 labels.system_info_prop_title=System Properties
@@ -897,25 +511,11 @@ labels.system_info_fess_prop_title=Fess Properties
 labels.system_info_bug_report_title=Properties for Bug Report
 labels.system_info_bug_report_title=Properties for Bug Report
 labels.system_info_crawler_properties_does_not_exist=crawler.properties does not exist. Default values are applied.
 labels.system_info_crawler_properties_does_not_exist=crawler.properties does not exist. Default values are applied.
 labels.file_authentication_configuration=File Authentication
 labels.file_authentication_configuration=File Authentication
-labels.file_authentication_link_create_new=Create New
-labels.file_authentication_link_list=List
-labels.file_authentication_link_create=Create New
-labels.file_authentication_link_update=Edit
-labels.file_authentication_link_delete=Delete
-labels.file_authentication_link_confirm=Details
-labels.file_authentication_link_details=Details
-labels.file_authentication_link_edit=Edit
-labels.file_authentication_link_delete=Delete
-labels.file_authentication_link_prev_page=Prev
-labels.file_authentication_link_next_page=Next
 labels.file_authentication_list_hostname=Hostname
 labels.file_authentication_list_hostname=Hostname
 labels.file_authentication_list_file_crawling_config=Config Name
 labels.file_authentication_list_file_crawling_config=Config Name
 labels.file_authentication_any=Any
 labels.file_authentication_any=Any
 labels.file_authentication_create_file_config=Create New File Config
 labels.file_authentication_create_file_config=Create New File Config
 labels.file_authentication_title_details=File Authentication
 labels.file_authentication_title_details=File Authentication
-labels.file_authentication_button_create=Create
-labels.file_authentication_button_back=Back
-labels.file_authentication_button_confirm=Confirm
 labels.file_authentication_hostname=Hostname
 labels.file_authentication_hostname=Hostname
 labels.file_authentication_port=Port
 labels.file_authentication_port=Port
 labels.file_authentication_scheme=Scheme
 labels.file_authentication_scheme=Scheme
@@ -924,46 +524,10 @@ labels.file_authentication_password=Password
 labels.file_authentication_parameters=Parameters
 labels.file_authentication_parameters=Parameters
 labels.file_authentication_file_crawling_config=FS Config
 labels.file_authentication_file_crawling_config=FS Config
 labels.file_authentication_scheme_samba=Samba
 labels.file_authentication_scheme_samba=Samba
-labels.file_authentication_scheme_ftp=FTP
-labels.file_authentication_title_confirm=File Authentication
-labels.file_authentication_button_update=Update
-labels.file_authentication_button_delete=Delete
-labels.file_authentication_button_edit=Edit
 labels.pagination_page_guide_msg={0}/{1} ({2} items)
 labels.pagination_page_guide_msg={0}/{1} ({2} items)
 labels.list_could_not_find_crud_table=No data.
 labels.list_could_not_find_crud_table=No data.
-labels.user_info_configuration=User Info
-labels.user_info_title=User Info
-labels.user_info_title_confirm=Details
-labels.user_info_search_log_link=Search Log
-labels.user_info_favorite_log_link=Favorite Log
-labels.user_info_search_code=User ID
-labels.user_info_list_code=User ID
-labels.user_info_list_lastupdated=Last Accessed
-labels.user_info_edit_code=User ID
-labels.user_info_edit_createddate=Created
-labels.user_info_edit_lastupdated=Last Accessed
-labels.user_info_delete_all_link=Delete All
-labels.user_info_delete_all_confirmation=Do you really want to delete all?
-labels.favorite_log_title=Popular URL
-labels.favorite_log_configuration=Popular URL
-labels.favorite_log_user_code_search=User ID
-labels.favorite_log_button_search=Search
-labels.favorite_log_button_reset=Reset
-labels.favorite_log_url=URL
-labels.favorite_log_created_time=Submitted
-labels.favorite_log_link_details=Details
-labels.favorite_log_link_delete=Delete
-labels.favorite_log_delete_all_link=Delete All
-labels.favorite_log_delete_all_confirmation=Do you really want to delete it?
-labels.favorite_log_download_csv=Download (CSV)
-labels.favorite_log_search_term=Term
-labels.favorite_log_title_confirm=Details
-labels.favorite_log_id=ID
 labels.scheduledjob_configuration=Job Scheduler
 labels.scheduledjob_configuration=Job Scheduler
 labels.scheduledjob_title_details=Jobs
 labels.scheduledjob_title_details=Jobs
-labels.scheduledjob_button_create=Create
-labels.scheduledjob_button_back=Back
-labels.scheduledjob_button_confirm=Confirm
 labels.scheduledjob_name=Name
 labels.scheduledjob_name=Name
 labels.scheduledjob_target=Target
 labels.scheduledjob_target=Target
 labels.scheduledjob_status=Status
 labels.scheduledjob_status=Status
@@ -975,66 +539,31 @@ labels.scheduledjob_crawler=Crawler Job
 labels.scheduledjob_running=Running
 labels.scheduledjob_running=Running
 labels.scheduledjob_active=Active
 labels.scheduledjob_active=Active
 labels.scheduledjob_nojob=-
 labels.scheduledjob_nojob=-
-labels.scheduledjob_title_confirm=Confirm Job
-labels.scheduledjob_button_create=Create
-labels.scheduledjob_button_back=Back
-labels.scheduledjob_button_update=Update
-labels.scheduledjob_button_delete=Delete
-labels.scheduledjob_button_edit=Edit
 labels.scheduledjob_button_start=Start
 labels.scheduledjob_button_start=Start
 labels.scheduledjob_button_stop=Stop
 labels.scheduledjob_button_stop=Stop
-labels.scheduledjob_link_create_new=Create New
-labels.scheduledjob_link_list=List
-labels.scheduledjob_link_create=Create New
-labels.scheduledjob_link_update=Edit
-labels.scheduledjob_link_delete=Delete
-labels.scheduledjob_link_confirm=Details
-labels.scheduledjob_link_details=Details
-labels.scheduledjob_link_edit=Edit
-labels.scheduledjob_link_delete=Delete
-labels.scheduledjob_link_prev_page=Prev
-labels.scheduledjob_link_next_page=Next
 labels.scheduledjob_script_template=return container.getComponent("crawlJob").execute(executor, [{0}] as String[],[{1}] as String[],[{2}] as String[], "");
 labels.scheduledjob_script_template=return container.getComponent("crawlJob").execute(executor, [{0}] as String[],[{1}] as String[],[{2}] as String[], "");
 labels.joblog_button_back=Back
 labels.joblog_button_back=Back
-labels.joblog_button_create=Create
 labels.joblog_button_delete=Delete
 labels.joblog_button_delete=Delete
-labels.joblog_button_edit=Edit
-labels.joblog_button_update=Update
 labels.joblog_configuration=Job Log
 labels.joblog_configuration=Job Log
 labels.joblog_endTime=End Time
 labels.joblog_endTime=End Time
-labels.joblog_jobLogging=Job Log
 labels.joblog_jobName=Name
 labels.joblog_jobName=Name
 labels.joblog_jobStatus=Status
 labels.joblog_jobStatus=Status
-labels.joblog_link_confirm=Confirm
 labels.joblog_link_create=Create New
 labels.joblog_link_create=Create New
-labels.joblog_link_create_new=Create New
 labels.joblog_link_delete=Delete
 labels.joblog_link_delete=Delete
 labels.joblog_link_details=Details
 labels.joblog_link_details=Details
 labels.joblog_link_list=List
 labels.joblog_link_list=List
-labels.joblog_link_next_page=Next
-labels.joblog_link_prev_page=Prev
 labels.joblog_link_update=Edit
 labels.joblog_link_update=Edit
 labels.joblog_scriptData=Script
 labels.joblog_scriptData=Script
 labels.joblog_scriptResult=Result
 labels.joblog_scriptResult=Result
 labels.joblog_scriptType=Executor
 labels.joblog_scriptType=Executor
 labels.joblog_startTime=Start Time
 labels.joblog_startTime=Start Time
 labels.joblog_target=Target
 labels.joblog_target=Target
-labels.joblog_title_confirm=Confirm Job Log
 labels.joblog_title_details=Job Log Details
 labels.joblog_title_details=Job Log Details
-labels.joblog_title_list=Job Log List
-labels.joblog_delete_link=Delete
-labels.joblog_delete_confirmation=Do you really want to delete?
 labels.dict_configuration=Dictionary List
 labels.dict_configuration=Dictionary List
 labels.dict_list_title=Dictionary List
 labels.dict_list_title=Dictionary List
 labels.dict_list_link=Dictionaries
 labels.dict_list_link=Dictionaries
 labels.dictionary_name=Name
 labels.dictionary_name=Name
 labels.dictionary_type=Type
 labels.dictionary_type=Type
-labels.dict_link_details=Details
-labels.dict_link_edit=Edit
-labels.dict_link_delete=Delete
-labels.dict_link_prev_page=Prev
-labels.dict_link_next_page=Next
-labels.dict_button_back=Back
 labels.dict_synonym_configuration=Synonym List
 labels.dict_synonym_configuration=Synonym List
 labels.dict_synonym_title=Synonym List
 labels.dict_synonym_title=Synonym List
 labels.dict_synonym_list_link=List
 labels.dict_synonym_list_link=List
@@ -1046,12 +575,6 @@ labels.dict_synonym_link_download=Download
 labels.dict_synonym_link_upload=Upload
 labels.dict_synonym_link_upload=Upload
 labels.dict_synonym_source=Source
 labels.dict_synonym_source=Source
 labels.dict_synonym_target=Target
 labels.dict_synonym_target=Target
-labels.dict_synonym_button_create=Create
-labels.dict_synonym_button_back=Back
-labels.dict_synonym_button_confirm=Confirm
-labels.dict_synonym_button_edit=Edit
-labels.dict_synonym_button_delete=Delete
-labels.dict_synonym_button_update=Update
 labels.dict_synonym_button_download=Download
 labels.dict_synonym_button_download=Download
 labels.dict_synonym_button_upload=Upload
 labels.dict_synonym_button_upload=Upload
 labels.dict_synonym_file=Synonym File
 labels.dict_synonym_file=Synonym File
@@ -1068,63 +591,22 @@ labels.dict_kuromoji_token=Token
 labels.dict_kuromoji_segmentation=Segmentation
 labels.dict_kuromoji_segmentation=Segmentation
 labels.dict_kuromoji_reading=Reading
 labels.dict_kuromoji_reading=Reading
 labels.dict_kuromoji_pos=POS
 labels.dict_kuromoji_pos=POS
-labels.dict_kuromoji_button_create=Create
-labels.dict_kuromoji_button_back=Back
-labels.dict_kuromoji_button_confirm=Confirm
-labels.dict_kuromoji_button_edit=Edit
-labels.dict_kuromoji_button_delete=Delete
-labels.dict_kuromoji_button_update=Update
 labels.dict_kuromoji_button_download=Download
 labels.dict_kuromoji_button_download=Download
 labels.dict_kuromoji_button_upload=Upload
 labels.dict_kuromoji_button_upload=Upload
 labels.dict_kuromoji_file=Kuromoji File
 labels.dict_kuromoji_file=Kuromoji File
 labels.boost_document_rule_configuration=Doc Boost
 labels.boost_document_rule_configuration=Doc Boost
-labels.boost_document_rule_title_list=Doc Boost
-labels.boost_document_rule_title_confirm=Confirm Doc Boost
 labels.boost_document_rule_title_details=Doc Boost
 labels.boost_document_rule_title_details=Doc Boost
-labels.boost_document_rule_link_list=List
-labels.boost_document_rule_link_create_new=Create New
-labels.boost_document_rule_link_details=Details
-labels.boost_document_rule_link_edit=Edit
-labels.boost_document_rule_link_delete=Delete
-labels.boost_document_rule_link_prev_page=Prev
-labels.boost_document_rule_link_next_page=Next
-labels.boost_document_rule_link_create=Create
-labels.boost_document_rule_link_update=Edit
-labels.boost_document_rule_link_delete=Delete
-labels.boost_document_rule_link_confirm=Details
-labels.boost_document_rule_button_create=Create
-labels.boost_document_rule_button_back=Back
-labels.boost_document_rule_button_confirm=Confirm
-labels.boost_document_rule_button_update=Update
-labels.boost_document_rule_button_delete=Delete
-labels.boost_document_rule_button_edit=Edit
 labels.boost_document_rule_list_url_expr=Condition
 labels.boost_document_rule_list_url_expr=Condition
 labels.boost_document_rule_url_expr=Condition
 labels.boost_document_rule_url_expr=Condition
 labels.boost_document_rule_boost_expr=Boost Expr
 labels.boost_document_rule_boost_expr=Boost Expr
 labels.boost_document_rule_sort_order=Sort Order
 labels.boost_document_rule_sort_order=Sort Order
 labels.suggest_elevate_word_configuration=Additional Word
 labels.suggest_elevate_word_configuration=Additional Word
-labels.suggest_elevate_word_title_list=Additional Word
-labels.suggest_elevate_word_title_confirm=Confirm Additional Word
 labels.suggest_elevate_word_title_details=Additional Word
 labels.suggest_elevate_word_title_details=Additional Word
 labels.suggest_elevate_word_link_list=List
 labels.suggest_elevate_word_link_list=List
 labels.suggest_elevate_word_link_create_new=Create New
 labels.suggest_elevate_word_link_create_new=Create New
-labels.suggest_elevate_word_link_details=Details
-labels.suggest_elevate_word_link_edit=Edit
-labels.suggest_elevate_word_link_delete=Delete
-labels.suggest_elevate_word_link_prev_page=Prev
-labels.suggest_elevate_word_link_next_page=Next
 labels.suggest_elevate_word_link_create=Create
 labels.suggest_elevate_word_link_create=Create
-labels.suggest_elevate_word_link_update=Edit
-labels.suggest_elevate_word_link_delete=Delete
-labels.suggest_elevate_word_link_confirm=Details
 labels.suggest_elevate_word_link_download=Download
 labels.suggest_elevate_word_link_download=Download
 labels.suggest_elevate_word_link_upload=Upload
 labels.suggest_elevate_word_link_upload=Upload
-labels.suggest_elevate_word_button_create=Create
-labels.suggest_elevate_word_button_back=Back
-labels.suggest_elevate_word_button_confirm=Confirm
-labels.suggest_elevate_word_button_update=Update
-labels.suggest_elevate_word_button_delete=Delete
-labels.suggest_elevate_word_button_edit=Edit
 labels.suggest_elevate_word_button_download=Download
 labels.suggest_elevate_word_button_download=Download
 labels.suggest_elevate_word_button_upload=Upload
 labels.suggest_elevate_word_button_upload=Upload
 labels.suggest_elevate_word_list_suggest_word=Word
 labels.suggest_elevate_word_list_suggest_word=Word
@@ -1135,105 +617,31 @@ labels.suggest_elevate_word_target_label=Label
 labels.suggest_elevate_word_boost=Boost
 labels.suggest_elevate_word_boost=Boost
 labels.suggest_elevate_word_file=Additional Word File
 labels.suggest_elevate_word_file=Additional Word File
 labels.suggest_bad_word_configuration=Bad Word
 labels.suggest_bad_word_configuration=Bad Word
-labels.suggest_bad_word_title_list=Bad Word
-labels.suggest_bad_word_title_confirm=Confirm Bad Word
 labels.suggest_bad_word_title_details=Bad Word
 labels.suggest_bad_word_title_details=Bad Word
 labels.suggest_bad_word_link_list=List
 labels.suggest_bad_word_link_list=List
 labels.suggest_bad_word_link_create_new=Create New
 labels.suggest_bad_word_link_create_new=Create New
-labels.suggest_bad_word_link_details=Details
-labels.suggest_bad_word_link_edit=Edit
-labels.suggest_bad_word_link_delete=Delete
-labels.suggest_bad_word_link_prev_page=Prev
-labels.suggest_bad_word_link_next_page=Next
 labels.suggest_bad_word_link_create=Create
 labels.suggest_bad_word_link_create=Create
-labels.suggest_bad_word_link_update=Edit
-labels.suggest_bad_word_link_delete=Delete
-labels.suggest_bad_word_link_confirm=Details
 labels.suggest_bad_word_link_download=Download
 labels.suggest_bad_word_link_download=Download
 labels.suggest_bad_word_link_upload=Upload
 labels.suggest_bad_word_link_upload=Upload
-labels.suggest_bad_word_button_create=Create
-labels.suggest_bad_word_button_back=Back
-labels.suggest_bad_word_button_confirm=Confirm
-labels.suggest_bad_word_button_update=Update
-labels.suggest_bad_word_button_delete=Delete
-labels.suggest_bad_word_button_edit=Edit
 labels.suggest_bad_word_button_download=Download
 labels.suggest_bad_word_button_download=Download
 labels.suggest_bad_word_button_upload=Upload
 labels.suggest_bad_word_button_upload=Upload
 labels.suggest_bad_word_list_suggest_word=Bad Word
 labels.suggest_bad_word_list_suggest_word=Bad Word
 labels.suggest_bad_word_suggest_word=Bad Word
 labels.suggest_bad_word_suggest_word=Bad Word
-labels.suggest_bad_word_target_role=Role
-labels.suggest_bad_word_target_label=Label
 labels.suggest_bad_word_file=Bad Word File
 labels.suggest_bad_word_file=Bad Word File
 labels.user_configuration=User
 labels.user_configuration=User
-labels.user_link_create_new=Create New
-labels.user_link_list=List
-labels.user_link_create=Create New
-labels.user_link_update=Edit
-labels.user_link_delete=Delete
-labels.user_link_confirm=Details
-labels.user_link_details=Details
-labels.user_link_edit=Edit
-labels.user_link_delete=Delete
-labels.user_link_prev_page=Prev
-labels.user_link_next_page=Next
 labels.user_list_name=Name
 labels.user_list_name=Name
 labels.user_name=Name
 labels.user_name=Name
 labels.user_password=Password
 labels.user_password=Password
 labels.user_confirm_password=Confirm
 labels.user_confirm_password=Confirm
-labels.user_role=Role
-labels.user_group=Group
 labels.user_title_details=User
 labels.user_title_details=User
-labels.user_button_create=Create
-labels.user_button_back=Back
-labels.user_button_confirm=Confirm
-labels.user_title_confirm=Confirm User
-labels.user_button_update=Update
-labels.user_button_delete=Delete
-labels.user_button_edit=Edit
 labels.role_configuration=Role
 labels.role_configuration=Role
-labels.role_link_create_new=Create New
-labels.role_link_list=List
-labels.role_link_create=Create New
-labels.role_link_update=Edit
-labels.role_link_delete=Delete
-labels.role_link_confirm=Details
-labels.role_link_details=Details
-labels.role_link_edit=Edit
-labels.role_link_delete=Delete
-labels.role_link_prev_page=Prev
-labels.role_link_next_page=Next
 labels.role_list_name=Name
 labels.role_list_name=Name
 labels.role_name=Name
 labels.role_name=Name
 labels.role_title_details=Role
 labels.role_title_details=Role
-labels.role_button_create=Create
-labels.role_button_back=Back
-labels.role_button_confirm=Confirm
-labels.role_title_confirm=Confirm Role
-labels.role_button_update=Update
-labels.role_button_delete=Delete
-labels.role_button_edit=Edit
 labels.group_configuration=group
 labels.group_configuration=group
-labels.group_link_create_new=Create New
-labels.group_link_list=List
-labels.group_link_create=Create New
-labels.group_link_update=Edit
-labels.group_link_delete=Delete
-labels.group_link_confirm=Details
-labels.group_link_details=Details
-labels.group_link_edit=Edit
-labels.group_link_delete=Delete
-labels.group_link_prev_page=Prev
-labels.group_link_next_page=Next
 labels.group_list_name=Name
 labels.group_list_name=Name
 labels.group_name=Name
 labels.group_name=Name
 labels.group_title_details=Group
 labels.group_title_details=Group
-labels.group_button_create=Create
-labels.group_button_back=Back
-labels.group_button_confirm=Confirm
-labels.group_title_confirm=Confirm Group
-labels.group_button_update=Update
-labels.group_button_delete=Delete
-labels.group_button_edit=Edit
 labels.roles=Roles
 labels.roles=Roles
 labels.groups=Groups
 labels.groups=Groups
 labels.crud_button_create=Create
 labels.crud_button_create=Create
@@ -1241,13 +649,11 @@ labels.crud_button_update=Update
 labels.crud_button_delete=Delete
 labels.crud_button_delete=Delete
 labels.crud_button_back=Back
 labels.crud_button_back=Back
 labels.crud_button_edit=Edit
 labels.crud_button_edit=Edit
-labels.crud_button_confirm=Confirm
 labels.crud_button_search=Search
 labels.crud_button_search=Search
 labels.crud_button_reset=Reset
 labels.crud_button_reset=Reset
 labels.crud_button_cancel=Cancel
 labels.crud_button_cancel=Cancel
 labels.crud_link_create=Create New
 labels.crud_link_create=Create New
 labels.crud_link_delete=Delete
 labels.crud_link_delete=Delete
-labels.crud_link_back=Back
 labels.crud_link_edit=Edit
 labels.crud_link_edit=Edit
 labels.crud_link_details=Details
 labels.crud_link_details=Details
 labels.crud_link_list=List
 labels.crud_link_list=List
@@ -1257,7 +663,6 @@ labels.crud_title_list=List
 labels.crud_title_create=Create
 labels.crud_title_create=Create
 labels.crud_title_edit=Edit
 labels.crud_title_edit=Edit
 labels.crud_title_delete=Confirm to delete
 labels.crud_title_delete=Confirm to delete
-labels.crud_title_confirm=Confirmation
 labels.crud_title_details=Details
 labels.crud_title_details=Details
 labels.crud_delete_confirmation=Do you really want to delete it?
 labels.crud_delete_confirmation=Do you really want to delete it?
 labels.admin_brand_title=Fess
 labels.admin_brand_title=Fess

+ 1 - 49
src/main/resources/fess_message.properties

@@ -74,19 +74,8 @@ errors.app.double.submit.request=double submit might be requested.
 # ========================================================================================
 # ========================================================================================
 #                                                                                    Fess
 #                                                                                    Fess
 #                                                                                   ======
 #                                                                                   ======
-errors.failed_to_update_crawler_params=Failed to update parameters. Please contact to a site administrator.
-errors.failed_to_update_web_crawler_params=Failed to update parameters. Please contact to a site administrator.
-errors.failed_to_update_solr_params=Failed to update parameters. Please contact to a site administrator.
 errors.login_error=Username or Password is not correct.
 errors.login_error=Username or Password is not correct.
-errors.failed_to_commit_solr_index=Failed to commit index.
-errors.failed_to_optimize_solr_index=Failed to optimize index.
-errors.failed_to_delete_solr_index=Failed to delete index.
-errors.failed_to_start_solr_process_because_of_running=Failed to start a process because of running solr process.
-errors.failed_to_import_data=Failed to restore data.
-errors.unknown_import_file=Unknown file type.
-errors.failed_to_export_data=Failed to backup data.
 errors.could_not_find_log_file=Could not find {0}.
 errors.could_not_find_log_file=Could not find {0}.
-errors.no_running_crawl_process=No running crawl process.
 errors.failed_to_start_crawl_process=Failed to start a crawl process.
 errors.failed_to_start_crawl_process=Failed to start a crawl process.
 errors.invalid_design_jsp_file_name=Invalid JSP file.
 errors.invalid_design_jsp_file_name=Invalid JSP file.
 errors.design_jsp_file_does_not_exist=JSP file does not exist.
 errors.design_jsp_file_does_not_exist=JSP file does not exist.
@@ -95,50 +84,29 @@ errors.failed_to_write_design_image_file=Failed to upload an image file.
 errors.failed_to_update_jsp_file=Failed to update a jsp file.
 errors.failed_to_update_jsp_file=Failed to update a jsp file.
 errors.design_file_name_is_invalid=The file name is invalid.
 errors.design_file_name_is_invalid=The file name is invalid.
 errors.design_file_is_unsupported_type=The kind of file is unsupported.
 errors.design_file_is_unsupported_type=The kind of file is unsupported.
-errors.failed_to_start_solr_instance=Failed to start a solr instance.
-errors.failed_to_stop_solr_instance=Failed to stop a solr instance.
-errors.failed_to_reload_solr_instance=Failed to reload a solr instance.
-errors.failed_to_update_crawler_schedule=Failed to update a crawling schedule.
 errors.failed_to_create_crawling_config_at_wizard=Failed to create a crawling config.
 errors.failed_to_create_crawling_config_at_wizard=Failed to create a crawling config.
 errors.design_editor_disabled=This feature is disabled.
 errors.design_editor_disabled=This feature is disabled.
-errors.could_not_create_search_log_csv=Could not create a search log csv file.
 errors.not_found_on_file_system=Not Found: {0}
 errors.not_found_on_file_system=Not Found: {0}
 errors.could_not_open_on_system=Could not open {0}. <br/>Please check if the file is associated with an application.
 errors.could_not_open_on_system=Could not open {0}. <br/>Please check if the file is associated with an application.
-errors.process_time_is_exceeded=The limit of a search time was exceeded. The partial result was displayed.
 errors.result_size_exceeded=No more results could be displayed.
 errors.result_size_exceeded=No more results could be displayed.
 errors.target_file_does_not_exist={0} file does not exist.
 errors.target_file_does_not_exist={0} file does not exist.
-errors.failed_to_download_file=Failed to download {0} file.
 errors.failed_to_delete_file=Failed to delete {0} file.
 errors.failed_to_delete_file=Failed to delete {0} file.
-errors.failed_to_redirect=Failed to redirect {0}.
-errors.unsupported_encoding={0} is not supported as encoding.
 errors.docid_not_found=Not found Doc ID:{0}
 errors.docid_not_found=Not found Doc ID:{0}
 errors.document_not_found=Not found URL of Doc ID:{0}
 errors.document_not_found=Not found URL of Doc ID:{0}
 errors.not_load_from_server=Could not load from this server: {0}
 errors.not_load_from_server=Could not load from this server: {0}
 errors.failed_to_start_job=Failed to start job {0}.
 errors.failed_to_start_job=Failed to start job {0}.
 errors.failed_to_stop_job=Failed to stop job {0}.
 errors.failed_to_stop_job=Failed to stop job {0}.
-errors.expired_dict_id=Expired dictionary information. Please reload it.
-errors.failed_to_create_cache=Failed to create a cache reponse for ID:{0}.
-errors.synonym_file_is_not_found=Synonym file is not found
 errors.failed_to_download_synonym_file=Failed to download the Synonym file.
 errors.failed_to_download_synonym_file=Failed to download the Synonym file.
 errors.failed_to_upload_synonym_file=Failed to upload the Synonym file.
 errors.failed_to_upload_synonym_file=Failed to upload the Synonym file.
-errors.kuromoji_file_is_not_found=Synonym file is not found
 errors.failed_to_download_kuromoji_file=Failed to download the Kuromoji file.
 errors.failed_to_download_kuromoji_file=Failed to download the Kuromoji file.
 errors.failed_to_upload_kuromoji_file=Failed to upload the Kuromoji file.
 errors.failed_to_upload_kuromoji_file=Failed to upload the Kuromoji file.
 errors.invalid_str_is_included="{1}" in "{0}" is invalid.
 errors.invalid_str_is_included="{1}" in "{0}" is invalid.
-errors.failed_to_reload_core=Failed to reload core. Check log files.
 errors.blank_password=Password is required.
 errors.blank_password=Password is required.
 errors.invalid_confirm_password=Confirm Password does not match.
 errors.invalid_confirm_password=Confirm Password does not match.
-errors.password_does_not_exist_in_session=Invalid password.
 errors.cannot_delete_doc_because_of_running=Crawler is running. The document cannot be deteled.
 errors.cannot_delete_doc_because_of_running=Crawler is running. The document cannot be deteled.
 errors.failed_to_delete_doc_in_admin=Failed to delete document.
 errors.failed_to_delete_doc_in_admin=Failed to delete document.
 
 
 errors.invalid_query_unknown=The given query has unknown condition.
 errors.invalid_query_unknown=The given query has unknown condition.
-errors.invalid_query_quoted=An invalid quote character is used.
-errors.invalid_query_curly_bracket=An invalid curly bracket character is used.
-errors.invalid_query_square_bracket=An invalid square bracket character is used.
-errors.invalid_query_parenthesis=An invalid parenthesis character is used.
-errors.invalid_query_num_range=An invalid range is used. The example of the range format is "field:[20020101 TO 20030101]".
-errors.invalid_query_str_range=An invalid range is used. The example of the range format is "field:'{'Aida TO Carmen'}'".
 errors.invalid_query_parse_error=The given query is invalid.
 errors.invalid_query_parse_error=The given query is invalid.
 errors.invalid_query_sort_value=The given sort ({0}) is invalid.
 errors.invalid_query_sort_value=The given sort ({0}) is invalid.
 errors.invalid_query_unsupported_sort_field=The given sort ({0}) is not supported.
 errors.invalid_query_unsupported_sort_field=The given sort ({0}) is not supported.
@@ -146,35 +114,19 @@ errors.invalid_query_unsupported_sort_order=The given sort order ({0}) is not su
 
 
 errors.crud_invalid_mode=Invalid mode(expected value is {0}, but it's {1}).
 errors.crud_invalid_mode=Invalid mode(expected value is {0}, but it's {1}).
 errors.crud_failed_to_create_crud_table=Failed to create a new data.
 errors.crud_failed_to_create_crud_table=Failed to create a new data.
-errors.crud_failed_to_update_crud_table=Failed to update the data.
-errors.crud_failed_to_delete_crud_table=Failed to delete the data.
 errors.crud_could_not_find_crud_table=Could not find the data({0}).
 errors.crud_could_not_find_crud_table=Could not find the data({0}).
 
 
 success.update_crawler_params=Updated parameters.
 success.update_crawler_params=Updated parameters.
-success.update_web_crawler_params=Updated parameters.
-success.update_solr_params=Updated parameters.
-success.commit_solr_index=Started a process to commit index.
-success.optimize_solr_index=Started a process to optimize index.
-success.delete_solr_index=Started a process to optimize index.
-success.importing_data=Started to restore data from the uploaded file.
+success.delete_doc_from_index=Started a process to delete the document from index.
 success.crawling_session_delete_all=Deleted session data.
 success.crawling_session_delete_all=Deleted session data.
 success.start_crawl_process=Started a crawl process.
 success.start_crawl_process=Started a crawl process.
-success.stopping_crawl_process=Stopping a crawl process.
 success.upload_design_file=Uploaded {0}.
 success.upload_design_file=Uploaded {0}.
 success.update_design_jsp_file=Updated {0}.
 success.update_design_jsp_file=Updated {0}.
-success.starting_solr_instance=Starting a solr instance.
-success.stopping_solr_instance=Stopping a solr instance.
-success.reloading_solr_instance=Reloading a solr instance.
-success.update_crawler_schedule=Updated a crawling schedule.
 success.create_crawling_config_at_wizard=Created a crawling config ({0}).
 success.create_crawling_config_at_wizard=Created a crawling config ({0}).
-success.search_log_delete_all=Deleted search logs.
 success.failure_url_delete_all=Deleted failure urls.
 success.failure_url_delete_all=Deleted failure urls.
 success.delete_file=Deleted {0} file.
 success.delete_file=Deleted {0} file.
-success.user_info_delete_all=Deleted user information.
-success.favorite_log_delete_all=Deleted popular urls
 success.job_started=Started job {0}.
 success.job_started=Started job {0}.
 success.job_stopped=Stopped job {0}.
 success.job_stopped=Stopped job {0}.
-success.joblog_delete_all=Deleted job logs.
 success.upload_synonym_file=Uploaded Synonym file.
 success.upload_synonym_file=Uploaded Synonym file.
 success.upload_kuromoji_file=Uploaded Kuromoji file.
 success.upload_kuromoji_file=Uploaded Kuromoji file.
 success.upload_suggest_elevate_word=Uploaded Additional Word file.
 success.upload_suggest_elevate_word=Uploaded Additional Word file.

Vissa filer visades inte eftersom för många filer har ändrats