Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,537 for LANGUAGE (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * @param language language of the files contained in the directory to add
         * @param directory the directory to add if not already present in the source
         *
         * @see #getEnabledSourceRoots(ProjectScope, Language)
         *
         * @since 4.0.0
         */
        public void addSourceRoot(@Nonnull ProjectScope scope, @Nonnull Language language, @Nonnull Path directory) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  2. .github/workflows/translate.yml

          - name: Export Language Codes
            id: show-langs
            run: |
              echo "langs=$(python ./scripts/translate.py llm-translatable-json)" >> $GITHUB_OUTPUT
              echo "commands=$(python ./scripts/translate.py commands-json)" >> $GITHUB_OUTPUT
            env:
              LANGUAGE: ${{ github.event.inputs.language }}
              COMMAND: ${{ github.event.inputs.command }}
    
      translate:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:48:45 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapNews.java

        }
    
        /**
         * Gets the publication language.
         * @return the publication language
         */
        public String getPublicationLanguage() {
            return publicationLanguage;
        }
    
        /**
         * Sets the publication language.
         * @param publicationLanguage the publication language to set
         */
        public void setPublicationLanguage(final String publicationLanguage) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  4. pyproject.toml

        "Intended Audience :: Developers",
        "Programming Language :: Python :: 3 :: Only",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Programming Language :: Python :: 3.13",
        "Programming Language :: Python :: 3.14",
        "Topic :: Internet :: WWW/HTTP :: HTTP Servers",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. docs/pt/llm-prompt.md

    ### Target language
    
    Translate to Portuguese (Português).
    
    Language code: pt.
    
    For instructions or titles in imperative, keep them in imperative, for example "Import FastAPI" to "Importe o FastAPI".
    
    Keep existing translations as they are if the term is already translated.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  6. docs/uk/llm-prompt.md

    ### Target language
    
    Translate to Ukrainian (українська).
    
    Language code: uk.
    
    ### Grammar and tone
    
    1) Use polite/formal address consistent with existing Ukrainian docs (use “ви/ваш”).
    2) Keep the tone concise and technical.
    
    ### Headings
    
    1) Follow existing Ukrainian heading style; keep headings short and instructional.
    2) Do not add trailing punctuation to headings.
    
    ### Quotes
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 19 12:51:53 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  7. docs/zh/llm-prompt.md

    ### Target language
    
    Translate to Simplified Chinese (简体中文).
    
    Language code: zh.
    
    ### Grammar and tone
    
    1) Use clear, concise technical Chinese consistent with existing docs.
    2) Address the reader naturally (commonly using “你/你的”).
    
    ### Headings
    
    1) Follow existing Simplified Chinese heading style (short and descriptive).
    2) Do not add trailing punctuation to headings.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:49:08 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  8. docs/en/docs/contributing.md

    #### Request a New Language
    
    Let's say that you want to request translations for a language that is not yet translated, not even some pages. For example, Latin.
    
    If there is no discussion for that language, you can start by requesting the new language. For that, you can follow these steps:
    
    * Create a new discussion following the template.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Sep 21 11:29:04 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  9. scripts/translate.py

        print(f"Updating outdated translations for {language}")
        update_outdated(language=language)
        print(f"Adding missing translations for {language}")
        add_missing(language=language)
        print(f"Done updating and adding for {language}")
    
    
    @app.command()
    def make_pr(
        *,
        language: Annotated[str | None, typer.Option(envvar="LANGUAGE")] = None,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

                } catch (final IllegalArgumentException e) {
                    return analyze(text, field, lang);
                }
            }
        }
    
        /**
         * Check if the language is supported.
         * @param lang Language
         * @return True if the language is supported
         */
        public static boolean isSupportedLanguage(final String lang) {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 26.5K bytes
    - Viewed (0)
Back to top