Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for protwords (2.99 sec)

  1. src/main/resources/fess_message_de.properties

    errors.failed_to_upload_kuromoji_file = Fehler beim Hochladen einer Kuromoji-Datei.
    errors.failed_to_download_protwords_file = Fehler beim Herunterladen einer Protwords-Datei.
    errors.failed_to_upload_protwords_file = Fehler beim Hochladen einer Protwords-Datei.
    errors.failed_to_download_stopwords_file = Fehler beim Herunterladen einer Stopwords-Datei.
    errors.failed_to_upload_stopwords_file = Fehler beim Hochladen einer Stopwords-Datei.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/DictionaryItem.java

     */
    package org.codelibs.fess.dict;
    
    /**
     * Abstract base class for all dictionary items in the Fess search system.
     * Dictionary items are used to store entries in various dictionaries such as
     * synonyms, kuromoji, protwords, and stopwords dictionaries.
     *
     */
    public abstract class DictionaryItem {
        /** The unique identifier for this dictionary item */
        protected long id;
    
        /**
         * Default constructor for DictionaryItem.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/SearchForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.dict.protwords;
    
    import org.lastaflute.web.validation.Required;
    
    /**
     * The search form for Protected Words.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_it.properties

    errors.failed_to_upload_kuromoji_file = Impossibile caricare il file Kuromoji.
    errors.failed_to_download_protwords_file = Impossibile scaricare il file Protwords.
    errors.failed_to_upload_protwords_file = Impossibile caricare il file Protwords.
    errors.failed_to_download_stopwords_file = Impossibile scaricare il file delle stopwords.
    errors.failed_to_upload_stopwords_file = Impossibile caricare il file delle stopwords.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.dict.protwords;
    
    import org.codelibs.fess.app.web.CrudMode;
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_zh_TW.properties

    errors.failed_to_download_kuromoji_file = 下載Kuromoji檔案失敗。
    errors.failed_to_upload_kuromoji_file = 上傳Kuromoji檔案失敗。
    errors.failed_to_download_protwords_file = 下載Protwords檔案失敗。
    errors.failed_to_upload_protwords_file = 上傳Protwords檔案失敗。
    errors.failed_to_download_stopwords_file = 下載停用詞檔案失敗。
    errors.failed_to_upload_stopwords_file = 上傳停用詞檔案失敗。
    errors.failed_to_download_elevate_file = 下載提升詞檔案失敗。
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_zh_TW.properties

    labels.dict_kuromoji_reading=讀音
    labels.dict_kuromoji_pos=詞性
    labels.dict_kuromoji_button_download=下載
    labels.dict_kuromoji_button_upload=上傳
    labels.dict_kuromoji_file=Kuromoji檔案
    labels.dict_protwords_configuration=Protwords詞列表
    labels.dict_protwords_title=Protwords詞列表
    labels.dict_protwords_list_link=列表
    labels.dict_protwords_link_create=新建
    labels.dict_protwords_link_edit=編輯
    labels.dict_protwords_link_delete=刪除
    labels.dict_protwords_link_details=詳細資訊
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 43.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.dict.protwords;
    
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing protected words dictionary entries in the admin interface.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/UploadForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.dict.protwords;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form for uploading protected words files to the Fess search engine.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.properties

    labels.dict_kuromoji_pos=Part-of-speech
    labels.dict_kuromoji_button_download=Download
    labels.dict_kuromoji_button_upload=Upload
    labels.dict_kuromoji_file=Kuromoji File
    labels.dict_protwords_configuration=Protwords Word List
    labels.dict_protwords_title=Protwords Word List
    labels.dict_protwords_list_link=List
    labels.dict_protwords_link_create=Create New
    labels.dict_protwords_link_edit=Edit
    labels.dict_protwords_link_delete=Delete
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 44K bytes
    - Viewed (0)
Back to top