Selaa lähdekoodia

update codes with freegen

Shinsuke Sugaya 9 vuotta sitten
vanhempi
commit
c3315978ba

+ 1 - 1
pom.xml

@@ -39,7 +39,7 @@
 
 		<!-- Main Framework -->
 		<dbflute.version>1.1.0-sp8</dbflute.version>
-		<lastaflute.version>0.6.4-RC3</lastaflute.version>
+		<lastaflute.version>0.6.4</lastaflute.version>
 		<lasta.taglib.version>0.6.0</lasta.taglib.version>
 		<servlet.version>3.1.0</servlet.version>
 		<jsp.version>2.3.1</jsp.version>

+ 18 - 18
src/main/java/org/codelibs/fess/app/web/admin/dict/userdict/AdminDictUserdictAction.java

@@ -64,7 +64,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
     //                                                                      ==============
     @Execute
     public HtmlResponse index(final UserDictSearchForm form) {
-        return asHtml(path_AdminDictUserDict_IndexJsp).renderWith(data -> {
+        return asHtml(path_AdminDictUserdict_IndexJsp).renderWith(data -> {
             searchPaging(data, form);
         });
     }
@@ -72,7 +72,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
     @Execute
     public HtmlResponse list(final Integer pageNumber, final UserDictSearchForm form) {
         userDictPager.setCurrentPageNumber(pageNumber);
-        return asHtml(path_AdminDictUserDict_IndexJsp).renderWith(data -> {
+        return asHtml(path_AdminDictUserdict_IndexJsp).renderWith(data -> {
             searchPaging(data, form);
         });
     }
@@ -80,7 +80,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
     @Execute
     public HtmlResponse search(final UserDictSearchForm form) {
         copyBeanToBean(form.searchParams, userDictPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE));
-        return asHtml(path_AdminDictUserDict_IndexJsp).renderWith(data -> {
+        return asHtml(path_AdminDictUserdict_IndexJsp).renderWith(data -> {
             searchPaging(data, form);
         });
     }
@@ -88,14 +88,14 @@ public class AdminDictUserdictAction extends FessAdminAction {
     @Execute
     public HtmlResponse reset(final UserDictSearchForm form) {
         userDictPager.clear();
-        return asHtml(path_AdminDictUserDict_IndexJsp).renderWith(data -> {
+        return asHtml(path_AdminDictUserdict_IndexJsp).renderWith(data -> {
             searchPaging(data, form);
         });
     }
 
     @Execute
     public HtmlResponse back(final UserDictSearchForm form) {
-        return asHtml(path_AdminDictUserDict_IndexJsp).renderWith(data -> {
+        return asHtml(path_AdminDictUserdict_IndexJsp).renderWith(data -> {
             searchPaging(data, form);
         });
     }
@@ -115,7 +115,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
     public HtmlResponse createpage(final UserDictEditForm form) {
         form.initialize();
         form.crudMode = CrudMode.CREATE;
-        return asHtml(path_AdminDictUserDict_EditJsp);
+        return asHtml(path_AdminDictUserdict_EditJsp);
     }
 
     @Token(save = true, validate = false)
@@ -125,13 +125,13 @@ public class AdminDictUserdictAction extends FessAdminAction {
         form.id = id;
         verifyCrudMode(form, CrudMode.EDIT);
         // TODO loadUserDict(form);
-        return asHtml(path_AdminDictUserDict_EditJsp);
+        return asHtml(path_AdminDictUserdict_EditJsp);
     }
 
     @Token(save = true, validate = false)
     @Execute
     public HtmlResponse editagain(final UserDictEditForm form) {
-        return asHtml(path_AdminDictUserDict_EditJsp);
+        return asHtml(path_AdminDictUserdict_EditJsp);
     }
 
     @Token(save = true, validate = false)
@@ -139,7 +139,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
     public HtmlResponse editfromconfirm(final UserDictEditForm form) {
         form.crudMode = CrudMode.EDIT;
         // TODO loadUserDict(form);
-        return asHtml(path_AdminDictUserDict_EditJsp);
+        return asHtml(path_AdminDictUserdict_EditJsp);
     }
 
     @Token(save = true, validate = false)
@@ -149,7 +149,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
         form.id = id;
         verifyCrudMode(form, CrudMode.DELETE);
         // TODO loadUserDict(form);
-        return asHtml(path_AdminDictUserDict_ConfirmJsp);
+        return asHtml(path_AdminDictUserdict_ConfirmJsp);
     }
 
     @Token(save = true, validate = false)
@@ -157,7 +157,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
     public HtmlResponse deletefromconfirm(final UserDictEditForm form) {
         form.crudMode = CrudMode.DELETE;
         // TODO loadUserDict(form);
-        return asHtml(path_AdminDictUserDict_ConfirmJsp);
+        return asHtml(path_AdminDictUserdict_ConfirmJsp);
     }
 
     // -----------------------------------------------------
@@ -169,21 +169,21 @@ public class AdminDictUserdictAction extends FessAdminAction {
         form.id = id;
         verifyCrudMode(form, CrudMode.CONFIRM);
         // TODO loadUserDict(form);
-        return asHtml(path_AdminDictUserDict_ConfirmJsp);
+        return asHtml(path_AdminDictUserdict_ConfirmJsp);
     }
 
     @Token(save = false, validate = true, keep = true)
     @Execute
     public HtmlResponse confirmfromcreate(final UserDictEditForm form) {
         validate(form, messages -> {}, toEditHtml());
-        return asHtml(path_AdminDictUserDict_ConfirmJsp);
+        return asHtml(path_AdminDictUserdict_ConfirmJsp);
     }
 
     @Token(save = false, validate = true, keep = true)
     @Execute
     public HtmlResponse confirmfromupdate(final UserDictEditForm form) {
         validate(form, messages -> {}, toEditHtml());
-        return asHtml(path_AdminDictUserDict_ConfirmJsp);
+        return asHtml(path_AdminDictUserdict_ConfirmJsp);
     }
 
     // -----------------------------------------------------
@@ -192,7 +192,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
     @Token(save = false, validate = true)
     @Execute
     public HtmlResponse downloadpage(final UserDictSearchForm form) {
-        return asHtml(path_AdminDictUserDict_DownloadJsp);
+        return asHtml(path_AdminDictUserdict_DownloadJsp);
     }
 
     @Token(save = false, validate = true)
@@ -200,7 +200,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
     public HtmlResponse download(final UserDictSearchForm form) {
         // TODO Download
 
-        return asHtml(path_AdminDictUserDict_DownloadJsp);
+        return asHtml(path_AdminDictUserdict_DownloadJsp);
     }
 
     // -----------------------------------------------------
@@ -211,7 +211,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
     public HtmlResponse uploadpage(final UserDictUploadForm form) {
         // TODO Upload
 
-        return asHtml(path_AdminDictUserDict_UploadJsp);
+        return asHtml(path_AdminDictUserdict_UploadJsp);
     }
 
     // -----------------------------------------------------
@@ -264,7 +264,7 @@ public class AdminDictUserdictAction extends FessAdminAction {
 
     protected VaErrorHook toEditHtml() {
         return () -> {
-            return asHtml(path_AdminDictUserDict_EditJsp);
+            return asHtml(path_AdminDictUserdict_EditJsp);
         };
     }
 }

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

@@ -37,7 +37,6 @@ import org.codelibs.fess.helper.SystemHelper;
 import org.codelibs.fess.util.QueryResponseList;
 import org.elasticsearch.index.query.QueryBuilder;
 import org.elasticsearch.index.query.QueryBuilders;
-import org.lastaflute.taglib.function.LaFunctions;
 import org.lastaflute.web.Execute;
 import org.lastaflute.web.callback.ActionRuntime;
 import org.lastaflute.web.response.HtmlResponse;

+ 2 - 2
src/main/java/org/codelibs/fess/es/bsbhv/BsUserBhv.java

@@ -55,11 +55,11 @@ public abstract class BsUserBhv extends AbstractBehavior<User, UserCB> {
     protected <RESULT extends User> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) {
         try {
             final RESULT result = entityType.newInstance();
-            result.setGroups(DfTypeUtil.toString(source.get("groups")));
+            result.setGroups(toStringArray(source.get("groups")));
             result.setId(DfTypeUtil.toString(source.get("id")));
             result.setName(DfTypeUtil.toString(source.get("name")));
             result.setPassword(DfTypeUtil.toString(source.get("password")));
-            result.setRoles(DfTypeUtil.toString(source.get("roles")));
+            result.setRoles(toStringArray(source.get("roles")));
             return result;
         } catch (InstantiationException | IllegalAccessException e) {
             final String msg = "Cannot create a new instance: " + entityType.getName();

+ 6 - 6
src/main/java/org/codelibs/fess/es/bsentity/BsUser.java

@@ -27,7 +27,7 @@ public class BsUser extends AbstractEntity {
     //                                                                           Attribute
     //                                                                           =========
     /** groups */
-    protected String groups;
+    protected String[] groups;
 
     /** name */
     protected String name;
@@ -36,19 +36,19 @@ public class BsUser extends AbstractEntity {
     protected String password;
 
     /** roles */
-    protected String roles;
+    protected String[] roles;
 
     // [Referrers] *comment only
 
     // ===================================================================================
     //                                                                            Accessor
     //                                                                            ========
-    public String getGroups() {
+    public String[] getGroups() {
         checkSpecifiedProperty("groups");
         return groups;
     }
 
-    public void setGroups(String value) {
+    public void setGroups(String[] value) {
         registerModifiedProperty("groups");
         this.groups = value;
     }
@@ -83,12 +83,12 @@ public class BsUser extends AbstractEntity {
         this.password = value;
     }
 
-    public String getRoles() {
+    public String[] getRoles() {
         checkSpecifiedProperty("roles");
         return roles;
     }
 
-    public void setRoles(String value) {
+    public void setRoles(String[] value) {
         registerModifiedProperty("roles");
         this.roles = value;
     }

+ 5 - 5
src/main/java/org/codelibs/fess/es/bsentity/dbmeta/UserDbm.java

@@ -35,11 +35,11 @@ public class UserDbm extends AbstractDBMeta {
     //                                       ---------------
     protected final Map<String, PropertyGateway> _epgMap = newHashMap();
     {
-        setupEpg(_epgMap, et -> ((User) et).getGroups(), (et, vl) -> ((User) et).setGroups(DfTypeUtil.toString(vl)), "groups");
+        setupEpg(_epgMap, et -> ((User) et).getGroups(), (et, vl) -> ((User) et).setGroups((String[]) vl), "groups");
         setupEpg(_epgMap, et -> ((User) et).getId(), (et, vl) -> ((User) et).setId(DfTypeUtil.toString(vl)), "id");
         setupEpg(_epgMap, et -> ((User) et).getName(), (et, vl) -> ((User) et).setName(DfTypeUtil.toString(vl)), "name");
         setupEpg(_epgMap, et -> ((User) et).getPassword(), (et, vl) -> ((User) et).setPassword(DfTypeUtil.toString(vl)), "password");
-        setupEpg(_epgMap, et -> ((User) et).getRoles(), (et, vl) -> ((User) et).setRoles(DfTypeUtil.toString(vl)), "roles");
+        setupEpg(_epgMap, et -> ((User) et).getRoles(), (et, vl) -> ((User) et).setRoles((String[]) vl), "roles");
     }
 
     @Override
@@ -50,7 +50,7 @@ public class UserDbm extends AbstractDBMeta {
     // ===================================================================================
     //                                                                         Column Info
     //                                                                         ===========
-    protected final ColumnInfo _columnGroups = cci("groups", "groups", null, null, String.class, "groups", null, false, false, false,
+    protected final ColumnInfo _columnGroups = cci("groups", "groups", null, null, String[].class, "groups", null, false, false, false,
             "String", 0, 0, null, false, null, null, null, null, null, false);
     protected final ColumnInfo _columnId = cci("id", "id", null, null, String.class, "id", null, false, false, false, "String", 0, 0, null,
             false, null, null, null, null, null, false);
@@ -58,8 +58,8 @@ public class UserDbm extends AbstractDBMeta {
             0, null, false, null, null, null, null, null, false);
     protected final ColumnInfo _columnPassword = cci("password", "password", null, null, String.class, "password", null, false, false,
             false, "String", 0, 0, null, false, null, null, null, null, null, false);
-    protected final ColumnInfo _columnRoles = cci("roles", "roles", null, null, String.class, "roles", null, false, false, false, "String",
-            0, 0, null, false, null, null, null, null, null, false);
+    protected final ColumnInfo _columnRoles = cci("roles", "roles", null, null, String[].class, "roles", null, false, false, false,
+            "String", 0, 0, null, false, null, null, null, null, null, false);
 
     public ColumnInfo columnGroups() {
         return _columnGroups;

+ 6 - 6
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

@@ -78,22 +78,22 @@ public interface FessHtmlPath {
     HtmlNext path_AdminDictSynonym_UploadJsp = new HtmlNext("/admin/dict/synonym/upload.jsp");
 
     /** The path of the HTML: /admin/dict/userdict/confirm.jsp */
-    HtmlNext path_AdminDictUserDict_ConfirmJsp = new HtmlNext("/admin/dict/userdict/confirm.jsp");
+    HtmlNext path_AdminDictUserdict_ConfirmJsp = new HtmlNext("/admin/dict/userdict/confirm.jsp");
 
     /** The path of the HTML: /admin/dict/userdict/download.jsp */
-    HtmlNext path_AdminDictUserDict_DownloadJsp = new HtmlNext("/admin/dict/userdict/download.jsp");
+    HtmlNext path_AdminDictUserdict_DownloadJsp = new HtmlNext("/admin/dict/userdict/download.jsp");
 
     /** The path of the HTML: /admin/dict/userdict/edit.jsp */
-    HtmlNext path_AdminDictUserDict_EditJsp = new HtmlNext("/admin/dict/userdict/edit.jsp");
+    HtmlNext path_AdminDictUserdict_EditJsp = new HtmlNext("/admin/dict/userdict/edit.jsp");
 
     /** The path of the HTML: /admin/dict/userdict/error.jsp */
-    HtmlNext path_AdminDictUserDict_ErrorJsp = new HtmlNext("/admin/dict/userdict/error.jsp");
+    HtmlNext path_AdminDictUserdict_ErrorJsp = new HtmlNext("/admin/dict/userdict/error.jsp");
 
     /** The path of the HTML: /admin/dict/userdict/index.jsp */
-    HtmlNext path_AdminDictUserDict_IndexJsp = new HtmlNext("/admin/dict/userdict/index.jsp");
+    HtmlNext path_AdminDictUserdict_IndexJsp = new HtmlNext("/admin/dict/userdict/index.jsp");
 
     /** The path of the HTML: /admin/dict/userdict/upload.jsp */
-    HtmlNext path_AdminDictUserDict_UploadJsp = new HtmlNext("/admin/dict/userdict/upload.jsp");
+    HtmlNext path_AdminDictUserdict_UploadJsp = new HtmlNext("/admin/dict/userdict/upload.jsp");
 
     /** The path of the HTML: /admin/failureurl/confirm.jsp */
     HtmlNext path_AdminFailureurl_ConfirmJsp = new HtmlNext("/admin/failureurl/confirm.jsp");

+ 1 - 3533
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

@@ -711,7 +711,7 @@ public class FessLabels extends ActionMessages {
     public static final String LABELS_search_result_created = "{labels.search_result_created}";
 
     /** The key of the message: Last Modified:  */
-    public static final String LABELS_search_result_lastModified = "{labels.search_result_lastModified}";
+    public static final String LABELS_search_result_last_modified = "{labels.search_result_last_modified}";
 
     /** The key of the message: Vote it */
     public static final String LABELS_search_result_favorite = "{labels.search_result_favorite}";
@@ -3548,3536 +3548,4 @@ public class FessLabels extends ActionMessages {
             throw new IllegalArgumentException(msg);
         }
     }
-
-    /**
-     * The definition of keys for labels.
-     * @author FreeGen
-     */
-    public static interface LabelKey {
-
-        /** The key of the label: Realm */
-        String LABELS_AUTH_REALM = "{labels.authRealm}";
-
-        /** The key of the label: Status */
-        String LABELS_AVAILABLE = "{labels.available}";
-
-        /** The key of the label: Created by */
-        String LABELS_CREATED_BY = "{labels.createdBy}";
-
-        /** The key of the label: Created Time */
-        String LABELS_CREATED_TIME = "{labels.createdTime}";
-
-        /** The key of the label: Deleted by */
-        String LABELS_DELETED_BY = "{labels.deletedBy}";
-
-        /** The key of the label: Deleted Time */
-        String LABELS_DELETED_TIME = "{labels.deletedTime}";
-
-        /** The key of the label: Depth */
-        String LABELS_DEPTH = "{labels.depth}";
-
-        /** The key of the label: Excluded Paths For Crawling */
-        String LABELS_EXCLUDED_PATHS = "{labels.excludedPaths}";
-
-        /** The key of the label: Excluded URLs For Crawling */
-        String LABELS_EXCLUDED_URLS = "{labels.excludedUrls}";
-
-        /** The key of the label: Excluded Paths For Indexing */
-        String LABELS_EXCLUDED_DOC_PATHS = "{labels.excludedDocPaths}";
-
-        /** The key of the label: Excluded URLs For Indexing */
-        String LABELS_EXCLUDED_DOC_URLS = "{labels.excludedDocUrls}";
-
-        /** The key of the label: Hostname */
-        String LABELS_HOSTNAME = "{labels.hostname}";
-
-        /** The key of the label: ID */
-        String LABELS_ID = "{labels.id}";
-
-        /** The key of the label: Included Paths For Crawling */
-        String LABELS_INCLUDED_PATHS = "{labels.includedPaths}";
-
-        /** The key of the label: Included URLs For Crawling */
-        String LABELS_INCLUDED_URLS = "{labels.includedUrls}";
-
-        /** The key of the label: Included Paths For Indexing */
-        String LABELS_INCLUDED_DOC_PATHS = "{labels.includedDocPaths}";
-
-        /** The key of the label: Included URLs For Indexing */
-        String LABELS_INCLUDED_DOC_URLS = "{labels.includedDocUrls}";
-
-        /** The key of the label: Max Access Count */
-        String LABELS_MAX_ACCESS_COUNT = "{labels.maxAccessCount}";
-
-        /** The key of the label: Name */
-        String LABELS_NAME = "{labels.name}";
-
-        /** The key of the label: Num of Thread */
-        String LABELS_NUM_OF_THREAD = "{labels.numOfThread}";
-
-        /** The key of the label: Overlapping Name */
-        String LABELS_OVERLAPPING_NAME = "{labels.overlappingName}";
-
-        /** The key of the label: Page Number */
-        String LABELS_PAGE_NUMBER = "{labels.pageNumber}";
-
-        /** The key of the label: Password */
-        String LABELS_PASSWORD = "{labels.password}";
-
-        /** The key of the label: Paths */
-        String LABELS_PATHS = "{labels.paths}";
-
-        /** The key of the label: Port */
-        String LABELS_PORT = "{labels.port}";
-
-        /** The key of the label: Regexp. */
-        String LABELS_REGEX = "{labels.regex}";
-
-        /** The key of the label: Regular Name */
-        String LABELS_REGULAR_NAME = "{labels.regularName}";
-
-        /** The key of the label: Replacement */
-        String LABELS_REPLACEMENT = "{labels.replacement}";
-
-        /** The key of the label: Session ID */
-        String LABELS_SESSION_ID = "{labels.sessionId}";
-
-        /** The key of the label: Display Order */
-        String LABELS_SORT_ORDER = "{labels.sortOrder}";
-
-        /** The key of the label: Updated by */
-        String LABELS_UPDATED_BY = "{labels.updatedBy}";
-
-        /** The key of the label: Updated Time */
-        String LABELS_UPDATED_TIME = "{labels.updatedTime}";
-
-        /** The key of the label: URLs */
-        String LABELS_URLS = "{labels.urls}";
-
-        /** The key of the label: User Agent */
-        String LABELS_USER_AGENT = "{labels.userAgent}";
-
-        /** The key of the label: Username */
-        String LABELS_USERNAME = "{labels.username}";
-
-        /** The key of the label: Value */
-        String LABELS_VALUE = "{labels.value}";
-
-        /** The key of the label: Version No. */
-        String LABELS_VERSION_NO = "{labels.versionNo}";
-
-        /** The key of the label: Log File Name */
-        String LABELS_LOG_FILE_NAME = "{labels.logFileName}";
-
-        /** The key of the label: Schedule */
-        String LABELS_CRON_EXPRESSION = "{labels.cronExpression}";
-
-        /** The key of the label: Remove Index Before Days */
-        String LABELS_DAY_FOR_CLEANUP = "{labels.dayForCleanup}";
-
-        /** The key of the label: Commit per Document Size */
-        String LABELS_COMMIT_PER_COUNT = "{labels.commitPerCount}";
-
-        /** The key of the label: Num of Simultaneous Crawler Config */
-        String LABELS_CRAWLING_THREAD_COUNT = "{labels.crawlingThreadCount}";
-
-        /** The key of the label: Snapshot Path */
-        String LABELS_SNAPSHOT_PATH = "{labels.snapshotPath}";
-
-        /** The key of the label: Boost */
-        String LABELS_BOOST = "{labels.boost}";
-
-        /** The key of the label: File */
-        String LABELS_UPLOADED_FILE = "{labels.uploadedFile}";
-
-        /** The key of the label: Use Schedule */
-        String LABELS_SCHEDULE_ENABLED = "{labels.scheduleEnabled}";
-
-        /** The key of the label: Month */
-        String LABELS_SCHEDULE_MONTH = "{labels.scheduleMonth}";
-
-        /** The key of the label: Date */
-        String LABELS_SCHEDULE_DATE = "{labels.scheduleDate}";
-
-        /** The key of the label: Hours */
-        String LABELS_SCHEDULE_HOUR = "{labels.scheduleHour}";
-
-        /** The key of the label: Minutes */
-        String LABELS_SCHEDULE_MIN = "{labels.scheduleMin}";
-
-        /** The key of the label: Name */
-        String LABELS_CRAWLING_CONFIG_NAME = "{labels.crawlingConfigName}";
-
-        /** The key of the label: Crawling Path */
-        String LABELS_CRAWLING_CONFIG_PATH = "{labels.crawlingConfigPath}";
-
-        /** The key of the label: URL */
-        String LABELS_DELETE_URL = "{labels.deleteUrl}";
-
-        /** The key of the label: Process Type */
-        String LABELS_PROCESS_TYPE = "{labels.processType}";
-
-        /** The key of the label: Parameters */
-        String LABELS_PARAMETERS = "{labels.parameters}";
-
-        /** The key of the label: Upaload File */
-        String LABELS_DESIGN_FILE = "{labels.designFile}";
-
-        /** The key of the label: Access Type */
-        String LABELS_ACCESS_TYPE = "{labels.accessType}";
-
-        /** The key of the label: Additional Parameters */
-        String LABELS_ADDITIONAL = "{labels.additional}";
-
-        /** The key of the label: Additional Query Parameters */
-        String LABELS_APPEND_QUERY_PARAMETER = "{labels.appendQueryParameter}";
-
-        /** The key of the label: callback */
-        String LABELS_CALLBACK = "{labels.callback}";
-
-        /** The key of the label: Client IP */
-        String LABELS_CLIENT_IP = "{labels.clientIp}";
-
-        /** The key of the label: User ID */
-        String LABELS_CODE = "{labels.code}";
-
-        /** The key of the label: Config ID */
-        String LABELS_CONFIG_ID = "{labels.configId}";
-
-        /** The key of the label: Config Parameters */
-        String LABELS_CONFIG_PARAMETER = "{labels.configParameter}";
-
-        /** The key of the label: Content */
-        String LABELS_CONTENT = "{labels.content}";
-
-        /** The key of the label: CSV Encoding */
-        String LABELS_CSV_ENCODING = "{labels.csvEncoding}";
-
-        /** The key of the label: CSV Encoding */
-        String LABELS_CSV_FILE_ENCODING = "{labels.csvFileEncoding}";
-
-        /** The key of the label: Current Server (Select) */
-        String LABELS_CURRENT_SERVER_FOR_SELECT = "{labels.currentServerForSelect}";
-
-        /** The key of the label: Current Server (Update) */
-        String LABELS_CURRENT_SERVER_FOR_UPDATE = "{labels.currentServerForUpdate}";
-
-        /** The key of the label: Current Server Status (Select) */
-        String LABELS_CURRENT_SERVER_STATUS_FOR_SELECT = "{labels.currentServerStatusForSelect}";
-
-        /** The key of the label: Current Server Status (Update) */
-        String LABELS_CURRENT_SERVER_STATUS_FOR_UPDATE = "{labels.currentServerStatusForUpdate}";
-
-        /** The key of the label: Default Label */
-        String LABELS_DEFAULT_LABEL_VALUE = "{labels.defaultLabelValue}";
-
-        /** The key of the label: File Name */
-        String LABELS_DESIGN_FILE_NAME = "{labels.designFileName}";
-
-        /** The key of the label: Check Last Modified */
-        String LABELS_DIFF_CRAWLING = "{labels.diffCrawling}";
-
-        /** The key of the label: Distance */
-        String LABELS_DISTANCE = "{labels.distance}";
-
-        /** The key of the label: Encoding */
-        String LABELS_ENCODING = "{labels.encoding}";
-
-        /** The key of the label: Error Count */
-        String LABELS_ERROR_COUNT = "{labels.errorCount}";
-
-        /** The key of the label: Error Log */
-        String LABELS_ERROR_LOG = "{labels.errorLog}";
-
-        /** The key of the label: Error Name */
-        String LABELS_ERROR_NAME = "{labels.errorName}";
-
-        /** The key of the label: Expired */
-        String LABELS_EXPIRED_TIME = "{labels.expiredTime}";
-
-        /** The key of the label: Failure Count */
-        String LABELS_FAILURE_COUNT_THRESHOLD = "{labels.failureCountThreshold}";
-
-        /** The key of the label: Config Name */
-        String LABELS_FILE_CONFIG_NAME = "{labels.fileConfigName}";
-
-        /** The key of the label: FS Config Name */
-        String LABELS_FILE_CONFIG_ID = "{labels.fileConfigId}";
-
-        /** The key of the label: File name */
-        String LABELS_FILE_NAME = "{labels.fileName}";
-
-        /** The key of the label: Solr Group */
-        String LABELS_GROUP_NAME = "{labels.groupName}";
-
-        /** The key of the label: Handler Name */
-        String LABELS_HANDLER_NAME = "{labels.handlerName}";
-
-        /** The key of the label: Parameters */
-        String LABELS_HANDLER_PARAMETER = "{labels.handlerParameter}";
-
-        /** The key of the label: Scripts */
-        String LABELS_HANDLER_SCRIPT = "{labels.handlerScript}";
-
-        /** The key of the label: Hit Count */
-        String LABELS_HIT_COUNT = "{labels.hitCount}";
-
-        /** The key of the label: Popular words */
-        String LABELS_HOT_SEARCH_WORD = "{labels.hotSearchWord}";
-
-        /** The key of the label: Ignored Failure Type */
-        String LABELS_IGNORE_FAILURE_TYPE = "{labels.ignoreFailureType}";
-
-        /** The key of the label: Interval */
-        String LABELS_INTERVAL_TIME = "{labels.intervalTime}";
-
-        /** The key of the label: Last Accessed */
-        String LABELS_LAST_ACCESS_TIME = "{labels.lastAccessTime}";
-
-        /** The key of the label: Latitude */
-        String LABELS_LATITUDE = "{labels.latitude}";
-
-        /** The key of the label: Longitude */
-        String LABELS_LONGITUDE = "{labels.longitude}";
-
-        /** The key of the label: Notification To */
-        String LABELS_NOTIFICATION_TO = "{labels.notificationTo}";
-
-        /** The key of the label: Num */
-        String LABELS_NUM = "{labels.num}";
-
-        /** The key of the label: Overwrite */
-        String LABELS_OVERWRITE = "{labels.overwrite}";
-
-        /** The key of the label: Page Numger */
-        String LABELS_PN = "{labels.pn}";
-
-        /** The key of the label: Scheme */
-        String LABELS_PROTOCOL_SCHEME = "{labels.protocolScheme}";
-
-        /** The key of the label: Purge By Bots */
-        String LABELS_PURGE_BY_BOTS = "{labels.purgeByBots}";
-
-        /** The key of the label: Purge Search Log */
-        String LABELS_PURGE_SEARCH_LOG_DAY = "{labels.purgeSearchLogDay}";
-
-        /** The key of the label: Query */
-        String LABELS_QUERY = "{labels.query}";
-
-        /** The key of the label: Query ID */
-        String LABELS_QUERY_ID = "{labels.queryId}";
-
-        /** The key of the label: Offset */
-        String LABELS_QUERY_OFFSET = "{labels.queryOffset}";
-
-        /** The key of the label: Page Size */
-        String LABELS_QUERY_PAGE_SIZE = "{labels.queryPageSize}";
-
-        /** The key of the label: Range */
-        String LABELS_RANGE = "{labels.range}";
-
-        /** The key of the label: Referrer */
-        String LABELS_REFERER = "{labels.referer}";
-
-        /** The key of the label: Requested Time */
-        String LABELS_REQUESTED_TIME = "{labels.requestedTime}";
-
-        /** The key of the label: Response Time */
-        String LABELS_RESPONSE_TIME = "{labels.responseTime}";
-
-        /** The key of the label: Return Path */
-        String LABELS_RETURN_PATH = "{labels.returnPath}";
-
-        /** The key of the label: rt */
-        String LABELS_RT = "{labels.rt}";
-
-        /** The key of the label: Schedule */
-        String LABELS_SCHEDULE_DAY = "{labels.scheduleDay}";
-
-        /** The key of the label: Search Log */
-        String LABELS_SEARCH_LOG = "{labels.searchLog}";
-
-        /** The key of the label: Search Word */
-        String LABELS_SEARCH_WORD = "{labels.searchWord}";
-
-        /** The key of the label: Server Rotation */
-        String LABELS_SERVER_ROTATION = "{labels.serverRotation}";
-
-        /** The key of the label: Index Replication */
-        String LABELS_SNAPSHOT_REPLICATION = "{labels.snapshotReplication}";
-
-        /** The key of the label: Solr Instance Name */
-        String LABELS_SOLR_INSTANCE_NAME = "{labels.solrInstanceName}";
-
-        /** The key of the label: Sort */
-        String LABELS_SORT = "{labels.sort}";
-
-        /** The key of the label: Start Pos */
-        String LABELS_START = "{labels.start}";
-
-        /** The key of the label: Supported Search */
-        String LABELS_SUPPORTED_SEARCH = "{labels.supportedSearch}";
-
-        /** The key of the label: Thread Name */
-        String LABELS_THREAD_NAME = "{labels.threadName}";
-
-        /** The key of the label: Type */
-        String LABELS_TYPE = "{labels.type}";
-
-        /** The key of the label: URL */
-        String LABELS_U = "{labels.u}";
-
-        /** The key of the label: URI */
-        String LABELS_URI = "{labels.uri}";
-
-        /** The key of the label: URL */
-        String LABELS_URL = "{labels.url}";
-
-        /** The key of the label: Favorite Log */
-        String LABELS_USER_FAVORITE = "{labels.userFavorite}";
-
-        /** The key of the label: User ID */
-        String LABELS_USER_ID = "{labels.userId}";
-
-        /** The key of the label: User Info */
-        String LABELS_USER_INFO = "{labels.userInfo}";
-
-        /** The key of the label: User ID */
-        String LABELS_USER_SESSION_ID = "{labels.userSessionId}";
-
-        /** The key of the label: JSON Response */
-        String LABELS_WEB_API_JSON = "{labels.webApiJson}";
-
-        /** The key of the label: XML Response */
-        String LABELS_WEB_API_XML = "{labels.webApiXml}";
-
-        /** The key of the label: ID */
-        String LABELS_WEB_CONFIG_ID = "{labels.webConfigId}";
-
-        /** The key of the label: Config Name */
-        String LABELS_WEB_CONFIG_NAME = "{labels.webConfigName}";
-
-        /** The key of the label: All Languages */
-        String LABELS_ALL_LANGUAGES = "{labels.allLanguages}";
-
-        /** The key of the label: Dictionary ID */
-        String LABELS_DICT_ID = "{labels.dictId}";
-
-        /** The key of the label: Document ID */
-        String LABELS_DOC_ID = "{labels.docId}";
-
-        /** The key of the label: End Time */
-        String LABELS_END_TIME = "{labels.endTime}";
-
-        /** The key of the label: fn */
-        String LABELS_FN = "{labels.fn}";
-
-        /** The key of the label: hq */
-        String LABELS_HQ = "{labels.hq}";
-
-        /** The key of the label: Source */
-        String LABELS_INPUTS = "{labels.inputs}";
-
-        /** The key of the label: Logging */
-        String LABELS_JOB_LOGGING = "{labels.jobLogging}";
-
-        /** The key of the label: Name */
-        String LABELS_JOB_NAME = "{labels.jobName}";
-
-        /** The key of the label: Status */
-        String LABELS_JOB_STATUS = "{labels.jobStatus}";
-
-        /** The key of the label: lang */
-        String LABELS_LANG = "{labels.lang}";
-
-        /** The key of the label: Target	 */
-        String LABELS_OUTPUTS = "{labels.outputs}";
-
-        /** The key of the label: POS */
-        String LABELS_POS = "{labels.pos}";
-
-        /** The key of the label: Purge Job Log Before */
-        String LABELS_PURGE_JOB_LOG_DAY = "{labels.purgeJobLogDay}";
-
-        /** The key of the label: Purge User Before */
-        String LABELS_PURGE_USER_INFO_DAY = "{labels.purgeUserInfoDay}";
-
-        /** The key of the label: Reading */
-        String LABELS_READING = "{labels.reading}";
-
-        /** The key of the label: Role ID */
-        String LABELS_ROLE_TYPE_IDS = "{labels.roleTypeIds}";
-
-        /** The key of the label: Script */
-        String LABELS_SCRIPT_DATA = "{labels.scriptData}";
-
-        /** The key of the label: Result */
-        String LABELS_SCRIPT_RESULT = "{labels.scriptResult}";
-
-        /** The key of the label: Executor */
-        String LABELS_SCRIPT_TYPE = "{labels.scriptType}";
-
-        /** The key of the label: Segmentation */
-        String LABELS_SEGMENTATION = "{labels.segmentation}";
-
-        /** The key of the label: Start Time */
-        String LABELS_START_TIME = "{labels.startTime}";
-
-        /** The key of the label: Target */
-        String LABELS_TARGET = "{labels.target}";
-
-        /** The key of the label: Token */
-        String LABELS_TOKEN = "{labels.token}";
-
-        /** The key of the label: Use ACL as Role */
-        String LABELS_USE_ACL_AS_ROLE = "{labels.useAclAsRole}";
-
-        /** The key of the label: Synonym File */
-        String LABELS_SYNONYM_FILE = "{labels.synonymFile}";
-
-        /** The key of the label: UserDict File */
-        String LABELS_USER_DICT_FILE = "{labels.userDictFile}";
-
-        /** The key of the label: Additional Word File */
-        String LABELS_SUGGEST_ELEVATE_WORD_FILE = "{labels.suggestElevateWordFile}";
-
-        /** The key of the label: Bad Word File */
-        String LABELS_SUGGEST_BAD_WORD_FILE = "{labels.suggestBadWordFile}";
-
-        /** The key of the label: System */
-        String LABELS_menu_system = "{labels.menu_system}";
-
-        /** The key of the label: &#x00bb; Wizard */
-        String LABELS_MENU_WIZARD = "{labels.menu.wizard}";
-
-        /** The key of the label: &#x00bb; General */
-        String LABELS_MENU_crawl_config = "{labels.menu.crawl_config}";
-
-        /** The key of the label: &#x00bb; Scheduled Jobs */
-        String LABELS_MENU_scheduled_job_config = "{labels.menu.scheduled_job_config}";
-
-        /** The key of the label: &#x00bb; System */
-        String LABELS_MENU_system_config = "{labels.menu.system_config}";
-
-        /** The key of the label: &#x00bb; Index */
-        String LABELS_MENU_document_config = "{labels.menu.document_config}";
-
-        /** The key of the label: &#x00bb; Design */
-        String LABELS_MENU_DESIGN = "{labels.menu.design}";
-
-        /** The key of the label: &#x00bb; Dictionary */
-        String LABELS_MENU_DICT = "{labels.menu.dict}";
-
-        /** The key of the label: &#x00bb; Backup/Restore */
-        String LABELS_MENU_DATA = "{labels.menu.data}";
-
-        /** The key of the label: Crawler */
-        String LABELS_menu_crawl = "{labels.menu_crawl}";
-
-        /** The key of the label: &#x00bb; Web */
-        String LABELS_MENU_WEB = "{labels.menu.web}";
-
-        /** The key of the label: &#x00bb; File System */
-        String LABELS_MENU_file_system = "{labels.menu.file_system}";
-
-        /** The key of the label: &#x00bb; Data Store */
-        String LABELS_MENU_data_store = "{labels.menu.data_store}";
-
-        /** The key of the label: &#x00bb; Label */
-        String LABELS_MENU_label_type = "{labels.menu.label_type}";
-
-        /** The key of the label: &#x00bb; Key Match */
-        String LABELS_MENU_key_match = "{labels.menu.key_match}";
-
-        /** The key of the label: &#x00bb; Doc Boost */
-        String LABELS_MENU_boost_document_rule = "{labels.menu.boost_document_rule}";
-
-        /** The key of the label: &#x00bb; Path Mapping */
-        String LABELS_MENU_path_mapping = "{labels.menu.path_mapping}";
-
-        /** The key of the label: &#x00bb; Web Authentication */
-        String LABELS_MENU_web_authentication = "{labels.menu.web_authentication}";
-
-        /** The key of the label: &#x00bb; File Authentication */
-        String LABELS_MENU_file_authentication = "{labels.menu.file_authentication}";
-
-        /** The key of the label: &#x00bb; Request Header */
-        String LABELS_MENU_request_header = "{labels.menu.request_header}";
-
-        /** The key of the label: &#x00bb; Overlapping Host */
-        String LABELS_MENU_overlapping_host = "{labels.menu.overlapping_host}";
-
-        /** The key of the label: &#x00bb; Role */
-        String LABELS_MENU_role_type = "{labels.menu.role_type}";
-
-        /** The key of the label: User */
-        String LABELS_menu_user = "{labels.menu_user}";
-
-        /** The key of the label: User */
-        String LABELS_MENU_USER = "{labels.menu.user}";
-
-        /** The key of the label: Role */
-        String LABELS_MENU_ROLE = "{labels.menu.role}";
-
-        /** The key of the label: Group */
-        String LABELS_MENU_GROUP = "{labels.menu.group}";
-
-        /** The key of the label: Suggest */
-        String LABELS_menu_suggest = "{labels.menu_suggest}";
-
-        /** The key of the label: &#x00bb; Additional Word */
-        String LABELS_MENU_suggest_elevate_word = "{labels.menu.suggest_elevate_word}";
-
-        /** The key of the label: &#x00bb; Bad Word */
-        String LABELS_MENU_suggest_bad_word = "{labels.menu.suggest_bad_word}";
-
-        /** The key of the label: System Info */
-        String LABELS_menu_system_log = "{labels.menu_system_log}";
-
-        /** The key of the label: &#x00bb; Config Info */
-        String LABELS_MENU_system_info = "{labels.menu.system_info}";
-
-        /** The key of the label: &#x00bb; Session Info */
-        String LABELS_MENU_session_info = "{labels.menu.session_info}";
-
-        /** The key of the label: &#x00bb; Log Files */
-        String LABELS_MENU_LOG = "{labels.menu.log}";
-
-        /** The key of the label: &#x00bb; Job Log */
-        String LABELS_MENU_JOB_LOG = "{labels.menu.jobLog}";
-
-        /** The key of the label: &#x00bb; Failure URL */
-        String LABELS_MENU_failure_url = "{labels.menu.failure_url}";
-
-        /** The key of the label: &#x00bb; Search */
-        String LABELS_MENU_search_list = "{labels.menu.search_list}";
-
-        /** The key of the label: User Info */
-        String LABELS_menu_user_log = "{labels.menu_user_log}";
-
-        /** The key of the label: &#x00bb; Search Log */
-        String LABELS_MENU_search_log = "{labels.menu.search_log}";
-
-        /** The key of the label: &#x00bb; Statistics */
-        String LABELS_MENU_STATS = "{labels.menu.stats}";
-
-        /** The key of the label: &#x00bb; Popular URL */
-        String LABELS_MENU_FAVORITE_LOG = "{labels.menu.favoriteLog}";
-
-        /** The key of the label: Logout */
-        String LABELS_MENU_LOGOUT = "{labels.menu.logout}";
-
-        /** The key of the label: Fess */
-        String LABELS_HEADER_logo_alt = "{labels.header.logo_alt}";
-
-        /** The key of the label: Home */
-        String LABELS_HEADER_HOME = "{labels.header.home}";
-
-        /** The key of the label: Help */
-        String LABELS_HEADER_HELP = "{labels.header.help}";
-
-        /** The key of the label: Copyright(C) 2009-2015 CodeLibs Project. <span class="br-phone"></span>All Rights Reserved. */
-        String LABELS_FOOTER_COPYRIGHT = "{labels.footer.copyright}";
-
-        /** The key of the label: Search */
-        String LABELS_SEARCH = "{labels.search}";
-
-        /** The key of the label: Results <b>{2}</b><span class="br-phone"></span><span class="hidden-phone"> -</span> <b>{3}</b> of <b>{1}</b> pages for <b>{0}</b> */
-        String LABELS_search_result_status = "{labels.search_result_status}";
-
-        /** The key of the label: ({0} sec) */
-        String LABELS_search_result_time = "{labels.search_result_time}";
-
-        /** The key of the label: Prev */
-        String LABELS_prev_page = "{labels.prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_next_page = "{labels.next_page}";
-
-        /** The key of the label: Your search - <b>{0}</b> - did not match any documents. */
-        String LABELS_did_not_match = "{labels.did_not_match}";
-
-        /** The key of the label: Fess */
-        String LABELS_search_header_logo_alt = "{labels.search_header_logo_alt}";
-
-        /** The key of the label: -- Label -- */
-        String LABELS_search_result_noneselect_label = "{labels.search_result_noneselect_label}";
-
-        /** The key of the label: # selected */
-        String LABELS_search_result_select_label = "{labels.search_result_select_label}";
-
-        /** The key of the label: Fess */
-        String LABELS_search_title = "{labels.search_title}";
-
-        /** The key of the label: Popular Words:  */
-        String LABELS_search_hot_search_word = "{labels.search_hot_search_word}";
-
-        /** The key of the label: -- Sort -- */
-        String LABELS_search_result_select_sort = "{labels.search_result_select_sort}";
-
-        /** The key of the label: -- Results per page -- */
-        String LABELS_search_result_select_num = "{labels.search_result_select_num}";
-
-        /** The key of the label: Date (ascending) */
-        String LABELS_search_result_sort_created_asc = "{labels.search_result_sort_created_asc}";
-
-        /** The key of the label: Date (descending) */
-        String LABELS_search_result_sort_created_desc = "{labels.search_result_sort_created_desc}";
-
-        /** The key of the label: Size (ascending) */
-        String LABELS_search_result_sort_contentLength_asc = "{labels.search_result_sort_contentLength_asc}";
-
-        /** The key of the label: Size (descending) */
-        String LABELS_search_result_sort_contentLength_desc = "{labels.search_result_sort_contentLength_desc}";
-
-        /** The key of the label: Last Modified (ascending) */
-        String LABELS_search_result_sort_lastModified_asc = "{labels.search_result_sort_lastModified_asc}";
-
-        /** The key of the label: Last Modified (descending) */
-        String LABELS_search_result_sort_lastModified_desc = "{labels.search_result_sort_lastModified_desc}";
-
-        /** The key of the label: Click (ascending) */
-        String LABELS_search_result_sort_clickCount_asc = "{labels.search_result_sort_clickCount_asc}";
-
-        /** The key of the label: Click (descending) */
-        String LABELS_search_result_sort_clickCount_desc = "{labels.search_result_sort_clickCount_desc}";
-
-        /** The key of the label: Favorite (ascending) */
-        String LABELS_search_result_sort_favoriteCount_asc = "{labels.search_result_sort_favoriteCount_asc}";
-
-        /** The key of the label: Favorite (descending) */
-        String LABELS_search_result_sort_favoriteCount_desc = "{labels.search_result_sort_favoriteCount_desc}";
-
-        /** The key of the label: {0} bytes */
-        String LABELS_search_result_size = "{labels.search_result_size}";
-
-        /** The key of the label: Registered:  */
-        String LABELS_search_result_created = "{labels.search_result_created}";
-
-        /** The key of the label: Last Modified:  */
-        String LABELS_search_result_lastModified = "{labels.search_result_lastModified}";
-
-        /** The key of the label: Vote it */
-        String LABELS_search_result_favorite = "{labels.search_result_favorite}";
-
-        /** The key of the label: Voted */
-        String LABELS_search_result_favorited = "{labels.search_result_favorited}";
-
-        /** The key of the label: Click: {0} */
-        String LABELS_search_click_count = "{labels.search_click_count}";
-
-        /** The key of the label: more.. */
-        String LABELS_search_result_more = "{labels.search_result_more}";
-
-        /** The key of the label: Cache */
-        String LABELS_search_result_cache = "{labels.search_result_cache}";
-
-        /** The key of the label: All */
-        String LABELS_searchoptions_all = "{labels.searchoptions_all}";
-
-        /** The key of the label: Score */
-        String LABELS_searchoptions_score = "{labels.searchoptions_score}";
-
-        /** The key of the label: Sort:  */
-        String LABELS_searchoptions_menu_sort = "{labels.searchoptions_menu_sort}";
-
-        /** The key of the label: Result Per Page:  */
-        String LABELS_searchoptions_menu_num = "{labels.searchoptions_menu_num}";
-
-        /** The key of the label: {0} results */
-        String LABELS_searchoptions_num = "{labels.searchoptions_num}";
-
-        /** The key of the label: Language:  */
-        String LABELS_searchoptions_menu_lang = "{labels.searchoptions_menu_lang}";
-
-        /** The key of the label: Labels:  */
-        String LABELS_searchoptions_menu_labels = "{labels.searchoptions_menu_labels}";
-
-        /** The key of the label: Username: {0} */
-        String LABELS_searchheader_username = "{labels.searchheader_username}";
-
-        /** The key of the label: Error */
-        String LABELS_error_title = "{labels.error_title}";
-
-        /** The key of the label: System Error */
-        String LABELS_system_error_title = "{labels.system_error_title}";
-
-        /** The key of the label: Contact the Site Administrator. */
-        String LABELS_contact_site_admin = "{labels.contact_site_admin}";
-
-        /** The key of the label: Bad Request */
-        String LABELS_request_error_title = "{labels.request_error_title}";
-
-        /** The key of the label: Invalid request for the url. */
-        String LABELS_bad_request = "{labels.bad_request}";
-
-        /** The key of the label: Page Not Found */
-        String LABELS_page_not_found_title = "{labels.page_not_found_title}";
-
-        /** The key of the label: Check the url. */
-        String LABELS_check_url = "{labels.check_url}";
-
-        /** The key of the label: Home */
-        String LABELS_HOME = "{labels.home}";
-
-        /** The key of the label: Login */
-        String LABELS_LOGIN = "{labels.login}";
-
-        /** The key of the label: Copyright(C) 2009-2014 CodeLibs Project. All Rights Reserved. */
-        String LABELS_LOGIN_footer_copyright = "{labels.login.footer_copyright}";
-
-        /** The key of the label: Login */
-        String LABELS_login_title = "{labels.login_title}";
-
-        /** The key of the label: Labels */
-        String LABELS_index_label = "{labels.index_label}";
-
-        /** The key of the label: Languages */
-        String LABELS_index_lang = "{labels.index_lang}";
-
-        /** The key of the label: Sort */
-        String LABELS_index_sort = "{labels.index_sort}";
-
-        /** The key of the label: Results per page */
-        String LABELS_index_num = "{labels.index_num}";
-
-        /** The key of the label: Logout */
-        String LABELS_logout_title = "{labels.logout_title}";
-
-        /** The key of the label: Logout */
-        String LABELS_LOGOUT = "{labels.logout}";
-
-        /** The key of the label: Do you want to logout? */
-        String LABELS_do_you_want_to_logout = "{labels.do_you_want_to_logout}";
-
-        /** The key of the label: Logout */
-        String LABELS_logout_button = "{labels.logout_button}";
-
-        /** The key of the label: Search */
-        String LABELS_TOP_SEARCH = "{labels.top.search}";
-
-        /** The key of the label: Fess */
-        String LABELS_search_top_logo_alt = "{labels.search_top_logo_alt}";
-
-        /** The key of the label: Fess */
-        String LABELS_index_title = "{labels.index_title}";
-
-        /** The key of the label: Full tExt Search Server */
-        String LABELS_index_subtitle = "{labels.index_subtitle}";
-
-        /** The key of the label: Search */
-        String LABELS_index_search_title = "{labels.index_search_title}";
-
-        /** The key of the label: Search the Web/Document */
-        String LABELS_index_form_query_label = "{labels.index_form_query_label}";
-
-        /** The key of the label: Select a label */
-        String LABELS_index_form_label_label = "{labels.index_form_label_label}";
-
-        /** The key of the label: Search */
-        String LABELS_index_form_search_btn = "{labels.index_form_search_btn}";
-
-        /** The key of the label: Reset */
-        String LABELS_index_form_reset_btn = "{labels.index_form_reset_btn}";
-
-        /** The key of the label: Popular Words */
-        String LABELS_index_hotkeywords_title = "{labels.index_hotkeywords_title}";
-
-        /** The key of the label: Fess Search */
-        String LABELS_index_osdd_title = "{labels.index_osdd_title}";
-
-        /** The key of the label: Options */
-        String LABELS_index_form_option_btn = "{labels.index_form_option_btn}";
-
-        /** The key of the label: Help */
-        String LABELS_index_help = "{labels.index_help}";
-
-        /** The key of the label: Search Options */
-        String LABELS_search_options = "{labels.search_options}";
-
-        /** The key of the label: Close */
-        String LABELS_search_options_close = "{labels.search_options_close}";
-
-        /** The key of the label: Clear */
-        String LABELS_search_options_clear = "{labels.search_options_clear}";
-
-        /** The key of the label: This is a cache of {0}. It is a snapshot of the page at {1}. */
-        String LABELS_search_cache_msg = "{labels.search_cache_msg}";
-
-        /** The key of the label: Unknown */
-        String LABELS_search_unknown = "{labels.search_unknown}";
-
-        /** The key of the label: Back to top */
-        String LABELS_footer_back_to_top = "{labels.footer_back_to_top}";
-
-        /** The key of the label: Fess */
-        String LABELS_header_brand_name = "{labels.header_brand_name}";
-
-        /** The key of the label: Options */
-        String LABELS_header_form_option_btn = "{labels.header_form_option_btn}";
-
-        /** The key of the label: File Crawling Configuration */
-        String LABELS_file_crawling_configuration = "{labels.file_crawling_configuration}";
-
-        /** The key of the label: File Crawling Configuration */
-        String LABELS_file_crawling_title_details = "{labels.file_crawling_title_details}";
-
-        /** The key of the label: Included Paths For Crawling */
-        String LABELS_included_paths = "{labels.included_paths}";
-
-        /** The key of the label: Excluded Paths For Crawling */
-        String LABELS_excluded_paths = "{labels.excluded_paths}";
-
-        /** The key of the label: Included Paths For Indexing */
-        String LABELS_included_doc_paths = "{labels.included_doc_paths}";
-
-        /** The key of the label: Excluded Paths For Indexing */
-        String LABELS_excluded_doc_paths = "{labels.excluded_doc_paths}";
-
-        /** The key of the label: Config Parameters */
-        String LABELS_config_parameter = "{labels.config_parameter}";
-
-        /** The key of the label: Max Access Count */
-        String LABELS_max_access_count = "{labels.max_access_count}";
-
-        /** The key of the label: The number of Tread */
-        String LABELS_number_of_thread = "{labels.number_of_thread}";
-
-        /** The key of the label: Interval time */
-        String LABELS_interval_time = "{labels.interval_time}";
-
-        /** The key of the label: ms */
-        String LABELS_MILLISEC = "{labels.millisec}";
-
-        /** The key of the label: Create */
-        String LABELS_file_crawling_button_create = "{labels.file_crawling_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_file_crawling_button_back = "{labels.file_crawling_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_file_crawling_button_confirm = "{labels.file_crawling_button_confirm}";
-
-        /** The key of the label: Confirm File Crawling Configuration */
-        String LABELS_file_crawling_title_confirm = "{labels.file_crawling_title_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_file_crawling_button_update = "{labels.file_crawling_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_file_crawling_button_delete = "{labels.file_crawling_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_file_crawling_button_edit = "{labels.file_crawling_button_edit}";
-
-        /** The key of the label: Create New */
-        String LABELS_file_crawling_link_create_new = "{labels.file_crawling_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_file_crawling_link_list = "{labels.file_crawling_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_file_crawling_link_create = "{labels.file_crawling_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_file_crawling_link_update = "{labels.file_crawling_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_file_crawling_link_confirm = "{labels.file_crawling_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_file_crawling_link_details = "{labels.file_crawling_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_file_crawling_link_edit = "{labels.file_crawling_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_file_crawling_link_delete = "{labels.file_crawling_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_file_crawling_link_prev_page = "{labels.file_crawling_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_file_crawling_link_next_page = "{labels.file_crawling_link_next_page}";
-
-        /** The key of the label: Web Crawling Configuration */
-        String LABELS_web_crawling_configuration = "{labels.web_crawling_configuration}";
-
-        /** The key of the label: Web Crawling Configuration */
-        String LABELS_web_crawling_title_details = "{labels.web_crawling_title_details}";
-
-        /** The key of the label: Included URLs For Crawling */
-        String LABELS_included_urls = "{labels.included_urls}";
-
-        /** The key of the label: Excluded URLs For Crawling */
-        String LABELS_excluded_urls = "{labels.excluded_urls}";
-
-        /** The key of the label: Included URLs For Indexing */
-        String LABELS_included_doc_urls = "{labels.included_doc_urls}";
-
-        /** The key of the label: Excluded URLs For Indexing */
-        String LABELS_excluded_doc_urls = "{labels.excluded_doc_urls}";
-
-        /** The key of the label: User Agent */
-        String LABELS_user_agent = "{labels.user_agent}";
-
-        /** The key of the label: Create */
-        String LABELS_web_crawling_button_create = "{labels.web_crawling_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_web_crawling_button_back = "{labels.web_crawling_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_web_crawling_button_confirm = "{labels.web_crawling_button_confirm}";
-
-        /** The key of the label: Confirm Web Crawling Configuration */
-        String LABELS_web_crawling_title_confirm = "{labels.web_crawling_title_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_web_crawling_button_update = "{labels.web_crawling_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_web_crawling_button_delete = "{labels.web_crawling_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_web_crawling_button_edit = "{labels.web_crawling_button_edit}";
-
-        /** The key of the label: Create New */
-        String LABELS_web_crawling_link_create_new = "{labels.web_crawling_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_web_crawling_link_list = "{labels.web_crawling_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_web_crawling_link_create = "{labels.web_crawling_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_web_crawling_link_update = "{labels.web_crawling_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_web_crawling_link_confirm = "{labels.web_crawling_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_web_crawling_link_details = "{labels.web_crawling_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_web_crawling_link_edit = "{labels.web_crawling_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_web_crawling_link_delete = "{labels.web_crawling_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_web_crawling_link_prev_page = "{labels.web_crawling_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_web_crawling_link_next_page = "{labels.web_crawling_link_next_page}";
-
-        /** The key of the label: General Configuration */
-        String LABELS_crawler_configuration = "{labels.crawler_configuration}";
-
-        /** The key of the label: General Configuration */
-        String LABELS_crawler_title_edit = "{labels.crawler_title_edit}";
-
-        /** The key of the label: Schedule */
-        String LABELS_SCHEDULE = "{labels.schedule}";
-
-        /** The key of the label: Optimize Index */
-        String LABELS_OPTIMIZE = "{labels.optimize}";
-
-        /** The key of the label: Enabled */
-        String LABELS_ENABLED = "{labels.enabled}";
-
-        /** The key of the label: Commit Index */
-        String LABELS_COMMIT = "{labels.commit}";
-
-        /** The key of the label: Server Rotation */
-        String LABELS_server_rotation = "{labels.server_rotation}";
-
-        /** The key of the label: Remove Index Before */
-        String LABELS_day_for_cleanup = "{labels.day_for_cleanup}";
-
-        /** The key of the label: Day */
-        String LABELS_DAY = "{labels.day}";
-
-        /** The key of the label: Update */
-        String LABELS_crawl_button_update = "{labels.crawl_button_update}";
-
-        /** The key of the label: None */
-        String LABELS_NONE = "{labels.none}";
-
-        /** The key of the label: Commit per Document Size */
-        String LABELS_commit_per_count = "{labels.commit_per_count}";
-
-        /** The key of the label: Num of Simultaneous Crawler Config */
-        String LABELS_crawling_thread_count = "{labels.crawling_thread_count}";
-
-        /** The key of the label: Check Last Modified */
-        String LABELS_diff_crawling = "{labels.diff_crawling}";
-
-        /** The key of the label: Use ACL as Role */
-        String LABELS_use_acl_as_role = "{labels.use_acl_as_role}";
-
-        /** The key of the label: Search Logging */
-        String LABELS_search_log_enabled = "{labels.search_log_enabled}";
-
-        /** The key of the label: User Logging */
-        String LABELS_user_info_enabled = "{labels.user_info_enabled}";
-
-        /** The key of the label: Favarite Logging */
-        String LABELS_user_favorite_enabled = "{labels.user_favorite_enabled}";
-
-        /** The key of the label: XML Response */
-        String LABELS_web_api_xml_enabled = "{labels.web_api_xml_enabled}";
-
-        /** The key of the label: JSON Response */
-        String LABELS_web_api_json_enabled = "{labels.web_api_json_enabled}";
-
-        /** The key of the label: Suggest API Response */
-        String LABELS_web_api_suggest_enabled = "{labels.web_api_suggest_enabled}";
-
-        /** The key of the label: Analysis API Response */
-        String LABELS_web_api_analysis_enabled = "{labels.web_api_analysis_enabled}";
-
-        /** The key of the label: Default Label Value */
-        String LABELS_default_label_value = "{labels.default_label_value}";
-
-        /** The key of the label: Append Params to URL */
-        String LABELS_append_query_param_enabled = "{labels.append_query_param_enabled}";
-
-        /** The key of the label: Supported Search */
-        String LABELS_supported_search_feature = "{labels.supported_search_feature}";
-
-        /** The key of the label: Excluded Failure Type */
-        String LABELS_ignore_failure_type = "{labels.ignore_failure_type}";
-
-        /** The key of the label: Failure Count Threshold */
-        String LABELS_failure_count_threshold = "{labels.failure_count_threshold}";
-
-        /** The key of the label: Popular Word Response */
-        String LABELS_hot_search_word_enabled = "{labels.hot_search_word_enabled}";
-
-        /** The key of the label: Web */
-        String LABELS_supported_search_web = "{labels.supported_search_web}";
-
-        /** The key of the label: Not Available */
-        String LABELS_supported_search_none = "{labels.supported_search_none}";
-
-        /** The key of the label: Purge Session Info Before */
-        String LABELS_purge_session_info_day = "{labels.purge_session_info_day}";
-
-        /** The key of the label: Purge Search Log Before */
-        String LABELS_purge_search_log_day = "{labels.purge_search_log_day}";
-
-        /** The key of the label: Purge Job Log Before */
-        String LABELS_purge_job_log_day = "{labels.purge_job_log_day}";
-
-        /** The key of the label: Purge User Before */
-        String LABELS_purge_user_info_day = "{labels.purge_user_info_day}";
-
-        /** The key of the label: Bots Name For Purge */
-        String LABELS_purge_by_bots = "{labels.purge_by_bots}";
-
-        /** The key of the label: Encoding for CSV */
-        String LABELS_csv_file_encoding = "{labels.csv_file_encoding}";
-
-        /** The key of the label: Notification Email */
-        String LABELS_notification_to = "{labels.notification_to}";
-
-        /** The key of the label: Path Mapping Configuration */
-        String LABELS_path_mapping_configuration = "{labels.path_mapping_configuration}";
-
-        /** The key of the label: Path Mapping */
-        String LABELS_path_mapping_title_details = "{labels.path_mapping_title_details}";
-
-        /** The key of the label: Confirm */
-        String LABELS_path_mapping_button_confirm = "{labels.path_mapping_button_confirm}";
-
-        /** The key of the label: Disabled */
-        String LABELS_DISABLED = "{labels.disabled}";
-
-        /** The key of the label: Crawling */
-        String LABELS_path_mapping_pt_crawling = "{labels.path_mapping_pt_crawling}";
-
-        /** The key of the label: Displaying */
-        String LABELS_path_mapping_pt_displaying = "{labels.path_mapping_pt_displaying}";
-
-        /** The key of the label: Crawling/Displaying */
-        String LABELS_path_mapping_pt_both = "{labels.path_mapping_pt_both}";
-
-        /** The key of the label: Confirm Path Mapping */
-        String LABELS_path_mapping_title_confirm = "{labels.path_mapping_title_confirm}";
-
-        /** The key of the label: Regular Name */
-        String LABELS_regular_name = "{labels.regular_name}";
-
-        /** The key of the label: Overlapping Name */
-        String LABELS_overlapping_name = "{labels.overlapping_name}";
-
-        /** The key of the label: Create */
-        String LABELS_path_mapping_button_create = "{labels.path_mapping_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_path_mapping_button_back = "{labels.path_mapping_button_back}";
-
-        /** The key of the label: Update */
-        String LABELS_path_mapping_button_update = "{labels.path_mapping_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_path_mapping_button_delete = "{labels.path_mapping_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_path_mapping_button_edit = "{labels.path_mapping_button_edit}";
-
-        /** The key of the label: Create New */
-        String LABELS_path_mapping_link_create_new = "{labels.path_mapping_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_path_mapping_link_list = "{labels.path_mapping_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_path_mapping_link_create = "{labels.path_mapping_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_path_mapping_link_update = "{labels.path_mapping_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_path_mapping_link_confirm = "{labels.path_mapping_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_path_mapping_link_details = "{labels.path_mapping_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_path_mapping_link_edit = "{labels.path_mapping_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_path_mapping_link_delete = "{labels.path_mapping_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_path_mapping_link_prev_page = "{labels.path_mapping_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_path_mapping_link_next_page = "{labels.path_mapping_link_next_page}";
-
-        /** The key of the label: Overlapping Host Configuration */
-        String LABELS_overlapping_host_configuration = "{labels.overlapping_host_configuration}";
-
-        /** The key of the label: Overlapping Host */
-        String LABELS_overlapping_host_title_details = "{labels.overlapping_host_title_details}";
-
-        /** The key of the label: Confirm */
-        String LABELS_overlapping_host_button_confirm = "{labels.overlapping_host_button_confirm}";
-
-        /** The key of the label: Confirm Overlapping Host */
-        String LABELS_overlapping_host_title_confirm = "{labels.overlapping_host_title_confirm}";
-
-        /** The key of the label: Create */
-        String LABELS_overlapping_host_button_create = "{labels.overlapping_host_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_overlapping_host_button_back = "{labels.overlapping_host_button_back}";
-
-        /** The key of the label: Update */
-        String LABELS_overlapping_host_button_update = "{labels.overlapping_host_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_overlapping_host_button_delete = "{labels.overlapping_host_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_overlapping_host_button_edit = "{labels.overlapping_host_button_edit}";
-
-        /** The key of the label: Create New */
-        String LABELS_overlapping_host_link_create_new = "{labels.overlapping_host_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_overlapping_host_link_list = "{labels.overlapping_host_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_overlapping_host_link_create = "{labels.overlapping_host_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_overlapping_host_link_update = "{labels.overlapping_host_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_overlapping_host_link_confirm = "{labels.overlapping_host_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_overlapping_host_link_details = "{labels.overlapping_host_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_overlapping_host_link_edit = "{labels.overlapping_host_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_overlapping_host_link_delete = "{labels.overlapping_host_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_overlapping_host_link_prev_page = "{labels.overlapping_host_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_overlapping_host_link_next_page = "{labels.overlapping_host_link_next_page}";
-
-        /** The key of the label: System Configuration */
-        String LABELS_system_title_configuration = "{labels.system_title_configuration}";
-
-        /** The key of the label: System Status */
-        String LABELS_system_title_system_status = "{labels.system_title_system_status}";
-
-        /** The key of the label: Update */
-        String LABELS_es_button_update = "{labels.es_button_update}";
-
-        /** The key of the label: Active */
-        String LABELS_es_active = "{labels.es_active}";
-
-        /** The key of the label: Inactive */
-        String LABELS_es_inactive = "{labels.es_inactive}";
-
-        /** The key of the label: Ready */
-        String LABELS_es_ready = "{labels.es_ready}";
-
-        /** The key of the label: Completed */
-        String LABELS_es_completed = "{labels.es_completed}";
-
-        /** The key of the label: Unfinished */
-        String LABELS_es_unfinished = "{labels.es_unfinished}";
-
-        /** The key of the label: None */
-        String LABELS_es_action_none = "{labels.es_action_none}";
-
-        /** The key of the label: Commit */
-        String LABELS_es_action_commit = "{labels.es_action_commit}";
-
-        /** The key of the label: Optimize */
-        String LABELS_es_action_optimize = "{labels.es_action_optimize}";
-
-        /** The key of the label: Delete */
-        String LABELS_es_action_delete = "{labels.es_action_delete}";
-
-        /** The key of the label: Results */
-        String LABELS_es_action_confirm_list = "{labels.es_action_confirm_list}";
-
-        /** The key of the label: All */
-        String LABELS_es_action_all = "{labels.es_action_all}";
-
-        /** The key of the label: Cluster Name */
-        String LABELS_es_cluster_name = "{labels.es_cluster_name}";
-
-        /** The key of the label: Solr Action */
-        String LABELS_es_title_action = "{labels.es_title_action}";
-
-        /** The key of the label: Delete Docs From Index */
-        String LABELS_es_title_delete = "{labels.es_title_delete}";
-
-        /** The key of the label: Crawler Process */
-        String LABELS_crawler_process_running = "{labels.crawler_process_running}";
-
-        /** The key of the label: Running */
-        String LABELS_crawler_running = "{labels.crawler_running}";
-
-        /** The key of the label: Stopped */
-        String LABELS_crawler_stopped = "{labels.crawler_stopped}";
-
-        /** The key of the label: Action */
-        String LABELS_crawler_process_action = "{labels.crawler_process_action}";
-
-        /** The key of the label: Added Docs */
-        String LABELS_es_document_title = "{labels.es_document_title}";
-
-        /** The key of the label: Server Group */
-        String LABELS_es_group_name = "{labels.es_group_name}";
-
-        /** The key of the label: Session  */
-        String LABELS_session_name = "{labels.session_name}";
-
-        /** The key of the label: Num of Docs */
-        String LABELS_es_num_of_docs = "{labels.es_num_of_docs}";
-
-        /** The key of the label: Solr Status */
-        String LABELS_es_title_edit = "{labels.es_title_edit}";
-
-        /** The key of the label: Start Crawler */
-        String LABELS_crawler_button_start = "{labels.crawler_button_start}";
-
-        /** The key of the label: Stop Crawker */
-        String LABELS_crawler_button_stop = "{labels.crawler_button_stop}";
-
-        /** The key of the label: Solr Instance */
-        String LABELS_es_management_title = "{labels.es_management_title}";
-
-        /** The key of the label: Name */
-        String LABELS_es_instance_name = "{labels.es_instance_name}";
-
-        /** The key of the label: Status */
-        String LABELS_es_instance_status = "{labels.es_instance_status}";
-
-        /** The key of the label: Action */
-        String LABELS_es_instance_action = "{labels.es_instance_action}";
-
-        /** The key of the label: Start */
-        String LABELS_es_instance_start = "{labels.es_instance_start}";
-
-        /** The key of the label: Stop */
-        String LABELS_es_instance_stop = "{labels.es_instance_stop}";
-
-        /** The key of the label: Reload */
-        String LABELS_es_instance_reload = "{labels.es_instance_reload}";
-
-        /** The key of the label: URL */
-        String LABELS_es_action_url_delete = "{labels.es_action_url_delete}";
-
-        /** The key of the label: All */
-        String LABELS_system_document_all = "{labels.system_document_all}";
-
-        /** The key of the label: Group : Server */
-        String LABELS_system_group_server_name = "{labels.system_group_server_name}";
-
-        /** The key of the label: Server Status */
-        String LABELS_system_server_status = "{labels.system_server_status}";
-
-        /** The key of the label: Index Status */
-        String LABELS_system_index_status = "{labels.system_index_status}";
-
-        /** The key of the label: Crawler Status */
-        String LABELS_crawler_status_title = "{labels.crawler_status_title}";
-
-        /** The key of the label: All */
-        String LABELS_crawler_sessionid_all = "{labels.crawler_sessionid_all}";
-
-        /** The key of the label: No available Solr server. */
-        String LABELS_no_available_solr_servers = "{labels.no_available_solr_servers}";
-
-        /** The key of the label: Added Suggest Docs */
-        String LABELS_suggest_document_title = "{labels.suggest_document_title}";
-
-        /** The key of the label: type */
-        String LABELS_suggest_type = "{labels.suggest_type}";
-
-        /** The key of the label: all */
-        String LABELS_suggest_type_all = "{labels.suggest_type_all}";
-
-        /** The key of the label: content */
-        String LABELS_suggest_type_content = "{labels.suggest_type_content}";
-
-        /** The key of the label: search words */
-        String LABELS_suggest_type_searchlog = "{labels.suggest_type_searchlog}";
-
-        /** The key of the label: Suggest by Search Words */
-        String LABELS_suggest_search_log_enabled = "{labels.suggest_search_log_enabled}";
-
-        /** The key of the label: Purge Suggest Docs by Search Words */
-        String LABELS_purge_suggest_search_log_day = "{labels.purge_suggest_search_log_day}";
-
-        /** The key of the label: Session Information */
-        String LABELS_crawling_session_title = "{labels.crawling_session_title}";
-
-        /** The key of the label: Crawling Information */
-        String LABELS_crawling_session_title_confirm = "{labels.crawling_session_title_confirm}";
-
-        /** The key of the label: Back */
-        String LABELS_crawling_session_button_back = "{labels.crawling_session_button_back}";
-
-        /** The key of the label: Delete */
-        String LABELS_crawling_session_button_delete = "{labels.crawling_session_button_delete}";
-
-        /** The key of the label: Crawling Session */
-        String LABELS_crawling_session_configuration = "{labels.crawling_session_configuration}";
-
-        /** The key of the label: Search */
-        String LABELS_crawling_session_search = "{labels.crawling_session_search}";
-
-        /** The key of the label: Reset */
-        String LABELS_crawling_session_reset = "{labels.crawling_session_reset}";
-
-        /** The key of the label: List */
-        String LABELS_crawling_session_link_list = "{labels.crawling_session_link_list}";
-
-        /** The key of the label: Details */
-        String LABELS_crawling_session_link_details = "{labels.crawling_session_link_details}";
-
-        /** The key of the label: Delete */
-        String LABELS_crawling_session_link_delete = "{labels.crawling_session_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_crawling_session_prev_page = "{labels.crawling_session_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_crawling_session_next_page = "{labels.crawling_session_next_page}";
-
-        /** The key of the label: Session ID:  */
-        String LABELS_crawling_session_session_id_search = "{labels.crawling_session_session_id_search}";
-
-        /** The key of the label: Session ID */
-        String LABELS_crawling_session_session_id = "{labels.crawling_session_session_id}";
-
-        /** The key of the label: Name */
-        String LABELS_crawling_session_name = "{labels.crawling_session_name}";
-
-        /** The key of the label: Created */
-        String LABELS_crawling_session_created_time = "{labels.crawling_session_created_time}";
-
-        /** The key of the label: Expired */
-        String LABELS_crawling_session_expired_time = "{labels.crawling_session_expired_time}";
-
-        /** The key of the label: Delete All */
-        String LABELS_crawling_session_delete_all_link = "{labels.crawling_session_delete_all_link}";
-
-        /** The key of the label: Do you want to delete all? */
-        String LABELS_crawling_session_delete_all_confirmation = "{labels.crawling_session_delete_all_confirmation}";
-
-        /** The key of the label: Crawling Status */
-        String LABELS_crawling_session_CrawlerStatus = "{labels.crawling_session_CrawlerStatus}";
-
-        /** The key of the label: Start Time (Crawling) */
-        String LABELS_crawling_session_CrawlerStartTime = "{labels.crawling_session_CrawlerStartTime}";
-
-        /** The key of the label: End Time (Crawling) */
-        String LABELS_crawling_session_CrawlerEndTime = "{labels.crawling_session_CrawlerEndTime}";
-
-        /** The key of the label: Exec Time (Crawling) */
-        String LABELS_crawling_session_CrawlerExecTime = "{labels.crawling_session_CrawlerExecTime}";
-
-        /** The key of the label: Start Time (Web/File) */
-        String LABELS_crawling_session_WebFsCrawlStartTime = "{labels.crawling_session_WebFsCrawlStartTime}";
-
-        /** The key of the label: End Time (Web/File) */
-        String LABELS_crawling_session_WebFsCrawlEndTime = "{labels.crawling_session_WebFsCrawlEndTime}";
-
-        /** The key of the label: Start Time (Data Store) */
-        String LABELS_crawling_session_DataCrawlStartTime = "{labels.crawling_session_DataCrawlStartTime}";
-
-        /** The key of the label: End Time (Data Store) */
-        String LABELS_crawling_session_DataCrawlEndTime = "{labels.crawling_session_DataCrawlEndTime}";
-
-        /** The key of the label: Start Time (Optimize) */
-        String LABELS_crawling_session_OptimizeStartTime = "{labels.crawling_session_OptimizeStartTime}";
-
-        /** The key of the label: End Time (Optimize) */
-        String LABELS_crawling_session_OptimizeEndTime = "{labels.crawling_session_OptimizeEndTime}";
-
-        /** The key of the label: Exec Time (Optimize) */
-        String LABELS_crawling_session_OptimizeExecTime = "{labels.crawling_session_OptimizeExecTime}";
-
-        /** The key of the label: Start Time (Commit) */
-        String LABELS_crawling_session_CommitStartTime = "{labels.crawling_session_CommitStartTime}";
-
-        /** The key of the label: End Time (Commit) */
-        String LABELS_crawling_session_CommitEndTime = "{labels.crawling_session_CommitEndTime}";
-
-        /** The key of the label: Exec Time (Commit) */
-        String LABELS_crawling_session_CommitExecTime = "{labels.crawling_session_CommitExecTime}";
-
-        /** The key of the label: Exec Time (Web/File) */
-        String LABELS_crawling_session_WebFsCrawlExecTime = "{labels.crawling_session_WebFsCrawlExecTime}";
-
-        /** The key of the label: Indexing Exec Time (Web/File) */
-        String LABELS_crawling_session_WebFsIndexExecTime = "{labels.crawling_session_WebFsIndexExecTime}";
-
-        /** The key of the label: Index Size (Web/File) */
-        String LABELS_crawling_session_WebFsIndexSize = "{labels.crawling_session_WebFsIndexSize}";
-
-        /** The key of the label: Exec Time (Data Store) */
-        String LABELS_crawling_session_DataCrawlExecTime = "{labels.crawling_session_DataCrawlExecTime}";
-
-        /** The key of the label: Indexing Exec Time (Data Store) */
-        String LABELS_crawling_session_DataIndexExecTime = "{labels.crawling_session_DataIndexExecTime}";
-
-        /** The key of the label: Index Size (Data Store) */
-        String LABELS_crawling_session_DataIndexSize = "{labels.crawling_session_DataIndexSize}";
-
-        /** The key of the label: Replication Status */
-        String LABELS_crawling_session_ReplicationStatus = "{labels.crawling_session_ReplicationStatus}";
-
-        /** The key of the label: Start Time (Replication) */
-        String LABELS_crawling_session_ReplicationStartTime = "{labels.crawling_session_ReplicationStartTime}";
-
-        /** The key of the label: End Time (Replication) */
-        String LABELS_crawling_session_ReplicationEndTime = "{labels.crawling_session_ReplicationEndTime}";
-
-        /** The key of the label: Exec Time (Replication) */
-        String LABELS_crawling_session_ReplicationExecTime = "{labels.crawling_session_ReplicationExecTime}";
-
-        /** The key of the label: Backup/Restore Configuration */
-        String LABELS_data_configuration = "{labels.data_configuration}";
-
-        /** The key of the label: Backup  */
-        String LABELS_backup_title_edit = "{labels.backup_title_edit}";
-
-        /** The key of the label: Backup */
-        String LABELS_BACKUP = "{labels.backup}";
-
-        /** The key of the label: Download as XML File */
-        String LABELS_download_data = "{labels.download_data}";
-
-        /** The key of the label: Download as CSV File */
-        String LABELS_download_data_csv = "{labels.download_data_csv}";
-
-        /** The key of the label: Restore  */
-        String LABELS_restore_title_edit = "{labels.restore_title_edit}";
-
-        /** The key of the label: File */
-        String LABELS_RESTORE = "{labels.restore}";
-
-        /** The key of the label: Restore Data */
-        String LABELS_upload_button = "{labels.upload_button}";
-
-        /** The key of the label: Confinguration */
-        String LABELS_backup_config = "{labels.backup_config}";
-
-        /** The key of the label: Session Info */
-        String LABELS_backup_session_info = "{labels.backup_session_info}";
-
-        /** The key of the label: Search Log */
-        String LABELS_backup_search_log = "{labels.backup_search_log}";
-
-        /** The key of the label: Click Long */
-        String LABELS_backup_click_log = "{labels.backup_click_log}";
-
-        /** The key of the label: Web Authentication */
-        String LABELS_web_authentication_configuration = "{labels.web_authentication_configuration}";
-
-        /** The key of the label: Create New */
-        String LABELS_web_authentication_link_create_new = "{labels.web_authentication_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_web_authentication_link_list = "{labels.web_authentication_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_web_authentication_link_create = "{labels.web_authentication_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_web_authentication_link_update = "{labels.web_authentication_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_web_authentication_link_confirm = "{labels.web_authentication_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_web_authentication_link_details = "{labels.web_authentication_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_web_authentication_link_edit = "{labels.web_authentication_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_web_authentication_link_delete = "{labels.web_authentication_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_web_authentication_link_prev_page = "{labels.web_authentication_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_web_authentication_link_next_page = "{labels.web_authentication_link_next_page}";
-
-        /** The key of the label: Hostname */
-        String LABELS_web_authentication_list_hostname = "{labels.web_authentication_list_hostname}";
-
-        /** The key of the label: Realm */
-        String LABELS_web_authentication_list_realm = "{labels.web_authentication_list_realm}";
-
-        /** The key of the label: Config Name */
-        String LABELS_web_authentication_list_web_crawling_config = "{labels.web_authentication_list_web_crawling_config}";
-
-        /** The key of the label: Any */
-        String LABELS_web_authentication_any = "{labels.web_authentication_any}";
-
-        /** The key of the label: Create New Web Config */
-        String LABELS_web_authentication_create_web_config = "{labels.web_authentication_create_web_config}";
-
-        /** The key of the label: Web Authentication */
-        String LABELS_web_authentication_title_details = "{labels.web_authentication_title_details}";
-
-        /** The key of the label: Create */
-        String LABELS_web_authentication_button_create = "{labels.web_authentication_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_web_authentication_button_back = "{labels.web_authentication_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_web_authentication_button_confirm = "{labels.web_authentication_button_confirm}";
-
-        /** The key of the label: Hostname */
-        String LABELS_web_authentication_hostname = "{labels.web_authentication_hostname}";
-
-        /** The key of the label: Port */
-        String LABELS_web_authentication_port = "{labels.web_authentication_port}";
-
-        /** The key of the label: Realm */
-        String LABELS_web_authentication_realm = "{labels.web_authentication_realm}";
-
-        /** The key of the label: Scheme */
-        String LABELS_web_authentication_scheme = "{labels.web_authentication_scheme}";
-
-        /** The key of the label: Username */
-        String LABELS_web_authentication_username = "{labels.web_authentication_username}";
-
-        /** The key of the label: Password */
-        String LABELS_web_authentication_password = "{labels.web_authentication_password}";
-
-        /** The key of the label: Parameters */
-        String LABELS_web_authentication_parameters = "{labels.web_authentication_parameters}";
-
-        /** The key of the label: Web Config */
-        String LABELS_web_authentication_web_crawling_config = "{labels.web_authentication_web_crawling_config}";
-
-        /** The key of the label: Basic */
-        String LABELS_web_authentication_scheme_basic = "{labels.web_authentication_scheme_basic}";
-
-        /** The key of the label: Digest */
-        String LABELS_web_authentication_scheme_digest = "{labels.web_authentication_scheme_digest}";
-
-        /** The key of the label: NTLM */
-        String LABELS_web_authentication_scheme_ntlm = "{labels.web_authentication_scheme_ntlm}";
-
-        /** The key of the label: Web Authentication */
-        String LABELS_web_authentication_title_confirm = "{labels.web_authentication_title_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_web_authentication_button_update = "{labels.web_authentication_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_web_authentication_button_delete = "{labels.web_authentication_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_web_authentication_button_edit = "{labels.web_authentication_button_edit}";
-
-        /** The key of the label: Log Files */
-        String LABELS_log_configuration = "{labels.log_configuration}";
-
-        /** The key of the label: Log Files */
-        String LABELS_log_file_download_title = "{labels.log_file_download_title}";
-
-        /** The key of the label: File Name */
-        String LABELS_log_file_name = "{labels.log_file_name}";
-
-        /** The key of the label: Timestamp */
-        String LABELS_log_file_date = "{labels.log_file_date}";
-
-        /** The key of the label: Label */
-        String LABELS_labeltype_configuration = "{labels.labeltype_configuration}";
-
-        /** The key of the label: Label */
-        String LABELS_labeltype_title_details = "{labels.labeltype_title_details}";
-
-        /** The key of the label: Confirm */
-        String LABELS_labeltype_button_confirm = "{labels.labeltype_button_confirm}";
-
-        /** The key of the label: Name */
-        String LABELS_labeltype_name = "{labels.labeltype_name}";
-
-        /** The key of the label: Value */
-        String LABELS_labeltype_value = "{labels.labeltype_value}";
-
-        /** The key of the label: Confirm Label */
-        String LABELS_labeltype_title_confirm = "{labels.labeltype_title_confirm}";
-
-        /** The key of the label: Create */
-        String LABELS_labeltype_button_create = "{labels.labeltype_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_labeltype_button_back = "{labels.labeltype_button_back}";
-
-        /** The key of the label: Update */
-        String LABELS_labeltype_button_update = "{labels.labeltype_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_labeltype_button_delete = "{labels.labeltype_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_labeltype_button_edit = "{labels.labeltype_button_edit}";
-
-        /** The key of the label: Included Paths */
-        String LABELS_labeltype_included_paths = "{labels.labeltype_included_paths}";
-
-        /** The key of the label: Excluded Paths */
-        String LABELS_labeltype_excluded_paths = "{labels.labeltype_excluded_paths}";
-
-        /** The key of the label: Create New */
-        String LABELS_labeltype_link_create_new = "{labels.labeltype_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_labeltype_link_list = "{labels.labeltype_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_labeltype_link_create = "{labels.labeltype_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_labeltype_link_update = "{labels.labeltype_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_labeltype_link_confirm = "{labels.labeltype_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_labeltype_link_details = "{labels.labeltype_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_labeltype_link_edit = "{labels.labeltype_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_labeltype_link_delete = "{labels.labeltype_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_labeltype_link_prev_page = "{labels.labeltype_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_labeltype_link_next_page = "{labels.labeltype_link_next_page}";
-
-        /** The key of the label: Role */
-        String LABELS_roletype_configuration = "{labels.roletype_configuration}";
-
-        /** The key of the label: Role */
-        String LABELS_roletype_title_details = "{labels.roletype_title_details}";
-
-        /** The key of the label: Confirm */
-        String LABELS_roletype_button_confirm = "{labels.roletype_button_confirm}";
-
-        /** The key of the label: Name */
-        String LABELS_roletype_name = "{labels.roletype_name}";
-
-        /** The key of the label: Value */
-        String LABELS_roletype_value = "{labels.roletype_value}";
-
-        /** The key of the label: Confirm Role */
-        String LABELS_roletype_title_confirm = "{labels.roletype_title_confirm}";
-
-        /** The key of the label: Create */
-        String LABELS_roletype_button_create = "{labels.roletype_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_roletype_button_back = "{labels.roletype_button_back}";
-
-        /** The key of the label: Update */
-        String LABELS_roletype_button_update = "{labels.roletype_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_roletype_button_delete = "{labels.roletype_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_roletype_button_edit = "{labels.roletype_button_edit}";
-
-        /** The key of the label: Create New */
-        String LABELS_roletype_link_create_new = "{labels.roletype_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_roletype_link_list = "{labels.roletype_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_roletype_link_create = "{labels.roletype_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_roletype_link_update = "{labels.roletype_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_roletype_link_confirm = "{labels.roletype_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_roletype_link_details = "{labels.roletype_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_roletype_link_edit = "{labels.roletype_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_roletype_link_delete = "{labels.roletype_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_roletype_link_prev_page = "{labels.roletype_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_roletype_link_next_page = "{labels.roletype_link_next_page}";
-
-        /** The key of the label: Request Header */
-        String LABELS_request_header_configuration = "{labels.request_header_configuration}";
-
-        /** The key of the label: Create New */
-        String LABELS_request_header_link_create_new = "{labels.request_header_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_request_header_link_list = "{labels.request_header_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_request_header_link_create = "{labels.request_header_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_request_header_link_update = "{labels.request_header_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_request_header_link_confirm = "{labels.request_header_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_request_header_link_details = "{labels.request_header_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_request_header_link_edit = "{labels.request_header_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_request_header_link_delete = "{labels.request_header_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_request_header_link_prev_page = "{labels.request_header_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_request_header_link_next_page = "{labels.request_header_link_next_page}";
-
-        /** The key of the label: Name */
-        String LABELS_request_header_list_name = "{labels.request_header_list_name}";
-
-        /** The key of the label: Config Name */
-        String LABELS_request_header_list_web_crawling_config = "{labels.request_header_list_web_crawling_config}";
-
-        /** The key of the label: Create New Web Config */
-        String LABELS_request_header_create_web_config = "{labels.request_header_create_web_config}";
-
-        /** The key of the label: Request Header */
-        String LABELS_request_header_title_details = "{labels.request_header_title_details}";
-
-        /** The key of the label: Create */
-        String LABELS_request_header_button_create = "{labels.request_header_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_request_header_button_back = "{labels.request_header_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_request_header_button_confirm = "{labels.request_header_button_confirm}";
-
-        /** The key of the label: Name */
-        String LABELS_request_header_name = "{labels.request_header_name}";
-
-        /** The key of the label: Value */
-        String LABELS_request_header_value = "{labels.request_header_value}";
-
-        /** The key of the label: Web Config */
-        String LABELS_request_header_web_crawling_config = "{labels.request_header_web_crawling_config}";
-
-        /** The key of the label: Request Header */
-        String LABELS_request_header_title_confirm = "{labels.request_header_title_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_request_header_button_update = "{labels.request_header_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_request_header_button_delete = "{labels.request_header_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_request_header_button_edit = "{labels.request_header_button_edit}";
-
-        /** The key of the label: Key Match */
-        String LABELS_key_match_configuration = "{labels.key_match_configuration}";
-
-        /** The key of the label: Create New */
-        String LABELS_key_match_link_create_new = "{labels.key_match_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_key_match_link_list = "{labels.key_match_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_key_match_link_create = "{labels.key_match_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_key_match_link_update = "{labels.key_match_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_key_match_link_confirm = "{labels.key_match_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_key_match_link_details = "{labels.key_match_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_key_match_link_edit = "{labels.key_match_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_key_match_link_delete = "{labels.key_match_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_key_match_link_prev_page = "{labels.key_match_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_key_match_link_next_page = "{labels.key_match_link_next_page}";
-
-        /** The key of the label: Term */
-        String LABELS_key_match_list_term = "{labels.key_match_list_term}";
-
-        /** The key of the label: Query */
-        String LABELS_key_match_list_query = "{labels.key_match_list_query}";
-
-        /** The key of the label: Term */
-        String LABELS_key_match_term = "{labels.key_match_term}";
-
-        /** The key of the label: Query */
-        String LABELS_key_match_query = "{labels.key_match_query}";
-
-        /** The key of the label: Size */
-        String LABELS_key_match_size = "{labels.key_match_size}";
-
-        /** The key of the label: Boost */
-        String LABELS_key_match_boost = "{labels.key_match_boost}";
-
-        /** The key of the label: Key Match */
-        String LABELS_key_match_title_details = "{labels.key_match_title_details}";
-
-        /** The key of the label: Create */
-        String LABELS_key_match_button_create = "{labels.key_match_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_key_match_button_back = "{labels.key_match_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_key_match_button_confirm = "{labels.key_match_button_confirm}";
-
-        /** The key of the label: Name */
-        String LABELS_key_match_name = "{labels.key_match_name}";
-
-        /** The key of the label: Value */
-        String LABELS_key_match_value = "{labels.key_match_value}";
-
-        /** The key of the label: Confirm Key Match */
-        String LABELS_key_match_title_confirm = "{labels.key_match_title_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_key_match_button_update = "{labels.key_match_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_key_match_button_delete = "{labels.key_match_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_key_match_button_edit = "{labels.key_match_button_edit}";
-
-        /** The key of the label: Design */
-        String LABELS_design_configuration = "{labels.design_configuration}";
-
-        /** The key of the label: File Upload */
-        String LABELS_design_title_file_upload = "{labels.design_title_file_upload}";
-
-        /** The key of the label: File Manager */
-        String LABELS_design_title_file = "{labels.design_title_file}";
-
-        /** The key of the label: Upload File */
-        String LABELS_design_file = "{labels.design_file}";
-
-        /** The key of the label: Upload File Name (Optional) */
-        String LABELS_design_file_name = "{labels.design_file_name}";
-
-        /** The key of the label: Upload */
-        String LABELS_design_button_upload = "{labels.design_button_upload}";
-
-        /** The key of the label: Page View Files */
-        String LABELS_design_file_title_edit = "{labels.design_file_title_edit}";
-
-        /** The key of the label: Edit */
-        String LABELS_design_edit_button = "{labels.design_edit_button}";
-
-        /** The key of the label: Download */
-        String LABELS_design_download_button = "{labels.design_download_button}";
-
-        /** The key of the label: Delete */
-        String LABELS_design_delete_button = "{labels.design_delete_button}";
-
-        /** The key of the label: Use Default */
-        String LABELS_design_use_default_button = "{labels.design_use_default_button}";
-
-        /** The key of the label: Top Page */
-        String LABELS_design_file_index = "{labels.design_file_index}";
-
-        /** The key of the label: Footer */
-        String LABELS_design_file_footer = "{labels.design_file_footer}";
-
-        /** The key of the label: Results Page (Frame) */
-        String LABELS_design_file_search = "{labels.design_file_search}";
-
-        /** The key of the label: Results Page (Content) */
-        String LABELS_design_file_searchResults = "{labels.design_file_searchResults}";
-
-        /** The key of the label: Results Page (No Result) */
-        String LABELS_design_file_searchNoResult = "{labels.design_file_searchNoResult}";
-
-        /** The key of the label: Help Page (Content) */
-        String LABELS_design_file_help = "{labels.design_file_help}";
-
-        /** The key of the label: Header */
-        String LABELS_design_file_header = "{labels.design_file_header}";
-
-        /** The key of the label: Search Error Page */
-        String LABELS_design_file_error = "{labels.design_file_error}";
-
-        /** The key of the label: Cache Page */
-        String LABELS_design_file_cache = "{labels.design_file_cache}";
-
-        /** The key of the label: Error Page (Header) */
-        String LABELS_design_file_errorHeader = "{labels.design_file_errorHeader}";
-
-        /** The key of the label: Error Page (Footer) */
-        String LABELS_design_file_errorFooter = "{labels.design_file_errorFooter}";
-
-        /** The key of the label: Error Page (Not Found) */
-        String LABELS_design_file_errorNotFound = "{labels.design_file_errorNotFound}";
-
-        /** The key of the label: Error Page (System Error) */
-        String LABELS_design_file_errorSystem = "{labels.design_file_errorSystem}";
-
-        /** The key of the label: Error Page (Redirect) */
-        String LABELS_design_file_errorRedirect = "{labels.design_file_errorRedirect}";
-
-        /** The key of the label: Error Page (BadRequest) */
-        String LABELS_design_file_errorBadRequest = "{labels.design_file_errorBadRequest}";
-
-        /** The key of the label: Do you want to delete it? */
-        String LABELS_design_delete_confirmation = "{labels.design_delete_confirmation}";
-
-        /** The key of the label: Edit Page View File */
-        String LABELS_design_title_edit_content = "{labels.design_title_edit_content}";
-
-        /** The key of the label: Update */
-        String LABELS_design_button_update = "{labels.design_button_update}";
-
-        /** The key of the label: Back */
-        String LABELS_design_button_back = "{labels.design_button_back}";
-
-        /** The key of the label: Data Crawling Configuration */
-        String LABELS_data_crawling_configuration = "{labels.data_crawling_configuration}";
-
-        /** The key of the label: Data Crawling Configuration */
-        String LABELS_data_crawling_title_details = "{labels.data_crawling_title_details}";
-
-        /** The key of the label: Handler Name */
-        String LABELS_handler_name = "{labels.handler_name}";
-
-        /** The key of the label: Parameter */
-        String LABELS_handler_parameter = "{labels.handler_parameter}";
-
-        /** The key of the label: Script */
-        String LABELS_handler_script = "{labels.handler_script}";
-
-        /** The key of the label: Role */
-        String LABELS_role_type = "{labels.role_type}";
-
-        /** The key of the label: Label */
-        String LABELS_label_type = "{labels.label_type}";
-
-        /** The key of the label: Create */
-        String LABELS_data_crawling_button_create = "{labels.data_crawling_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_data_crawling_button_back = "{labels.data_crawling_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_data_crawling_button_confirm = "{labels.data_crawling_button_confirm}";
-
-        /** The key of the label: Confirm Data Crawling Configuration */
-        String LABELS_data_crawling_title_confirm = "{labels.data_crawling_title_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_data_crawling_button_update = "{labels.data_crawling_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_data_crawling_button_delete = "{labels.data_crawling_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_data_crawling_button_edit = "{labels.data_crawling_button_edit}";
-
-        /** The key of the label: Create New */
-        String LABELS_data_crawling_link_create_new = "{labels.data_crawling_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_data_crawling_link_list = "{labels.data_crawling_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_data_crawling_link_create = "{labels.data_crawling_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_data_crawling_link_update = "{labels.data_crawling_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_data_crawling_link_confirm = "{labels.data_crawling_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_data_crawling_link_details = "{labels.data_crawling_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_data_crawling_link_edit = "{labels.data_crawling_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_data_crawling_link_delete = "{labels.data_crawling_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_data_crawling_link_prev_page = "{labels.data_crawling_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_data_crawling_link_next_page = "{labels.data_crawling_link_next_page}";
-
-        /** The key of the label: Configuration Wizard */
-        String LABELS_wizard_title_configuration = "{labels.wizard_title_configuration}";
-
-        /** The key of the label: Configuration Wizard */
-        String LABELS_wizard_start_title = "{labels.wizard_start_title}";
-
-        /** The key of the label: Using Configuration Wizard, you can create crawling settings easily. */
-        String LABELS_wizard_start_desc = "{labels.wizard_start_desc}";
-
-        /** The key of the label: Start */
-        String LABELS_wizard_start_button = "{labels.wizard_start_button}";
-
-        /** The key of the label: Crawling Schedule */
-        String LABELS_wizard_schedule_title = "{labels.wizard_schedule_title}";
-
-        /** The key of the label: Use Schedule */
-        String LABELS_wizard_schedule_enabled = "{labels.wizard_schedule_enabled}";
-
-        /** The key of the label: Schedule */
-        String LABELS_wizard_schedule = "{labels.wizard_schedule}";
-
-        /** The key of the label: MM: */
-        String LABELS_wizard_schedule_month_prefix = "{labels.wizard_schedule_month_prefix}";
-
-        /** The key of the label:  */
-        String LABELS_wizard_schedule_month_suffix = "{labels.wizard_schedule_month_suffix}";
-
-        /** The key of the label: DD: */
-        String LABELS_wizard_schedule_date_prefix = "{labels.wizard_schedule_date_prefix}";
-
-        /** The key of the label:  */
-        String LABELS_wizard_schedule_date_suffix = "{labels.wizard_schedule_date_suffix}";
-
-        /** The key of the label: hh: */
-        String LABELS_wizard_schedule_hour_prefix = "{labels.wizard_schedule_hour_prefix}";
-
-        /** The key of the label:  */
-        String LABELS_wizard_schedule_hour_suffix = "{labels.wizard_schedule_hour_suffix}";
-
-        /** The key of the label: mm: */
-        String LABELS_wizard_schedule_min_prefix = "{labels.wizard_schedule_min_prefix}";
-
-        /** The key of the label:  */
-        String LABELS_wizard_schedule_min_suffix = "{labels.wizard_schedule_min_suffix}";
-
-        /** The key of the label: Next */
-        String LABELS_wizard_button_next = "{labels.wizard_button_next}";
-
-        /** The key of the label: Skip */
-        String LABELS_wizard_button_skip = "{labels.wizard_button_skip}";
-
-        /** The key of the label: Cancel */
-        String LABELS_wizard_button_cancel = "{labels.wizard_button_cancel}";
-
-        /** The key of the label: Back */
-        String LABELS_wizard_button_back = "{labels.wizard_button_back}";
-
-        /** The key of the label: Crawling Configuration */
-        String LABELS_wizard_crawling_config_title = "{labels.wizard_crawling_config_title}";
-
-        /** The key of the label: Name */
-        String LABELS_wizard_crawling_config_name = "{labels.wizard_crawling_config_name}";
-
-        /** The key of the label: Crawling Path */
-        String LABELS_wizard_crawling_config_path = "{labels.wizard_crawling_config_path}";
-
-        /** The key of the label: Create again */
-        String LABELS_wizard_button_register_again = "{labels.wizard_button_register_again}";
-
-        /** The key of the label: Create/Next */
-        String LABELS_wizard_button_register_next = "{labels.wizard_button_register_next}";
-
-        /** The key of the label: Sun */
-        String LABELS_wizard_schedule_day_sun = "{labels.wizard_schedule_day_sun}";
-
-        /** The key of the label: Mon */
-        String LABELS_wizard_schedule_day_mon = "{labels.wizard_schedule_day_mon}";
-
-        /** The key of the label: Tue */
-        String LABELS_wizard_schedule_day_tue = "{labels.wizard_schedule_day_tue}";
-
-        /** The key of the label: Wed */
-        String LABELS_wizard_schedule_day_wed = "{labels.wizard_schedule_day_wed}";
-
-        /** The key of the label: Thu */
-        String LABELS_wizard_schedule_day_thu = "{labels.wizard_schedule_day_thu}";
-
-        /** The key of the label: Fri */
-        String LABELS_wizard_schedule_day_fri = "{labels.wizard_schedule_day_fri}";
-
-        /** The key of the label: Sat */
-        String LABELS_wizard_schedule_day_sat = "{labels.wizard_schedule_day_sat}";
-
-        /** The key of the label: Mon-Fri */
-        String LABELS_wizard_schedule_day_m_f = "{labels.wizard_schedule_day_m_f}";
-
-        /** The key of the label: Mon,Wed,Fri */
-        String LABELS_wizard_schedule_day_mwf = "{labels.wizard_schedule_day_mwf}";
-
-        /** The key of the label: Tue,Thu */
-        String LABELS_wizard_schedule_day_tt = "{labels.wizard_schedule_day_tt}";
-
-        /** The key of the label: Start Crawling */
-        String LABELS_wizard_start_crawling_title = "{labels.wizard_start_crawling_title}";
-
-        /** The key of the label: To click "Start Crawling" button, you can start a crawling now. */
-        String LABELS_wizard_start_crawling_desc = "{labels.wizard_start_crawling_desc}";
-
-        /** The key of the label: Start Crawling */
-        String LABELS_wizard_button_start_crawling = "{labels.wizard_button_start_crawling}";
-
-        /** The key of the label: Finish */
-        String LABELS_wizard_button_finish = "{labels.wizard_button_finish}";
-
-        /** The key of the label: Search Result */
-        String LABELS_search_list_configuration = "{labels.search_list_configuration}";
-
-        /** The key of the label: Type a search query. */
-        String LABELS_search_list_index_page = "{labels.search_list_index_page}";
-
-        /** The key of the label: Delete Confirmation */
-        String LABELS_search_list_title_confirm_delete = "{labels.search_list_title_confirm_delete}";
-
-        /** The key of the label: URL */
-        String LABELS_search_list_url = "{labels.search_list_url}";
-
-        /** The key of the label: Delete */
-        String LABELS_search_list_delete_link = "{labels.search_list_delete_link}";
-
-        /** The key of the label: Search Log */
-        String LABELS_search_log_configuration = "{labels.search_log_configuration}";
-
-        /** The key of the label: Search Word */
-        String LABELS_search_log_search_word_search = "{labels.search_log_search_word_search}";
-
-        /** The key of the label: User ID */
-        String LABELS_search_log_user_code_search = "{labels.search_log_user_code_search}";
-
-        /** The key of the label: Search */
-        String LABELS_search_log_button_search = "{labels.search_log_button_search}";
-
-        /** The key of the label: Reset */
-        String LABELS_search_log_button_reset = "{labels.search_log_button_reset}";
-
-        /** The key of the label: Requested Time */
-        String LABELS_search_log_requested_time = "{labels.search_log_requested_time}";
-
-        /** The key of the label: Search Word */
-        String LABELS_search_log_search_word = "{labels.search_log_search_word}";
-
-        /** The key of the label: Search Query */
-        String LABELS_search_log_search_query = "{labels.search_log_search_query}";
-
-        /** The key of the label: Response Time */
-        String LABELS_search_log_response_time = "{labels.search_log_response_time}";
-
-        /** The key of the label: Hits */
-        String LABELS_search_log_hit_count = "{labels.search_log_hit_count}";
-
-        /** The key of the label: Details */
-        String LABELS_search_log_link_details = "{labels.search_log_link_details}";
-
-        /** The key of the label: Delete */
-        String LABELS_search_log_link_delete = "{labels.search_log_link_delete}";
-
-        /** The key of the label: Delete All */
-        String LABELS_search_log_delete_all_link = "{labels.search_log_delete_all_link}";
-
-        /** The key of the label: Do you want to delete all? */
-        String LABELS_search_log_delete_all_confirmation = "{labels.search_log_delete_all_confirmation}";
-
-        /** The key of the label: (Up) */
-        String LABELS_search_log_sort_up = "{labels.search_log_sort_up}";
-
-        /** The key of the label: (Down) */
-        String LABELS_search_log_sort_down = "{labels.search_log_sort_down}";
-
-        /** The key of the label: Download(CSV) */
-        String LABELS_search_log_download_csv = "{labels.search_log_download_csv}";
-
-        /** The key of the label: First Query Only */
-        String LABELS_search_log_search_start_page = "{labels.search_log_search_start_page}";
-
-        /** The key of the label: Term */
-        String LABELS_search_log_search_term = "{labels.search_log_search_term}";
-
-        /** The key of the label: From:  */
-        String LABELS_search_log_search_term_from = "{labels.search_log_search_term_from}";
-
-        /** The key of the label: To:  */
-        String LABELS_search_log_search_term_to = "{labels.search_log_search_term_to}";
-
-        /** The key of the label: Search Log */
-        String LABELS_search_log_title = "{labels.search_log_title}";
-
-        /** The key of the label: Details */
-        String LABELS_search_log_title_confirm = "{labels.search_log_title_confirm}";
-
-        /** The key of the label: ID */
-        String LABELS_search_log_id = "{labels.search_log_id}";
-
-        /** The key of the label: Solr Query */
-        String LABELS_search_log_solr_query = "{labels.search_log_solr_query}";
-
-        /** The key of the label: Offset */
-        String LABELS_search_log_query_offset = "{labels.search_log_query_offset}";
-
-        /** The key of the label: Size */
-        String LABELS_search_log_query_page_size = "{labels.search_log_query_page_size}";
-
-        /** The key of the label: User Agent */
-        String LABELS_search_log_user_agent = "{labels.search_log_user_agent}";
-
-        /** The key of the label: Referer */
-        String LABELS_search_log_referer = "{labels.search_log_referer}";
-
-        /** The key of the label: IP */
-        String LABELS_search_log_client_ip = "{labels.search_log_client_ip}";
-
-        /** The key of the label: Session ID */
-        String LABELS_search_log_session_id = "{labels.search_log_session_id}";
-
-        /** The key of the label: Click Logs */
-        String LABELS_search_log_click_log_title = "{labels.search_log_click_log_title}";
-
-        /** The key of the label: URL */
-        String LABELS_search_log_click_log_url = "{labels.search_log_click_log_url}";
-
-        /** The key of the label: Requested Time */
-        String LABELS_search_log_click_log_requestedTime = "{labels.search_log_click_log_requestedTime}";
-
-        /** The key of the label: Access Type */
-        String LABELS_search_log_access_type = "{labels.search_log_access_type}";
-
-        /** The key of the label: Failure URL */
-        String LABELS_failure_url_configuration = "{labels.failure_url_configuration}";
-
-        /** The key of the label: URL */
-        String LABELS_failure_url_search_url = "{labels.failure_url_search_url}";
-
-        /** The key of the label: Error Count */
-        String LABELS_failure_url_search_error_count = "{labels.failure_url_search_error_count}";
-
-        /** The key of the label: Type */
-        String LABELS_failure_url_search_error_name = "{labels.failure_url_search_error_name}";
-
-        /** The key of the label: Last Access */
-        String LABELS_failure_url_last_access_time = "{labels.failure_url_last_access_time}";
-
-        /** The key of the label: Confirm */
-        String LABELS_failure_url_link_confirm = "{labels.failure_url_link_confirm}";
-
-        /** The key of the label: Do you want to delete all? */
-        String LABELS_failure_url_delete_all_confirmation = "{labels.failure_url_delete_all_confirmation}";
-
-        /** The key of the label: Error Count */
-        String LABELS_failure_url_error_count = "{labels.failure_url_error_count}";
-
-        /** The key of the label: Failure URL Details */
-        String LABELS_failure_url_title_confirm = "{labels.failure_url_title_confirm}";
-
-        /** The key of the label: ID */
-        String LABELS_failure_url_id = "{labels.failure_url_id}";
-
-        /** The key of the label: Thread Name */
-        String LABELS_failure_url_thread_name = "{labels.failure_url_thread_name}";
-
-        /** The key of the label: Type */
-        String LABELS_failure_url_error_name = "{labels.failure_url_error_name}";
-
-        /** The key of the label: Log */
-        String LABELS_failure_url_error_log = "{labels.failure_url_error_log}";
-
-        /** The key of the label: URL */
-        String LABELS_failure_url_url = "{labels.failure_url_url}";
-
-        /** The key of the label: Web Crawling Configuration */
-        String LABELS_failure_url_web_config_name = "{labels.failure_url_web_config_name}";
-
-        /** The key of the label: File Crawling Configuration */
-        String LABELS_failure_url_file_config_name = "{labels.failure_url_file_config_name}";
-
-        /** The key of the label: Statistics */
-        String LABELS_stats_configuration = "{labels.stats_configuration}";
-
-        /** The key of the label: Report Type */
-        String LABELS_stats_search_report_type = "{labels.stats_search_report_type}";
-
-        /** The key of the label: Term */
-        String LABELS_stats_search_term = "{labels.stats_search_term}";
-
-        /** The key of the label: From:  */
-        String LABELS_stats_search_term_from = "{labels.stats_search_term_from}";
-
-        /** The key of the label: To:  */
-        String LABELS_stats_search_term_to = "{labels.stats_search_term_to}";
-
-        /** The key of the label: Search */
-        String LABELS_stats_button_search = "{labels.stats_button_search}";
-
-        /** The key of the label: Reset */
-        String LABELS_stats_button_reset = "{labels.stats_button_reset}";
-
-        /** The key of the label: Search Word */
-        String LABELS_stats_search_word = "{labels.stats_search_word}";
-
-        /** The key of the label: Search Query */
-        String LABELS_stats_search_query = "{labels.stats_search_query}";
-
-        /** The key of the label: Solr Query */
-        String LABELS_stats_solr_query = "{labels.stats_solr_query}";
-
-        /** The key of the label: User Agent */
-        String LABELS_stats_user_agent = "{labels.stats_user_agent}";
-
-        /** The key of the label: Referer */
-        String LABELS_stats_referer = "{labels.stats_referer}";
-
-        /** The key of the label: Client IP */
-        String LABELS_stats_client_ip = "{labels.stats_client_ip}";
-
-        /** The key of the label: Count */
-        String LABELS_stats_count = "{labels.stats_count}";
-
-        /** The key of the label: Clicked URL */
-        String LABELS_stats_click_url = "{labels.stats_click_url}";
-
-        /** The key of the label: Voted URL */
-        String LABELS_stats_favorite_url = "{labels.stats_favorite_url}";
-
-        /** The key of the label: System Info */
-        String LABELS_system_info_configuration = "{labels.system_info_configuration}";
-
-        /** The key of the label: Env Properties */
-        String LABELS_system_info_env_title = "{labels.system_info_env_title}";
-
-        /** The key of the label: System Properties */
-        String LABELS_system_info_prop_title = "{labels.system_info_prop_title}";
-
-        /** The key of the label: Fess Properties */
-        String LABELS_system_info_fess_prop_title = "{labels.system_info_fess_prop_title}";
-
-        /** The key of the label: Properties for Bug Report */
-        String LABELS_system_info_bug_report_title = "{labels.system_info_bug_report_title}";
-
-        /** The key of the label: crawler.properties does not exist. Default values are applied. */
-        String LABELS_system_info_crawler_properties_does_not_exist = "{labels.system_info_crawler_properties_does_not_exist}";
-
-        /** The key of the label: File Authentication */
-        String LABELS_file_authentication_configuration = "{labels.file_authentication_configuration}";
-
-        /** The key of the label: Create New */
-        String LABELS_file_authentication_link_create_new = "{labels.file_authentication_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_file_authentication_link_list = "{labels.file_authentication_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_file_authentication_link_create = "{labels.file_authentication_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_file_authentication_link_update = "{labels.file_authentication_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_file_authentication_link_confirm = "{labels.file_authentication_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_file_authentication_link_details = "{labels.file_authentication_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_file_authentication_link_edit = "{labels.file_authentication_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_file_authentication_link_delete = "{labels.file_authentication_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_file_authentication_link_prev_page = "{labels.file_authentication_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_file_authentication_link_next_page = "{labels.file_authentication_link_next_page}";
-
-        /** The key of the label: Hostname */
-        String LABELS_file_authentication_list_hostname = "{labels.file_authentication_list_hostname}";
-
-        /** The key of the label: Config Name */
-        String LABELS_file_authentication_list_file_crawling_config = "{labels.file_authentication_list_file_crawling_config}";
-
-        /** The key of the label: Any */
-        String LABELS_file_authentication_any = "{labels.file_authentication_any}";
-
-        /** The key of the label: Create New File Config */
-        String LABELS_file_authentication_create_file_config = "{labels.file_authentication_create_file_config}";
-
-        /** The key of the label: File Authentication */
-        String LABELS_file_authentication_title_details = "{labels.file_authentication_title_details}";
-
-        /** The key of the label: Create */
-        String LABELS_file_authentication_button_create = "{labels.file_authentication_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_file_authentication_button_back = "{labels.file_authentication_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_file_authentication_button_confirm = "{labels.file_authentication_button_confirm}";
-
-        /** The key of the label: Hostname */
-        String LABELS_file_authentication_hostname = "{labels.file_authentication_hostname}";
-
-        /** The key of the label: Port */
-        String LABELS_file_authentication_port = "{labels.file_authentication_port}";
-
-        /** The key of the label: Scheme */
-        String LABELS_file_authentication_scheme = "{labels.file_authentication_scheme}";
-
-        /** The key of the label: Username */
-        String LABELS_file_authentication_username = "{labels.file_authentication_username}";
-
-        /** The key of the label: Password */
-        String LABELS_file_authentication_password = "{labels.file_authentication_password}";
-
-        /** The key of the label: Parameters */
-        String LABELS_file_authentication_parameters = "{labels.file_authentication_parameters}";
-
-        /** The key of the label: FS Config */
-        String LABELS_file_authentication_file_crawling_config = "{labels.file_authentication_file_crawling_config}";
-
-        /** The key of the label: Samba */
-        String LABELS_file_authentication_scheme_samba = "{labels.file_authentication_scheme_samba}";
-
-        /** The key of the label: File Authentication */
-        String LABELS_file_authentication_title_confirm = "{labels.file_authentication_title_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_file_authentication_button_update = "{labels.file_authentication_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_file_authentication_button_delete = "{labels.file_authentication_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_file_authentication_button_edit = "{labels.file_authentication_button_edit}";
-
-        /** The key of the label: {0}/{1} ({2} items) */
-        String LABELS_pagination_page_guide_msg = "{labels.pagination_page_guide_msg}";
-
-        /** The key of the label: No data. */
-        String LABELS_list_could_not_find_crud_table = "{labels.list_could_not_find_crud_table}";
-
-        /** The key of the label: User Info */
-        String LABELS_user_info_configuration = "{labels.user_info_configuration}";
-
-        /** The key of the label: User Info */
-        String LABELS_user_info_title = "{labels.user_info_title}";
-
-        /** The key of the label: Details */
-        String LABELS_user_info_title_confirm = "{labels.user_info_title_confirm}";
-
-        /** The key of the label: Search Log */
-        String LABELS_user_info_search_log_link = "{labels.user_info_search_log_link}";
-
-        /** The key of the label: Favorite Log */
-        String LABELS_user_info_favorite_log_link = "{labels.user_info_favorite_log_link}";
-
-        /** The key of the label: User ID */
-        String LABELS_user_info_search_code = "{labels.user_info_search_code}";
-
-        /** The key of the label: User ID */
-        String LABELS_user_info_list_code = "{labels.user_info_list_code}";
-
-        /** The key of the label: Last Accessed */
-        String LABELS_user_info_list_lastupdated = "{labels.user_info_list_lastupdated}";
-
-        /** The key of the label: User ID */
-        String LABELS_user_info_edit_code = "{labels.user_info_edit_code}";
-
-        /** The key of the label: Created */
-        String LABELS_user_info_edit_createddate = "{labels.user_info_edit_createddate}";
-
-        /** The key of the label: Last Accessed */
-        String LABELS_user_info_edit_lastupdated = "{labels.user_info_edit_lastupdated}";
-
-        /** The key of the label: Delete All */
-        String LABELS_user_info_delete_all_link = "{labels.user_info_delete_all_link}";
-
-        /** The key of the label: Do you want to delete all? */
-        String LABELS_user_info_delete_all_confirmation = "{labels.user_info_delete_all_confirmation}";
-
-        /** The key of the label: Popular URL */
-        String LABELS_favorite_log_title = "{labels.favorite_log_title}";
-
-        /** The key of the label: Popular URL */
-        String LABELS_favorite_log_configuration = "{labels.favorite_log_configuration}";
-
-        /** The key of the label: User ID */
-        String LABELS_favorite_log_user_code_search = "{labels.favorite_log_user_code_search}";
-
-        /** The key of the label: Search */
-        String LABELS_favorite_log_button_search = "{labels.favorite_log_button_search}";
-
-        /** The key of the label: Reset */
-        String LABELS_favorite_log_button_reset = "{labels.favorite_log_button_reset}";
-
-        /** The key of the label: URL */
-        String LABELS_favorite_log_url = "{labels.favorite_log_url}";
-
-        /** The key of the label: Submitted */
-        String LABELS_favorite_log_created_time = "{labels.favorite_log_created_time}";
-
-        /** The key of the label: Details */
-        String LABELS_favorite_log_link_details = "{labels.favorite_log_link_details}";
-
-        /** The key of the label: Delete */
-        String LABELS_favorite_log_link_delete = "{labels.favorite_log_link_delete}";
-
-        /** The key of the label: Delete All */
-        String LABELS_favorite_log_delete_all_link = "{labels.favorite_log_delete_all_link}";
-
-        /** The key of the label: Do you want to delete it? */
-        String LABELS_favorite_log_delete_all_confirmation = "{labels.favorite_log_delete_all_confirmation}";
-
-        /** The key of the label: Download (CSV) */
-        String LABELS_favorite_log_download_csv = "{labels.favorite_log_download_csv}";
-
-        /** The key of the label: Term */
-        String LABELS_favorite_log_search_term = "{labels.favorite_log_search_term}";
-
-        /** The key of the label: Details */
-        String LABELS_favorite_log_title_confirm = "{labels.favorite_log_title_confirm}";
-
-        /** The key of the label: ID */
-        String LABELS_favorite_log_id = "{labels.favorite_log_id}";
-
-        /** The key of the label: Managed Jobs */
-        String LABELS_scheduledjob_configuration = "{labels.scheduledjob_configuration}";
-
-        /** The key of the label: Jobs */
-        String LABELS_scheduledjob_title_details = "{labels.scheduledjob_title_details}";
-
-        /** The key of the label: Confirm */
-        String LABELS_scheduledjob_button_confirm = "{labels.scheduledjob_button_confirm}";
-
-        /** The key of the label: Name */
-        String LABELS_scheduledjob_name = "{labels.scheduledjob_name}";
-
-        /** The key of the label: Target */
-        String LABELS_scheduledjob_target = "{labels.scheduledjob_target}";
-
-        /** The key of the label: Status */
-        String LABELS_scheduledjob_status = "{labels.scheduledjob_status}";
-
-        /** The key of the label: Schedule */
-        String LABELS_scheduledjob_cronExpression = "{labels.scheduledjob_cronExpression}";
-
-        /** The key of the label: Executor */
-        String LABELS_scheduledjob_scriptType = "{labels.scheduledjob_scriptType}";
-
-        /** The key of the label: Script */
-        String LABELS_scheduledjob_scriptData = "{labels.scheduledjob_scriptData}";
-
-        /** The key of the label: Logging */
-        String LABELS_scheduledjob_jobLogging = "{labels.scheduledjob_jobLogging}";
-
-        /** The key of the label: Crawler Job */
-        String LABELS_scheduledjob_crawler = "{labels.scheduledjob_crawler}";
-
-        /** The key of the label: Running */
-        String LABELS_scheduledjob_running = "{labels.scheduledjob_running}";
-
-        /** The key of the label: Active */
-        String LABELS_scheduledjob_active = "{labels.scheduledjob_active}";
-
-        /** The key of the label: - */
-        String LABELS_scheduledjob_nojob = "{labels.scheduledjob_nojob}";
-
-        /** The key of the label: Confirm Job */
-        String LABELS_scheduledjob_title_confirm = "{labels.scheduledjob_title_confirm}";
-
-        /** The key of the label: Create */
-        String LABELS_scheduledjob_button_create = "{labels.scheduledjob_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_scheduledjob_button_back = "{labels.scheduledjob_button_back}";
-
-        /** The key of the label: Update */
-        String LABELS_scheduledjob_button_update = "{labels.scheduledjob_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_scheduledjob_button_delete = "{labels.scheduledjob_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_scheduledjob_button_edit = "{labels.scheduledjob_button_edit}";
-
-        /** The key of the label: Start */
-        String LABELS_scheduledjob_button_start = "{labels.scheduledjob_button_start}";
-
-        /** The key of the label: Stop */
-        String LABELS_scheduledjob_button_stop = "{labels.scheduledjob_button_stop}";
-
-        /** The key of the label: Create New */
-        String LABELS_scheduledjob_link_create_new = "{labels.scheduledjob_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_scheduledjob_link_list = "{labels.scheduledjob_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_scheduledjob_link_create = "{labels.scheduledjob_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_scheduledjob_link_update = "{labels.scheduledjob_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_scheduledjob_link_confirm = "{labels.scheduledjob_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_scheduledjob_link_details = "{labels.scheduledjob_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_scheduledjob_link_edit = "{labels.scheduledjob_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_scheduledjob_link_delete = "{labels.scheduledjob_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_scheduledjob_link_prev_page = "{labels.scheduledjob_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_scheduledjob_link_next_page = "{labels.scheduledjob_link_next_page}";
-
-        /** The key of the label: Back */
-        String LABELS_joblog_button_back = "{labels.joblog_button_back}";
-
-        /** The key of the label: Create */
-        String LABELS_joblog_button_create = "{labels.joblog_button_create}";
-
-        /** The key of the label: Delete */
-        String LABELS_joblog_button_delete = "{labels.joblog_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_joblog_button_edit = "{labels.joblog_button_edit}";
-
-        /** The key of the label: Update */
-        String LABELS_joblog_button_update = "{labels.joblog_button_update}";
-
-        /** The key of the label: Job Log */
-        String LABELS_joblog_configuration = "{labels.joblog_configuration}";
-
-        /** The key of the label: End Time */
-        String LABELS_joblog_endTime = "{labels.joblog_endTime}";
-
-        /** The key of the label: Job Log */
-        String LABELS_joblog_jobLogging = "{labels.joblog_jobLogging}";
-
-        /** The key of the label: Name */
-        String LABELS_joblog_jobName = "{labels.joblog_jobName}";
-
-        /** The key of the label: Status */
-        String LABELS_joblog_jobStatus = "{labels.joblog_jobStatus}";
-
-        /** The key of the label: Confirm */
-        String LABELS_joblog_link_confirm = "{labels.joblog_link_confirm}";
-
-        /** The key of the label: Create New */
-        String LABELS_joblog_link_create = "{labels.joblog_link_create}";
-
-        /** The key of the label: Create New */
-        String LABELS_joblog_link_create_new = "{labels.joblog_link_create_new}";
-
-        /** The key of the label: Delete */
-        String LABELS_joblog_link_delete = "{labels.joblog_link_delete}";
-
-        /** The key of the label: Details */
-        String LABELS_joblog_link_details = "{labels.joblog_link_details}";
-
-        /** The key of the label: List */
-        String LABELS_joblog_link_list = "{labels.joblog_link_list}";
-
-        /** The key of the label: Next */
-        String LABELS_joblog_link_next_page = "{labels.joblog_link_next_page}";
-
-        /** The key of the label: Prev */
-        String LABELS_joblog_link_prev_page = "{labels.joblog_link_prev_page}";
-
-        /** The key of the label: Edit */
-        String LABELS_joblog_link_update = "{labels.joblog_link_update}";
-
-        /** The key of the label: Script */
-        String LABELS_joblog_scriptData = "{labels.joblog_scriptData}";
-
-        /** The key of the label: Result */
-        String LABELS_joblog_scriptResult = "{labels.joblog_scriptResult}";
-
-        /** The key of the label: Executor */
-        String LABELS_joblog_scriptType = "{labels.joblog_scriptType}";
-
-        /** The key of the label: Start Time */
-        String LABELS_joblog_startTime = "{labels.joblog_startTime}";
-
-        /** The key of the label: Target */
-        String LABELS_joblog_target = "{labels.joblog_target}";
-
-        /** The key of the label: Confirm Job Log */
-        String LABELS_joblog_title_confirm = "{labels.joblog_title_confirm}";
-
-        /** The key of the label: Job Log Details */
-        String LABELS_joblog_title_details = "{labels.joblog_title_details}";
-
-        /** The key of the label: Job Log List */
-        String LABELS_joblog_title_list = "{labels.joblog_title_list}";
-
-        /** The key of the label: Delete All */
-        String LABELS_joblog_delete_all_link = "{labels.joblog_delete_all_link}";
-
-        /** The key of the label: Do you want to delete all? */
-        String LABELS_joblog_delete_all_confirmation = "{labels.joblog_delete_all_confirmation}";
-
-        /** The key of the label: Dictionary List */
-        String LABELS_dict_configuration = "{labels.dict_configuration}";
-
-        /** The key of the label: Dictionary List */
-        String LABELS_dict_list_title = "{labels.dict_list_title}";
-
-        /** The key of the label: Dictionaries */
-        String LABELS_dict_list_link = "{labels.dict_list_link}";
-
-        /** The key of the label: Name */
-        String LABELS_dictionary_name = "{labels.dictionary_name}";
-
-        /** The key of the label: Type */
-        String LABELS_dictionary_type = "{labels.dictionary_type}";
-
-        /** The key of the label: Details */
-        String LABELS_dict_link_details = "{labels.dict_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_dict_link_edit = "{labels.dict_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_dict_link_delete = "{labels.dict_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_dict_link_prev_page = "{labels.dict_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_dict_link_next_page = "{labels.dict_link_next_page}";
-
-        /** The key of the label: Back */
-        String LABELS_dict_button_back = "{labels.dict_button_back}";
-
-        /** The key of the label: Synonym List */
-        String LABELS_dict_synonym_configuration = "{labels.dict_synonym_configuration}";
-
-        /** The key of the label: Synonym List */
-        String LABELS_dict_synonym_title = "{labels.dict_synonym_title}";
-
-        /** The key of the label: List */
-        String LABELS_dict_synonym_list_link = "{labels.dict_synonym_list_link}";
-
-        /** The key of the label: Create New */
-        String LABELS_dict_synonym_link_create = "{labels.dict_synonym_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_dict_synonym_link_update = "{labels.dict_synonym_link_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_dict_synonym_link_delete = "{labels.dict_synonym_link_delete}";
-
-        /** The key of the label: Confirm */
-        String LABELS_dict_synonym_link_confirm = "{labels.dict_synonym_link_confirm}";
-
-        /** The key of the label: Download */
-        String LABELS_dict_synonym_link_download = "{labels.dict_synonym_link_download}";
-
-        /** The key of the label: Upload */
-        String LABELS_dict_synonym_link_upload = "{labels.dict_synonym_link_upload}";
-
-        /** The key of the label: Source */
-        String LABELS_dict_synonym_source = "{labels.dict_synonym_source}";
-
-        /** The key of the label: Target */
-        String LABELS_dict_synonym_target = "{labels.dict_synonym_target}";
-
-        /** The key of the label: Create */
-        String LABELS_dict_synonym_button_create = "{labels.dict_synonym_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_dict_synonym_button_back = "{labels.dict_synonym_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_dict_synonym_button_confirm = "{labels.dict_synonym_button_confirm}";
-
-        /** The key of the label: Edit */
-        String LABELS_dict_synonym_button_edit = "{labels.dict_synonym_button_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_dict_synonym_button_delete = "{labels.dict_synonym_button_delete}";
-
-        /** The key of the label: Update */
-        String LABELS_dict_synonym_button_update = "{labels.dict_synonym_button_update}";
-
-        /** The key of the label: Download */
-        String LABELS_dict_synonym_button_download = "{labels.dict_synonym_button_download}";
-
-        /** The key of the label: Upload */
-        String LABELS_dict_synonym_button_upload = "{labels.dict_synonym_button_upload}";
-
-        /** The key of the label: Synonym File */
-        String LABELS_dict_synonym_file = "{labels.dict_synonym_file}";
-
-        /** The key of the label: UserDict List */
-        String LABELS_dict_userdict_configuration = "{labels.dict_userdict_configuration}";
-
-        /** The key of the label: UserDict List */
-        String LABELS_dict_userdict_title = "{labels.dict_userdict_title}";
-
-        /** The key of the label: List */
-        String LABELS_dict_userdict_list_link = "{labels.dict_userdict_list_link}";
-
-        /** The key of the label: Create New */
-        String LABELS_dict_userdict_link_create = "{labels.dict_userdict_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_dict_userdict_link_update = "{labels.dict_userdict_link_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_dict_userdict_link_delete = "{labels.dict_userdict_link_delete}";
-
-        /** The key of the label: Confirm */
-        String LABELS_dict_userdict_link_confirm = "{labels.dict_userdict_link_confirm}";
-
-        /** The key of the label: Download */
-        String LABELS_dict_userdict_link_download = "{labels.dict_userdict_link_download}";
-
-        /** The key of the label: Upload */
-        String LABELS_dict_userdict_link_upload = "{labels.dict_userdict_link_upload}";
-
-        /** The key of the label: Token */
-        String LABELS_dict_userdict_token = "{labels.dict_userdict_token}";
-
-        /** The key of the label: Segmentation */
-        String LABELS_dict_userdict_segmentation = "{labels.dict_userdict_segmentation}";
-
-        /** The key of the label: Reading */
-        String LABELS_dict_userdict_reading = "{labels.dict_userdict_reading}";
-
-        /** The key of the label: POS */
-        String LABELS_dict_userdict_pos = "{labels.dict_userdict_pos}";
-
-        /** The key of the label: Create */
-        String LABELS_dict_userdict_button_create = "{labels.dict_userdict_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_dict_userdict_button_back = "{labels.dict_userdict_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_dict_userdict_button_confirm = "{labels.dict_userdict_button_confirm}";
-
-        /** The key of the label: Edit */
-        String LABELS_dict_userdict_button_edit = "{labels.dict_userdict_button_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_dict_userdict_button_delete = "{labels.dict_userdict_button_delete}";
-
-        /** The key of the label: Update */
-        String LABELS_dict_userdict_button_update = "{labels.dict_userdict_button_update}";
-
-        /** The key of the label: Download */
-        String LABELS_dict_userdict_button_download = "{labels.dict_userdict_button_download}";
-
-        /** The key of the label: Upload */
-        String LABELS_dict_userdict_button_upload = "{labels.dict_userdict_button_upload}";
-
-        /** The key of the label: UserDict File */
-        String LABELS_dict_userdict_file = "{labels.dict_userdict_file}";
-
-        /** The key of the label: Doc Boost */
-        String LABELS_boost_document_rule_configuration = "{labels.boost_document_rule_configuration}";
-
-        /** The key of the label: Doc Boost */
-        String LABELS_boost_document_rule_title_list = "{labels.boost_document_rule_title_list}";
-
-        /** The key of the label: Confirm Doc Boost */
-        String LABELS_boost_document_rule_title_confirm = "{labels.boost_document_rule_title_confirm}";
-
-        /** The key of the label: Doc Boost */
-        String LABELS_boost_document_rule_title_details = "{labels.boost_document_rule_title_details}";
-
-        /** The key of the label: List */
-        String LABELS_boost_document_rule_link_list = "{labels.boost_document_rule_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_boost_document_rule_link_create_new = "{labels.boost_document_rule_link_create_new}";
-
-        /** The key of the label: Details */
-        String LABELS_boost_document_rule_link_details = "{labels.boost_document_rule_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_boost_document_rule_link_edit = "{labels.boost_document_rule_link_edit}";
-
-        /** The key of the label: Prev */
-        String LABELS_boost_document_rule_link_prev_page = "{labels.boost_document_rule_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_boost_document_rule_link_next_page = "{labels.boost_document_rule_link_next_page}";
-
-        /** The key of the label: Create */
-        String LABELS_boost_document_rule_link_create = "{labels.boost_document_rule_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_boost_document_rule_link_update = "{labels.boost_document_rule_link_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_boost_document_rule_link_delete = "{labels.boost_document_rule_link_delete}";
-
-        /** The key of the label: Details */
-        String LABELS_boost_document_rule_link_confirm = "{labels.boost_document_rule_link_confirm}";
-
-        /** The key of the label: Create */
-        String LABELS_boost_document_rule_button_create = "{labels.boost_document_rule_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_boost_document_rule_button_back = "{labels.boost_document_rule_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_boost_document_rule_button_confirm = "{labels.boost_document_rule_button_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_boost_document_rule_button_update = "{labels.boost_document_rule_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_boost_document_rule_button_delete = "{labels.boost_document_rule_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_boost_document_rule_button_edit = "{labels.boost_document_rule_button_edit}";
-
-        /** The key of the label: Condition */
-        String LABELS_boost_document_rule_list_url_expr = "{labels.boost_document_rule_list_url_expr}";
-
-        /** The key of the label: Condition */
-        String LABELS_boost_document_rule_url_expr = "{labels.boost_document_rule_url_expr}";
-
-        /** The key of the label: Boost Expr */
-        String LABELS_boost_document_rule_boost_expr = "{labels.boost_document_rule_boost_expr}";
-
-        /** The key of the label: Sort Order */
-        String LABELS_boost_document_rule_sort_order = "{labels.boost_document_rule_sort_order}";
-
-        /** The key of the label: Additional Word */
-        String LABELS_suggest_elevate_word_configuration = "{labels.suggest_elevate_word_configuration}";
-
-        /** The key of the label: Additional Word */
-        String LABELS_suggest_elevate_word_title_list = "{labels.suggest_elevate_word_title_list}";
-
-        /** The key of the label: Confirm Additional Word */
-        String LABELS_suggest_elevate_word_title_confirm = "{labels.suggest_elevate_word_title_confirm}";
-
-        /** The key of the label: Additional Word */
-        String LABELS_suggest_elevate_word_title_details = "{labels.suggest_elevate_word_title_details}";
-
-        /** The key of the label: List */
-        String LABELS_suggest_elevate_word_link_list = "{labels.suggest_elevate_word_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_suggest_elevate_word_link_create_new = "{labels.suggest_elevate_word_link_create_new}";
-
-        /** The key of the label: Details */
-        String LABELS_suggest_elevate_word_link_details = "{labels.suggest_elevate_word_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_suggest_elevate_word_link_edit = "{labels.suggest_elevate_word_link_edit}";
-
-        /** The key of the label: Prev */
-        String LABELS_suggest_elevate_word_link_prev_page = "{labels.suggest_elevate_word_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_suggest_elevate_word_link_next_page = "{labels.suggest_elevate_word_link_next_page}";
-
-        /** The key of the label: Create */
-        String LABELS_suggest_elevate_word_link_create = "{labels.suggest_elevate_word_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_suggest_elevate_word_link_update = "{labels.suggest_elevate_word_link_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_suggest_elevate_word_link_delete = "{labels.suggest_elevate_word_link_delete}";
-
-        /** The key of the label: Details */
-        String LABELS_suggest_elevate_word_link_confirm = "{labels.suggest_elevate_word_link_confirm}";
-
-        /** The key of the label: Download */
-        String LABELS_suggest_elevate_word_link_download = "{labels.suggest_elevate_word_link_download}";
-
-        /** The key of the label: Upload */
-        String LABELS_suggest_elevate_word_link_upload = "{labels.suggest_elevate_word_link_upload}";
-
-        /** The key of the label: Create */
-        String LABELS_suggest_elevate_word_button_create = "{labels.suggest_elevate_word_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_suggest_elevate_word_button_back = "{labels.suggest_elevate_word_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_suggest_elevate_word_button_confirm = "{labels.suggest_elevate_word_button_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_suggest_elevate_word_button_update = "{labels.suggest_elevate_word_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_suggest_elevate_word_button_delete = "{labels.suggest_elevate_word_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_suggest_elevate_word_button_edit = "{labels.suggest_elevate_word_button_edit}";
-
-        /** The key of the label: Download */
-        String LABELS_suggest_elevate_word_button_download = "{labels.suggest_elevate_word_button_download}";
-
-        /** The key of the label: Upload */
-        String LABELS_suggest_elevate_word_button_upload = "{labels.suggest_elevate_word_button_upload}";
-
-        /** The key of the label: Word */
-        String LABELS_suggest_elevate_word_list_suggest_word = "{labels.suggest_elevate_word_list_suggest_word}";
-
-        /** The key of the label: Word */
-        String LABELS_suggest_elevate_word_suggest_word = "{labels.suggest_elevate_word_suggest_word}";
-
-        /** The key of the label: Reading */
-        String LABELS_suggest_elevate_word_reading = "{labels.suggest_elevate_word_reading}";
-
-        /** The key of the label: Role */
-        String LABELS_suggest_elevate_word_target_role = "{labels.suggest_elevate_word_target_role}";
-
-        /** The key of the label: Label */
-        String LABELS_suggest_elevate_word_target_label = "{labels.suggest_elevate_word_target_label}";
-
-        /** The key of the label: Boost */
-        String LABELS_suggest_elevate_word_boost = "{labels.suggest_elevate_word_boost}";
-
-        /** The key of the label: Additional Word File */
-        String LABELS_suggest_elevate_word_file = "{labels.suggest_elevate_word_file}";
-
-        /** The key of the label: Bad Word */
-        String LABELS_suggest_bad_word_configuration = "{labels.suggest_bad_word_configuration}";
-
-        /** The key of the label: Bad Word */
-        String LABELS_suggest_bad_word_title_list = "{labels.suggest_bad_word_title_list}";
-
-        /** The key of the label: Confirm Bad Word */
-        String LABELS_suggest_bad_word_title_confirm = "{labels.suggest_bad_word_title_confirm}";
-
-        /** The key of the label: Bad Word */
-        String LABELS_suggest_bad_word_title_details = "{labels.suggest_bad_word_title_details}";
-
-        /** The key of the label: List */
-        String LABELS_suggest_bad_word_link_list = "{labels.suggest_bad_word_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_suggest_bad_word_link_create_new = "{labels.suggest_bad_word_link_create_new}";
-
-        /** The key of the label: Details */
-        String LABELS_suggest_bad_word_link_details = "{labels.suggest_bad_word_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_suggest_bad_word_link_edit = "{labels.suggest_bad_word_link_edit}";
-
-        /** The key of the label: Prev */
-        String LABELS_suggest_bad_word_link_prev_page = "{labels.suggest_bad_word_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_suggest_bad_word_link_next_page = "{labels.suggest_bad_word_link_next_page}";
-
-        /** The key of the label: Create */
-        String LABELS_suggest_bad_word_link_create = "{labels.suggest_bad_word_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_suggest_bad_word_link_update = "{labels.suggest_bad_word_link_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_suggest_bad_word_link_delete = "{labels.suggest_bad_word_link_delete}";
-
-        /** The key of the label: Details */
-        String LABELS_suggest_bad_word_link_confirm = "{labels.suggest_bad_word_link_confirm}";
-
-        /** The key of the label: Download */
-        String LABELS_suggest_bad_word_link_download = "{labels.suggest_bad_word_link_download}";
-
-        /** The key of the label: Upload */
-        String LABELS_suggest_bad_word_link_upload = "{labels.suggest_bad_word_link_upload}";
-
-        /** The key of the label: Create */
-        String LABELS_suggest_bad_word_button_create = "{labels.suggest_bad_word_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_suggest_bad_word_button_back = "{labels.suggest_bad_word_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_suggest_bad_word_button_confirm = "{labels.suggest_bad_word_button_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_suggest_bad_word_button_update = "{labels.suggest_bad_word_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_suggest_bad_word_button_delete = "{labels.suggest_bad_word_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_suggest_bad_word_button_edit = "{labels.suggest_bad_word_button_edit}";
-
-        /** The key of the label: Download */
-        String LABELS_suggest_bad_word_button_download = "{labels.suggest_bad_word_button_download}";
-
-        /** The key of the label: Upload */
-        String LABELS_suggest_bad_word_button_upload = "{labels.suggest_bad_word_button_upload}";
-
-        /** The key of the label: Bad Word */
-        String LABELS_suggest_bad_word_list_suggest_word = "{labels.suggest_bad_word_list_suggest_word}";
-
-        /** The key of the label: Bad Word */
-        String LABELS_suggest_bad_word_suggest_word = "{labels.suggest_bad_word_suggest_word}";
-
-        /** The key of the label: Role */
-        String LABELS_suggest_bad_word_target_role = "{labels.suggest_bad_word_target_role}";
-
-        /** The key of the label: Label */
-        String LABELS_suggest_bad_word_target_label = "{labels.suggest_bad_word_target_label}";
-
-        /** The key of the label: Bad Word File */
-        String LABELS_suggest_bad_word_file = "{labels.suggest_bad_word_file}";
-
-        /** The key of the label: User */
-        String LABELS_user_configuration = "{labels.user_configuration}";
-
-        /** The key of the label: Create New */
-        String LABELS_user_link_create_new = "{labels.user_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_user_link_list = "{labels.user_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_user_link_create = "{labels.user_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_user_link_update = "{labels.user_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_user_link_confirm = "{labels.user_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_user_link_details = "{labels.user_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_user_link_edit = "{labels.user_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_user_link_delete = "{labels.user_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_user_link_prev_page = "{labels.user_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_user_link_next_page = "{labels.user_link_next_page}";
-
-        /** The key of the label: Name */
-        String LABELS_user_list_name = "{labels.user_list_name}";
-
-        /** The key of the label: Name */
-        String LABELS_user_name = "{labels.user_name}";
-
-        /** The key of the label: Password */
-        String LABELS_user_password = "{labels.user_password}";
-
-        /** The key of the label: Confirm */
-        String LABELS_user_confirm_password = "{labels.user_confirm_password}";
-
-        /** The key of the label: Role */
-        String LABELS_user_role = "{labels.user_role}";
-
-        /** The key of the label: Group */
-        String LABELS_user_group = "{labels.user_group}";
-
-        /** The key of the label: User */
-        String LABELS_user_title_details = "{labels.user_title_details}";
-
-        /** The key of the label: Create */
-        String LABELS_user_button_create = "{labels.user_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_user_button_back = "{labels.user_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_user_button_confirm = "{labels.user_button_confirm}";
-
-        /** The key of the label: Confirm User */
-        String LABELS_user_title_confirm = "{labels.user_title_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_user_button_update = "{labels.user_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_user_button_delete = "{labels.user_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_user_button_edit = "{labels.user_button_edit}";
-
-        /** The key of the label: Role */
-        String LABELS_role_configuration = "{labels.role_configuration}";
-
-        /** The key of the label: Create New */
-        String LABELS_role_link_create_new = "{labels.role_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_role_link_list = "{labels.role_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_role_link_create = "{labels.role_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_role_link_update = "{labels.role_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_role_link_confirm = "{labels.role_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_role_link_details = "{labels.role_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_role_link_edit = "{labels.role_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_role_link_delete = "{labels.role_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_role_link_prev_page = "{labels.role_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_role_link_next_page = "{labels.role_link_next_page}";
-
-        /** The key of the label: Name */
-        String LABELS_role_list_name = "{labels.role_list_name}";
-
-        /** The key of the label: Name */
-        String LABELS_role_name = "{labels.role_name}";
-
-        /** The key of the label: Role */
-        String LABELS_role_title_details = "{labels.role_title_details}";
-
-        /** The key of the label: Create */
-        String LABELS_role_button_create = "{labels.role_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_role_button_back = "{labels.role_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_role_button_confirm = "{labels.role_button_confirm}";
-
-        /** The key of the label: Confirm Role */
-        String LABELS_role_title_confirm = "{labels.role_title_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_role_button_update = "{labels.role_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_role_button_delete = "{labels.role_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_role_button_edit = "{labels.role_button_edit}";
-
-        /** The key of the label: group */
-        String LABELS_group_configuration = "{labels.group_configuration}";
-
-        /** The key of the label: Create New */
-        String LABELS_group_link_create_new = "{labels.group_link_create_new}";
-
-        /** The key of the label: List */
-        String LABELS_group_link_list = "{labels.group_link_list}";
-
-        /** The key of the label: Create New */
-        String LABELS_group_link_create = "{labels.group_link_create}";
-
-        /** The key of the label: Edit */
-        String LABELS_group_link_update = "{labels.group_link_update}";
-
-        /** The key of the label: Details */
-        String LABELS_group_link_confirm = "{labels.group_link_confirm}";
-
-        /** The key of the label: Details */
-        String LABELS_group_link_details = "{labels.group_link_details}";
-
-        /** The key of the label: Edit */
-        String LABELS_group_link_edit = "{labels.group_link_edit}";
-
-        /** The key of the label: Delete */
-        String LABELS_group_link_delete = "{labels.group_link_delete}";
-
-        /** The key of the label: Prev */
-        String LABELS_group_link_prev_page = "{labels.group_link_prev_page}";
-
-        /** The key of the label: Next */
-        String LABELS_group_link_next_page = "{labels.group_link_next_page}";
-
-        /** The key of the label: Name */
-        String LABELS_group_list_name = "{labels.group_list_name}";
-
-        /** The key of the label: Name */
-        String LABELS_group_name = "{labels.group_name}";
-
-        /** The key of the label: Group */
-        String LABELS_group_title_details = "{labels.group_title_details}";
-
-        /** The key of the label: Create */
-        String LABELS_group_button_create = "{labels.group_button_create}";
-
-        /** The key of the label: Back */
-        String LABELS_group_button_back = "{labels.group_button_back}";
-
-        /** The key of the label: Confirm */
-        String LABELS_group_button_confirm = "{labels.group_button_confirm}";
-
-        /** The key of the label: Confirm Group */
-        String LABELS_group_title_confirm = "{labels.group_title_confirm}";
-
-        /** The key of the label: Update */
-        String LABELS_group_button_update = "{labels.group_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_group_button_delete = "{labels.group_button_delete}";
-
-        /** The key of the label: Edit */
-        String LABELS_group_button_edit = "{labels.group_button_edit}";
-
-        /** The key of the label: Roles */
-        String LABELS_ROLES = "{labels.roles}";
-
-        /** The key of the label: Groups */
-        String LABELS_GROUPS = "{labels.groups}";
-
-        /** The key of the label: Create */
-        String LABELS_crud_button_create = "{labels.crud_button_create}";
-
-        /** The key of the label: Update */
-        String LABELS_crud_button_update = "{labels.crud_button_update}";
-
-        /** The key of the label: Delete */
-        String LABELS_crud_button_delete = "{labels.crud_button_delete}";
-
-        /** The key of the label: Back */
-        String LABELS_crud_button_back = "{labels.crud_button_back}";
-
-        /** The key of the label: Edit */
-        String LABELS_crud_button_edit = "{labels.crud_button_edit}";
-
-        /** The key of the label: Confirm */
-        String LABELS_crud_button_confirm = "{labels.crud_button_confirm}";
-
-        /** The key of the label: Search */
-        String LABELS_crud_button_search = "{labels.crud_button_search}";
-
-        /** The key of the label: Reset */
-        String LABELS_crud_button_reset = "{labels.crud_button_reset}";
-
-        /** The key of the label: Create New */
-        String LABELS_crud_link_create_new = "{labels.crud_link_create_new}";
-
-        /** The key of the label: Delete */
-        String LABELS_crud_link_delete = "{labels.crud_link_delete}";
-
-        /** The key of the label: Back */
-        String LABELS_crud_link_back = "{labels.crud_link_back}";
-
-        /** The key of the label: Edit */
-        String LABELS_crud_link_edit = "{labels.crud_link_edit}";
-
-        /** The key of the label: Next */
-        String LABELS_crud_link_next_page = "{labels.crud_link_next_page}";
-
-        /** The key of the label: Back */
-        String LABELS_crud_link_prev_page = "{labels.crud_link_prev_page}";
-
-        /** The key of the label: Details */
-        String LABELS_crud_title_details = "{labels.crud_title_details}";
-
-        /** The key of the label: Confirmation */
-        String LABELS_crud_title_confirm = "{labels.crud_title_confirm}";
-
-        /** The key of the label:  */
-        String LABELS_LABEL_TYPE_IDS = "{labels.labelTypeIds}";
-    }
 }

+ 0 - 7
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

@@ -3162,11 +3162,4 @@ public class FessMessages extends FessLabels {
         add(property, new ActionMessage(SUCCESS_crud_delete_crud_table));
         return this;
     }
-
-    /**
-     * The definition of keys for labels.
-     * @author FreeGen
-     */
-    public static interface LabelKey extends FessLabels.LabelKey {
-    }
 }

+ 2 - 2
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

@@ -32,7 +32,7 @@ public interface FessEnv {
     /** The key of the configuration. e.g. [Test] */
     String MAIL_SUBJECT_TEST_PREFIX = "mail.subject.test.prefix";
 
-    /** The key of the configuration. e.g. returnpath@docksidestage.org */
+    /** The key of the configuration. e.g. root@localhost */
     String MAIL_RETURN_PATH = "mail.return.path";
 
     /**
@@ -150,7 +150,7 @@ public interface FessEnv {
 
     /**
      * Get the value for the key 'mail.return.path'. <br>
-     * The value is, e.g. returnpath@docksidestage.org <br>
+     * The value is, e.g. root@localhost <br>
      * comment: The common return path of all mail
      * @return The value of found property. (NotNull: if not found, exception but basically no way)
      */

+ 1 - 6
src/test/java/org/codelibs/fess/mylasta/FessActionDefTest.java

@@ -1,6 +1,7 @@
 package org.codelibs.fess.mylasta;
 
 import org.codelibs.fess.unit.UnitFessTestCase;
+import org.dbflute.utflute.core.document.DocumentGenerator;
 
 public class FessActionDefTest extends UnitFessTestCase {
 
@@ -32,15 +33,9 @@ public class FessActionDefTest extends UnitFessTestCase {
     // ===================================================================================
     //                                                                            Document
     //                                                                            ========
-    /*
     public void test_document() throws Exception {
         DocumentGenerator documentGenerator = new DocumentGenerator();
         documentGenerator.saveLastaDocMeta();
     }
-    */
 
-    public void test_dummy() throws Exception {
-        // TODO remove
-        assertTrue(true);
-    }
 }