Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for links (1.98 sec)

  1. src/main/resources/fess_label_ja.properties

    labels.dict_list_title=辞書一覧
    labels.dict_list_link=辞書
    labels.dictionary_name=名前
    labels.dictionary_type=種類
    labels.dict_synonym_configuration=同義語一覧
    labels.dict_synonym_title=同義語一覧
    labels.dict_synonym_list_link=一覧
    labels.dict_synonym_link_create=新規作成
    labels.dict_synonym_link_edit=編集
    labels.dict_synonym_link_delete=削除
    labels.dict_synonym_link_details=詳細
    labels.dict_synonym_link_download=ダウンロード
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

        /** The key of the configuration. e.g. root@localhost */
        String MAIL_RETURN_PATH = "mail.return.path";
    
        /**
         * Get the value of property as {@link String}.
         * @param propertyKey The key of the property. (NotNull)
         * @return The value of found property. (NotNull: if not found, exception)
         * @throws ConfigPropertyNotFoundException When the property is not found.
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                while ((line = reader.readLine()) != null) {
                    // Remove comments
                    final String replacedLine = line.replaceAll("#.*$", StringUtil.EMPTY).trim();
    
                    // Skip empty lines or comment lines
                    if (replacedLine.length() == 0) {
                        if (updater != null) {
                            updater.write(line);
                        }
                        continue;
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_ru.properties

    labels.dict_kuromoji_list_link=List
    labels.dict_kuromoji_link_edit=Создать новый
    labels.dict_kuromoji_link_edit=Изменить
    labels.dict_kuromoji_link_delete=Удалить
    labels.dict_kuromoji_link_details=Details
    labels.dict_kuromoji_link_download=Download
    labels.dict_kuromoji_link_upload=Upload
    labels.dict_kuromoji_token=Token
    labels.dict_kuromoji_segmentation=Segmentation
    labels.dict_kuromoji_reading=Reading
    labels.dict_kuromoji_pos=POS
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    index.field.filename=filename
    index.field.thumbnail=thumbnail
    index.field.virtual_host=virtual_host
    response.field.content_title=content_title
    response.field.content_description=content_description
    response.field.url_link=url_link
    response.field.site_path=site_path
    response.max.title.length=50
    response.max.site.path.length=100
    response.highlight.content_title.enabled=true
    response.inline.mimetypes=application/pdf,text/plain
    
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  6. src/main/resources/fess_label_de.properties

    labels.dict_kuromoji_title=Kuromoji-Liste
    labels.dict_kuromoji_list_link=Liste
    labels.dict_kuromoji_link_create=Neu erstellen
    labels.dict_kuromoji_link_edit=Bearbeiten
    labels.dict_kuromoji_link_delete=Löschen
    labels.dict_kuromoji_link_details=Details
    labels.dict_kuromoji_link_download=Herunterladen
    labels.dict_kuromoji_link_upload=Hochladen
    labels.dict_kuromoji_token=Token
    labels.dict_kuromoji_segmentation=Segmentierung
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                    if (line.length() == 0 || line.charAt(0) == '#') {
                        if (updater != null) {
                            updater.write(line);
                        }
                        continue; // ignore empty lines and comments
                    }
    
                    String[] inputs;
                    String[] outputs;
    
                    final List<String> sides = split(line, "=>");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.dict_stemmeroverride_list_link	=	Liste
    labels.dict_stemmeroverride_link_create	=	Créer nouveau
    labels.dict_stemmeroverride_link_edit	=	Editer
    labels.dict_stemmeroverride_link_delete	=	Supprimer
    labels.dict_stemmeroverride_link_details	=	Détails
    labels.dict_stemmeroverride_link_download	=	Télécharger
    labels.dict_stemmeroverride_link_upload	=	Envoyer
    labels.dict_stemmeroverride_source	=	Source
    labels.dict_stemmeroverride_target	=	Cible
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/Constants.java

        public static final String LOGIN_REQUIRED_PROPERTY = "login.required";
    
        public static final String RESULT_COLLAPSED_PROPERTY = "result.collapsed";
    
        public static final String LOGIN_LINK_ENALBED_PROPERTY = "login.link.enabled";
    
        public static final String THUMBNAIL_ENALBED_PROPERTY = "thumbnail.enabled";
    
        public static final String IGNORE_FAILURE_TYPE_PROPERTY = "failure.ignoretype";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/main/config/openapi/openapi-user.yaml

                            timestamp:
                              type: string
                              format: date-time
                              example: "2017-10-09T22:28:56.000Z"
                            url_link:
                              type: string
                              example: "https://fess.codelibs.org/"
                            created:
                              type: string
                              format: date-time
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
Back to top