Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌐 Add German translation for docs/de/docs/reference/background.md #10820

Merged

Conversation

nilslindemann
Copy link
Contributor

@nilslindemann nilslindemann commented Dec 23, 2023

← reference/apirouter.md (#10819)
β†’ reference/request.md (#10821)

German translation progress

* In sync with current docs/en/docs/reference/background.md
* Google Translate used
* Manually checked
* Checked for errors using LanguageTool
@tiangolo
Copy link
Member

πŸ“ Docs preview for commit 8f17dda at: https://e3c02c15.fastapitiangolo.pages.dev

@tiangolo
Copy link
Member

πŸ“ Docs preview for commit b86599c at: https://34ae4a90.fastapitiangolo.pages.dev

@alejsdev alejsdev added lang-all Translations awaiting-review lang-de German translations labels Jan 8, 2024
Copy link

@dpinezich dpinezich left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Again, only small (optional) things πŸ‘

docs/de/docs/reference/background.md Outdated Show resolved Hide resolved
docs/de/docs/reference/background.md Outdated Show resolved Hide resolved
@nilslindemann
Copy link
Contributor Author

nilslindemann commented Feb 20, 2024

@dpinezich Danke sehr fΓΌrs Review!

p.s. forgot the "s" after "suggestion" in the commit.

@tiangolo
Copy link
Member

πŸ“ Docs preview for commit d8ed18c at: https://7cff02cb.fastapitiangolo.pages.dev

Copy link

@dpinezich dpinezich left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

well done πŸ‘

@alejsdev alejsdev merged commit 9210e6a into fastapi:master Feb 21, 2024
44 checks passed
@alejsdev
Copy link
Member

Thank you both for the help! @nilslindemann @dpinezich πŸ₯³πŸŽ‰

@nilslindemann
Copy link
Contributor Author

Nice

@nilslindemann nilslindemann deleted the de/docs/reference/background.md branch February 23, 2024 16:47
gisbdzhch pushed a commit to gisktzh/gb3-search_api that referenced this pull request Feb 29, 2024
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [fastapi](https://github.com/tiangolo/fastapi) | `==0.109.2` -> `==0.110.0` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/fastapi/0.110.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/fastapi/0.110.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/fastapi/0.109.2/0.110.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/fastapi/0.109.2/0.110.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>tiangolo/fastapi (fastapi)</summary>

### [`v0.110.0`](https://github.com/tiangolo/fastapi/releases/tag/0.110.0)

[Compare Source](fastapi/fastapi@0.109.2...0.110.0)

##### Breaking Changes

-   πŸ› Fix unhandled growing memory for internal server errors, refactor dependencies with `yield` and `except` to require raising again as in regular Python. PR [#&#8203;11191](fastapi/fastapi#11191) by [@&#8203;tiangolo](https://github.com/tiangolo).
    -   This is a breaking change (and only slightly) if you used dependencies with `yield`, used `except` in those dependencies, and didn't raise again.
    -   This was reported internally by [@&#8203;rushilsrivastava](https://github.com/rushilsrivastava) as a memory leak when the server had unhandled exceptions that would produce internal server errors, the memory allocated before that point would not be released.
    -   Read the new docs: [Dependencies with `yield` and `except`](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-with-yield/#dependencies-with-yield-and-except).

In short, if you had dependencies that looked like:

```Python
def my_dep():
    try:
        yield
    except SomeException:
        pass
```

Now you need to make sure you raise again after `except`, just as you would in regular Python:

```Python
def my_dep():
    try:
        yield
    except SomeException:
        raise
```

##### Docs

-   ✏️ Fix minor typos in `docs/ko/docs/`. PR [#&#8203;11126](fastapi/fastapi#11126) by [@&#8203;KaniKim](https://github.com/KaniKim).
-   ✏️ Fix minor typo in `fastapi/applications.py`. PR [#&#8203;11099](fastapi/fastapi#11099) by [@&#8203;JacobHayes](https://github.com/JacobHayes).

##### Translations

-   🌐 Add German translation for `docs/de/docs/reference/background.md`. PR [#&#8203;10820](fastapi/fastapi#10820) by [@&#8203;nilslindemann](https://github.com/nilslindemann).
-   🌐 Add German translation for `docs/de/docs/reference/templating.md`. PR [#&#8203;10842](fastapi/fastapi#10842) by [@&#820...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved-1 lang-all Translations lang-de German translations
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants