🌐 Add Korean translation for Tutorial - Header Parameters#2589
🌐 Add Korean translation for Tutorial - Header Parameters#2589tiangolo merged 3 commits intofastapi:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2589 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 243 243
Lines 7419 7419
=========================================
Hits 7419 7419 Continue to review full report at Codecov.
|
|
📝 Docs preview for commit 9b8f848 at: https://5fef03922e91f88a5f5d17fa--fastapi.netlify.app |
| @@ -0,0 +1,90 @@ | |||
| # 헤더 매개변수 | |||
|
|
|||
| 헤더 파라미터를 `Query`, `Path` 그리고 `Cookie` 파라미터들과 같은 방식으로 정의할 수 있습니다. | |||
There was a problem hiding this comment.
| 헤더 파라미터를 `Query`, `Path` 그리고 `Cookie` 파라미터들과 같은 방식으로 정의할 수 있습니다. | |
| 헤더 매개변수를 `Query`, `Path` 그리고 `Cookie` 매개변수들과 같은 방식으로 정의할 수 있습니다. |
|
|
||
| ## `Header` 임포트 | ||
|
|
||
| 먼저 `Header`를 임포트합니다.: |
There was a problem hiding this comment.
| 먼저 `Header`를 임포트합니다.: | |
| 먼저 `Header`를 임포트합니다: |
|
|
||
| ## `Header` 매개변수 선언 | ||
|
|
||
| `Path`, `Query` 그리고 `Cookie`를 사용한 동일한 구조를 이용하여 헤더 파라미터를 선언합니다. |
There was a problem hiding this comment.
| `Path`, `Query` 그리고 `Cookie`를 사용한 동일한 구조를 이용하여 헤더 파라미터를 선언합니다. | |
| `Path`, `Query` 그리고 `Cookie`를 사용한 동일한 구조를 이용하여 헤더 매개변수를 선언합니다. |
|
|
||
| ## 중복 헤더 | ||
|
|
||
| 값이 여러개인 동일한 헤더를 수신할 수 있습니다. |
There was a problem hiding this comment.
Original was:
It is possible to receive duplicate headers. That means, the same header with multiple values.
| 값이 여러개인 동일한 헤더를 수신할 수 있습니다. | |
| 중복 헤더들을 수신 할 수 있습니다. 즉, 다중값을 갖는 동일한 헤더를 뜻합니다. |
It's really nice and natural🤩, but we should not break a sentence structure as much as possible. I also mentioned it in another review because we have to preserve the original author's intentions.
There was a problem hiding this comment.
Thank you. You're right. I think I made a mistake.
1. parameters word. 2. Modified the translation sentence to the same structure as the original sentence.
|
📝 Docs preview for commit efd0ff5 at: https://60200d293c2ab5b20a7e6943--fastapi.netlify.app |
hard-coders
left a comment
There was a problem hiding this comment.
Nice work! Thanks for your contribution.
|
Thanks for your contribution @mode9 ! 👏 🎉 And thanks for the reviews @PandaHun and @hard-coders ! 🍰 |
Hello, there.
I've referred to the previous translation Pull Requests.
Please let me know if any problems.
This PR translates
tutorial/header-params.mdin Korean.related: #2017