Skip to content

[문서] C10 충돌 해결 및 미번역분 번역#1860

Open
hcy020817 wants to merge 8 commits into
javascript-tutorial:2026-en-mergefrom
hcy020817:fix-05-data-types
Open

[문서] C10 충돌 해결 및 미번역분 번역#1860
hcy020817 wants to merge 8 commits into
javascript-tutorial:2026-en-mergefrom
hcy020817:fix-05-data-types

Conversation

@hcy020817
Copy link
Copy Markdown

요약

C10 충돌 발생 부분 해결 한 후 미번역된 부분 번역 추가했습니다.

수정 파일

1-js/05-data-types/03-string/1-ucfirst/solution.md
1-js/05-data-types/03-string/3-truncate/solution.md
1-js/05-data-types/03-string/article.md
1-js/05-data-types/04-array/10-maximal-subarray/solution.md
1-js/05-data-types/04-array/2-create-array/task.md
1-js/05-data-types/04-array/article.md
1-js/05-data-types/05-array-methods/2-filter-range/task.md
1-js/05-data-types/05-array-methods/7-map-objects/solution.md

Pull Request 체크리스트

TODO

  • 번역 규칙을 확인하셨나요?
    • 줄 바꿈과 단락을 '원문과 동일하게' 유지하셨나요?
    • 맞춤법 검사기로 맞춤법을 확인하셨나요?
    • 마크다운 문법에 사용되는 공백(스페이스), 큰따옴표("), 작은따옴표('), 대시(-), 백틱(`) 등의 특수문자는 그대로 두셨나요?
  • 로컬 서버 세팅 후 최종 결과물을 확인해 보셨나요?
  • PR 하나엔 번역문 하나만 넣으셨나요?
  • 의미 있는 커밋 메시지를 작성하셨나요?
    • 예시
      • [프락시] 번역
      • [프락시] 과제 번역
      • [if문과 조건부 연산자 '?'] 리뷰
      • [주석] 2차 리뷰
      • [Date 객체와 날짜] 번역

@CLAassistant
Copy link
Copy Markdown

CLAassistant commented May 16, 2026

CLA assistant check
All committers have signed the CLA.

@hcy020817
Copy link
Copy Markdown
Author

@HoonDongKang 리뷰 부탁드려요

Copy link
Copy Markdown

@HoonDongKang HoonDongKang left a comment

Choose a reason for hiding this comment

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

충돌 해결하시느라 고생하셨습니다. 작업에 대한 리뷰 완료하였습니다!
수정 진행하시면서 코멘트주시면 최대한 빠르게 답변드리도록 하겠습니다 🙌

Comment thread 1-js/05-data-types/03-string/article.md Outdated
Comment thread 1-js/05-data-types/03-string/article.md Outdated
Comment thread 1-js/05-data-types/03-string/article.md Outdated
Comment thread 1-js/05-data-types/03-string/article.md Outdated
Comment thread 1-js/05-data-types/03-string/article.md Outdated
Comment thread 1-js/05-data-types/04-array/article.md Outdated
Comment thread 1-js/05-data-types/04-array/article.md Outdated
규칙을 다시 떠올려 봅시다.
- 두 객체는 동일한 객체를 참조할 때만 `==` 비교 결과가 `true`입니다.
- `==`의 피연산자 중 하나가 객체이고 다른 하나가 primitive 자료형이면, <info:object-toprimitive> 챕터에서 설명한 것처럼 객체가 원시값으로 변환됩니다.
- 단, `null`과 `undefined`는 예외로 서로끼리만 `==` 비교 시 같고, 다른 값과는 같지 않습니다.
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

nit:

단, nullundefined는 예외입니다. 서로에 대해 == 비교 시 동등하지만 그 외의 값과는 동등하지 않습니다.

혹은 조금 더 유연하게 번역한다면

서로에 대해서만 == 비교 시 true를 반환하지만 그 외의 값에 대해 false를 반환합니다.

이렇게 더 설명해서 번역하시는 건 어떠신가요..? 이거 번역이 어렵네요 🤔

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

확인해 보니 첫 번째 규칙에서도 번역을 "비교 결과가 true"라고 해둬서, 마지막 규칙에 대한 번역도 같다고 표현하기보다는 말씀해 주신 대로 true와 false를 이용해 설명해서 번역하는 것이 좋다고 판단해 반영했습니다. 코멘트 주신 부분들 다 수정해서 반영했으니 확인 부탁드립니다!

Comment thread 1-js/05-data-types/04-array/article.md Outdated
Comment thread 1-js/05-data-types/04-array/article.md Outdated
Comment thread 1-js/05-data-types/03-string/article.md Outdated
@javascript-translate-bot
Copy link
Copy Markdown

Please make the requested changes. After it, add a comment "/done".
Then I'll ask for a new review 👻

@javascript-translate-bot
Copy link
Copy Markdown

Please make the requested changes. After it, add a comment "/done".
Then I'll ask for a new review 👻

1 similar comment
@javascript-translate-bot
Copy link
Copy Markdown

Please make the requested changes. After it, add a comment "/done".
Then I'll ask for a new review 👻

@hcy020817 hcy020817 force-pushed the fix-05-data-types branch from b2a79b1 to 9342285 Compare May 17, 2026 12:53
@hcy020817 hcy020817 force-pushed the fix-05-data-types branch from 9342285 to b6790d0 Compare May 17, 2026 13:25
Copy link
Copy Markdown

@HoonDongKang HoonDongKang left a comment

Choose a reason for hiding this comment

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

반영해주신 부분 확인하여 다시 리뷰드렸습니다!
첫 리뷰에서는 수정될 부분이 많이 존재하여 빌드 결과물을 비교하지 않았었고,
이번 리뷰에서 빌드된 결과물을 비교하면서 추가적으로 수정될 부분 포함하여 리뷰하였습니다!

확인하고 궁금한 점있으시면 편하게 코멘트 부탁드립니다 🙌

<<<<<<< HEAD
|`\n`|줄 바꿈|
|`\r`|캐리지 리턴(carriage return). Windows에선 캐리지 리턴과 줄 바꿈 특수 문자를 조합(`\r\n`)해 줄을 바꿉니다. 캐리지 리턴을 단독으론 사용하는 경우는 없습니다. |
|`\r`|캐리지 리턴(carriage return). Windows에선 캐리지 리턴과 줄 바꿈 특수 문자를 조합(`\r\n`)해 줄을 바꿉니다. 반면 Windows가 아닌 운영체제에서 단순히 `줄 바꿈(\n)`만 사용합니다. 이는 역사적인 이유 때문이며, 대부분의 Windows 소프트웨어는 `줄 바꿈(\n)`을 이해합니다. |
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

줄 바꿈(\n) 처럼 백틱으로 한 번에 감싸신 이유가 따로 있으실까요?

저는 번역 작업을 진행하면서 백틱은 용어명보다 코드 표기에만 감싸는 것을 많이 봤던 것 같습니다.

nit:
추가로 앞에서 코드에 대한 설명(줄 바꿈)을 명시해줬으니, 그 후에 등장하는 코드(\n)에 대해서는 용어명을 딱히 추가하지 않아도 좋을 것 같습니다.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

|\r|In Windows text files a combination of two characters \r\n represents a new break, while on non-Windows OS it's just \n. That's for historical reasons, most Windows software also understands \n.

원문에서 백틱으로 감싸져 있어서 동일하게 추가했는데 혹시 삭제하는 게 맞을까요?

Comment thread 1-js/05-data-types/03-string/article.md
Comment thread 1-js/05-data-types/03-string/article.md
Comment on lines 85 to 87
|`\'`, `\"`|따옴표|
|`\\`|역슬래시|
|`\t`|탭|
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Image

빌드된 결과물에 표시된 포맷이 다른 것 같습니다. 빌드 확인 부탁드립니다.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

|\'\"\`|Quotes|

위와 같이 이 부분에서 원문에는 따옴표 부분은 특수문자들이 같은 줄에 포함되도록 &nbsp가 추가되어 있습니다.

|\b, \f, \v| Backspace, Form Feed, Vertical Tab -- mentioned for completeness, coming from old times, not used nowadays (you can forget them right now). |

하지만 이 부분에는 원문에 &nbsp추가되어 있지 않는데, 추가하는 게 맞을까요?

Comment thread 1-js/05-data-types/03-string/article.md
Comment thread 1-js/05-data-types/04-array/article.md
Comment thread 1-js/05-data-types/04-array/article.md
Comment thread 1-js/05-data-types/05-array-methods/2-filter-range/task.md
Comment thread 1-js/05-data-types/05-array-methods/7-map-objects/solution.md
@javascript-translate-bot
Copy link
Copy Markdown

Please make the requested changes. After it, add a comment "/done".
Then I'll ask for a new review 👻

2 similar comments
@javascript-translate-bot
Copy link
Copy Markdown

Please make the requested changes. After it, add a comment "/done".
Then I'll ask for a new review 👻

@javascript-translate-bot
Copy link
Copy Markdown

Please make the requested changes. After it, add a comment "/done".
Then I'll ask for a new review 👻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants