Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for translations (0.22 sec)

  1. docs/fr/docs/fastapi-people.md

    {% if people %}
    <div class="user-list user-list-center">
    {% for user in people.top_translations_reviewers[:50] %}
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  2. docs/em/docs/fastapi-people.md

    ---
    
    **๐Ÿ” ๐Ÿ‘จโ€๐Ÿ”ฌ** ๐Ÿ‘ถ ๐Ÿ‘ถ โœ”๏ธ ๐Ÿ“„ ๐Ÿ† ๐Ÿšฒ ๐Ÿ“จ โšช๏ธโžก๏ธ ๐ŸŽ, ๐Ÿšš ๐Ÿ”† ๐Ÿ“Ÿ, ๐Ÿงพ, &amp; โœด๏ธ, **โœ**.
    
    {% if people %}
    <div class="user-list user-list-center">
    {% for user in people.top_translations_reviewers[:50] %}
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  3. docs/ko/docs/help-fastapi.md

        - ํ•ด๋‹น ์„น์…˜์˜ ์‹œ์ž‘ ๋ถ€๋ถ„์— ๋งํฌ๋ฅผ ์ถ”๊ฐ€ํ–ˆ๋Š”์ง€ ํ™•์ธํ•˜์‹ญ์‹œ์˜ค.
    
      - ๋‹น์‹ ์˜ ์–ธ์–ด๋กœ [๋ฌธ์„œ ๋ฒˆ์—ญํ•˜๋Š”๋ฐ](https://github.com/tiangolo/fastapi/blob/master/docs/en/docs/contributing.md#translations){.internal-link target=_blank} ๊ธฐ์—ฌํ•  ๋•Œ.
    
        - ๋˜ํ•œ ๋‹ค๋ฅธ ์‚ฌ์šฉ์ž๊ฐ€ ๋งŒ๋“  ๋ฒˆ์—ญ์„ ๊ฒ€ํ† ํ•˜๋Š”๋ฐ ๋„์›€์„ ์ค„ ์ˆ˜๋„ ์žˆ์Šต๋‹ˆ๋‹ค.
    
      - ์ƒˆ๋กœ์šด ๋ฌธ์„œ์˜ ์„น์…˜์„ ์ œ์•ˆํ•  ๋•Œ.
    
      - ๊ธฐ์กด ๋ฌธ์ œ/๋ฒ„๊ทธ๋ฅผ ์ˆ˜์ •ํ•  ๋•Œ.
    
      - ์ƒˆ๋กœ์šด feature๋ฅผ ์ถ”๊ฐ€ํ•  ๋•Œ.
    
      ## ์ฑ„ํŒ…์— ์ฐธ์—ฌํ•˜์‹ญ์‹œ์˜ค
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 22:36:57 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  4. docs/zh/docs/fastapi-people.md

    ๆˆ‘ๅชไผš่ฏดๅฐ‘ๆ•ฐๅ‡ ็ง่ฏญ่จ€๏ผˆ่€Œไธ”่ฟ˜ไธๆ˜ฏๅพˆๆตๅˆฉ ๐Ÿ˜…๏ผ‰ใ€‚ๆ‰€ไปฅ่ฟ™ไบ›่ฏ„ๅฎก่€…ไปฌๅ…ทๅค‡[่ƒฝๅŠ›ๅŽปๆ‰นๅ‡†ๆ–‡ๆกฃ็ฟป่ฏ‘](contributing.md#_8){.internal-link target=_blank}ใ€‚ๅฆ‚ๆžœๆฒกๆœ‰ไป–ไปฌ๏ผŒๅฐฑไธไผšๆœ‰ๅคš่ฏญ่จ€ๆ–‡ๆกฃใ€‚
    
    {% if people %}
    <div class="user-list user-list-center">
    {% for user in people.top_translations_reviewers[:50] %}
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 25 17:09:48 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  5. docs/missing-translation.md

    !!! warning
        The current page still doesn't have a translation for this language.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 213 bytes
    - Viewed (0)
  6. docs_src/sql_databases_peewee/sql_app/database.py

    from contextvars import ContextVar
    
    import peewee
    
    DATABASE_NAME = "test.db"
    db_state_default = {"closed": None, "conn": None, "ctx": None, "transactions": None}
    db_state = ContextVar("db_state", default=db_state_default.copy())
    
    
    class PeeweeConnectionState(peewee._ConnectionState):
        def __init__(self, **kwargs):
            super().__setattr__("_state", db_state)
            super().__init__(**kwargs)
    
        def __setattr__(self, name, value):
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 662 bytes
    - Viewed (0)
  7. scripts/mkdocs_hooks.py

    non_traslated_sections = [
        "reference/",
        "release-notes.md",
    ]
    
    
    @lru_cache
    def get_missing_translation_content(docs_dir: str) -> str:
        docs_dir_path = Path(docs_dir)
        missing_translation_path = docs_dir_path.parent.parent / "missing-translation.md"
        return missing_translation_path.read_text(encoding="utf-8")
    
    
    @lru_cache
    def get_mkdocs_material_langs() -> List[str]:
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Oct 24 20:26:06 GMT 2023
    - 5.1K bytes
    - Viewed (0)
Back to top