Skip to content

Commit

Permalink
Merge branch 'main' into patch-44
Browse files Browse the repository at this point in the history
  • Loading branch information
yin1999 authored Jul 29, 2024
2 parents a28373d + ec740e3 commit b65d67c
Show file tree
Hide file tree
Showing 6,230 changed files with 74,176 additions and 28,865 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .github/workflows/pr-check-lint_content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ jobs:
-name="mdn-linter" \
-f=diff \
-f.diff.strip=1 \
-filter-mode=diff_context \
-reporter=github-pr-review < "${TMPFILE}"
- name: Add reviews for markdownlint errors
Expand Down
4 changes: 0 additions & 4 deletions PEERS_GUIDELINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,8 @@ The review teams for each locale are:
- Korea (`ko`) content — the [yari-content-ko](https://github.com/orgs/mdn/teams/yari-content-ko) team, which consists of:
- [1ilsang](https://github.com/1ilsang)
- [sunhpark42](https://github.com/sunhpark42)
- [jho2301](https://github.com/jho2301)
- [swimjiy](https://github.com/swimjiy)
- [wisedog](https://github.com/wisedog)
- [cos18](https://github.com/cos18)
- [yechoi42](https://github.com/yechoi42)
- [pje1740](https://github.com/pje1740)
- [hochan222](https://github.com/hochan222)
- Russian (`ru`) content — the [yari-content-ru](https://github.com/orgs/mdn/teams/yari-content-ru) team, which consists of:
- [leon-win](https://github.com/leon-win)
Expand Down
2 changes: 1 addition & 1 deletion docs/ko/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
마찬가지로 추가하려는 일반 안내서에 대한 좋은 아이디어가 있는 경우 환영합니다. Issue를 열고 문제에 대해 이야기해주세요. 다음은 한국어 번역 안내서 원칙의 주요 내용입니다.

> 어떻게 시작해야 할지 어려우신가요?
> [MDN Discord #korean 채널](https://discord.com/channels/1009925603572600863/1070064829466939503) 혹은 [Kakao Talk (#MDN Korea)](https://open.kakao.com/o/gdfG288c)에 오셔서 이야기해주세요!
> [MDN Discord #korean 채널](https://discord.com/channels/1009925603572600863/1070064829466939503) 혹은 [Google Groups (yari-content-ko)](https://groups.google.com/g/yari-content-ko)으로 어려운 사항들 이야기해주세요!
## 첫 기여자들을 위한 안내서

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ div {

## 색상 선언 & 효과 생성

All CSS gradient types are a range of position-dependent colors. The colors produced by CSS gradients can vary continuously with position, producing smooth color transitions. It is also possible to create bands of solid colors, and hard transitions between two colors. The following are valid for all gradient functions:
모든 CSS 그레이디언트 유형은 위치에 따라 변하는 색상의 범위입니다. CSS 그레이디언트가 생성하는 색상은 위치에 따라 연속적으로 변하며 부드러운 색상 전환을 이룹니다. 또한, 단색 띠를 만들거나 두 색상 간의 뚜렷한 전환을 생성하는 것도 가능합니다. 다음 사항들은 모든 그레이디언트 함수에 적용됩니다.

### 두 개보다 많은 색 사용하기

You don't have to limit yourself to two colors—you may use as many as you like! By default, colors are evenly spaced along the gradient.
색상의 수는 두 가지로 제한되지 않으며, 원하는 만큼 사용할 수 있습니다! 기본적으로 색상은 그레이디언트에 따라 균일하게 배치됩니다.

```html hidden
<div class="auto-spaced-linear-gradient"></div>
Expand All @@ -138,9 +138,9 @@ div {

{{ EmbedLiveSample('두_개보다_많은_색_사용하기', 120, 120) }}

### Positioning color stops
### 색상 정지점 위치 지정하기

You don't have to leave your color stops at their default positions. To fine-tune their locations, you can give each one zero, one, or two percentage or, for radial and linear gradients, absolute length values. If you specify the location as a percentage, `0%` represents the starting point, while `100%` represents the ending point; however, you can use values outside that range if necessary to get the effect you want. If you leave a location unspecified, the position of that particular color stop will be automatically calculated for you, with the first color stop being at `0%` and the last color stop being at `100%`, and any other color stops being half way between their adjacent color stops.
색상 정지점을 기본 위치에 두지 않아도 됩니다. 위치를 세밀하게 조정하려면 각 정지점에 0개, 1개 또는 2개의 퍼센티지 값을 지정하거나, 방사형 및 선형 그레이디언트의 경우 절대 길이 값을 지정할 수 있습니다. 위치를 퍼센티지로 지정하면 0%는 시작 지점을, `100%`는 끝 지점을 나타냅니다. 그러나 원하는 효과를 얻기 위해 이 범위를 벗어나는 값을 사용할 수도 있습니다. 위치를 지정하지 않으면 첫 번째 색상 정지점은 자동으로 0%에, 마지막 색상 정지점은 `100%`에 배치되며, 나머지 색상 정지점은 인접한 색상 정지점의 중간에 자동으로 배치됩니다.

```html hidden
<div class="multicolor-linear"></div>
Expand All @@ -161,9 +161,9 @@ div {

{{ EmbedLiveSample('Positioning_color_stops', 120, 120) }}

### Creating hard lines
### 경계선 만들기

To create a hard line between two colors, creating a stripe instead of a gradual transition, adjacent color stops can be set to the same location. In this example, the colors share a color stop at the `50%` mark, halfway through the gradient:
두 색상 사이에 점진적인 전환 대신 명확한 경계선을 만들어 줄무늬를 만들려면, 인접한 색상 정지점을 동일한 위치에 설정할 수 있습니다. 이 예제에서는 색상들이 그레이디언트의 중간 지점인 `50%` 위치에서 색상 정지점을 공유합니다.

```html hidden
<div class="striped"></div>
Expand All @@ -184,9 +184,9 @@ div {

{{ EmbedLiveSample('Creating_hard_lines', 120, 120) }}

### Gradient hints
### 그레이디언트 힌트

By default, the gradient transitions evenly from one color to the next. You can include a color-hint to move the midpoint of the transition value to a certain point along the gradient. In this example, we've moved the midpoint of the transition from the 50% mark to the 10% mark.
기본적으로 그레이디언트는 한 색상에서 다음 색상으로 고르게 전환됩니다. 그러나 전환의 중간점을 특정 지점으로 옮기기 위해 색상 힌트를 추가할 수 있습니다. 이 예제에서는 전환의 중간점을 50% 지점에서 10% 지점으로 옮겼습니다.

```html hidden
<div class="color-hint"></div>
Expand All @@ -213,9 +213,9 @@ div {

{{ EmbedLiveSample('Gradient_hints', 120, 120) }}

### Creating color bands & stripes
### 색상 띠와 줄무늬 만들기

To include a solid, non-transitioning color area within a gradient, include two positions for the color stop. Color stops can have two positions, which is equivalent to two consecutive color stops with the same color at different positions. The color will reach full saturation at the first color stop, maintain that saturation through to the second color stop, and transition to the adjacent color stop's color through the adjacent color stop's first position.
그레이디언트 안에 단색 영역을 만들려면 색상 정지점에 두 개의 위치를 지정하면 됩니다. 이렇게 하면 하나의 색상이 두 위치에 걸쳐 유지됩니다. 이는 동일한 색상이 서로 다른 위치에 두 개의 연속된 색상 정지점을 가지는 것과 동일합니다. 색상은 첫 번째 위치에서 색상이 완전히 나타나고, 두 번째 위치까지 그대로 유지됩니다. 그런 다음 인접한 색상 정지점에서 다음 색상으로 부드럽게 전환됩니다.

```html hidden
<div class="multiposition-stops"></div>
Expand Down
5 changes: 4 additions & 1 deletion docs/ko/guides/glossary-guide.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 용어 안내서

새로운 용어를 추가할 때, 기존 문서의 레거시와 [국립 국어원 한국어 어문 규범](https://kornorms.korean.go.kr/main/main.do)을 고려해 추가할 것을 권장합니다. [국립 국어원 온라인가나다](https://www.korean.go.kr/front/onlineQna/onlineQnaList.do?mn_id=216)에서 어문 규범, 어법, 표준국어대사전 내용 등에 대하여 문의할 수 있습니다.
새로운 용어를 추가할 때, 기존 문서의 레거시와 [국립 국어원 한국어 어문 규범](https://korean.go.kr/kornorms/main/main.do)을 고려해 추가할 것을 권장합니다. [국립 국어원 온라인가나다](https://www.korean.go.kr/front/onlineQna/onlineQnaList.do?mn_id=216)에서 어문 규범, 어법, 표준국어대사전 내용 등에 대하여 문의할 수 있습니다.

## 공통

Expand Down Expand Up @@ -59,6 +59,7 @@
| Polyfill | 폴리필 | [링크](https://github.com/mdn/translated-content/pull/1779/files) |
| Recommendations | 권장 사항 | |
| Reference | 참고서 | |
| Return Value | 반환 값 | |
| See also | 같이 보기 | [링크][target] |
| Specifications | 명세서 | [링크](https://github.com/mdn/translated-content/pull/1779/files) |
| Static properties | 정적 속성 | |
Expand Down Expand Up @@ -154,6 +155,8 @@
| User agent | 사용자 에이전트 | |
| Update | 갱신 | |
| Workflow | 워크플로우 | |
| Truthy | 참 같은 | |
| Falsy | 거짓 같은 | |

## CSS

Expand Down
14 changes: 7 additions & 7 deletions docs/ko/guides/organizer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
- [@GwangYeol-Im](https://github.com/GwangYeol-Im) 2021.04 ~ 2023.10
- [@yujo11](https://github.com/yujo11) 2021.04 ~ 2023.09
- [@nKiNk](https://github.com/nKiNk) 2021.04 ~ 2023.01
- [@pje1740](https://github.com/pje1740) 2021.04 ~ 2024.04
- [@swimjiy](https://github.com/swimjiy) 2023.03 ~ 2024.04
- [@cos18](https://github.com/cos18) 2021.04 ~ 2024.04
- [@jho2301](https://github.com/jho2301) 2023.03 ~ 2024.05

### 현재 구성원

- [1ilsang](https://github.com/1ilsang) 2024.03 ~
- [sunhpark42](https://github.com/sunhpark42) 2023.03 ~
- [jho2301](https://github.com/jho2301) 2023.03 ~
- [swimjiy](https://github.com/swimjiy) 2023.03 ~
- [wisedog](https://github.com/wisedog) 2023.03 ~
- [@cos18](https://github.com/cos18) 2021.04 ~
- [@1ilsang](https://github.com/1ilsang) 2024.03 ~
- [@sunhpark42](https://github.com/sunhpark42) 2023.03 ~
- [@wisedog](https://github.com/wisedog) 2023.03 ~
- [@yechoi42](https://github.com/yechoi42) 2021.04 ~
- [@pje1740](https://github.com/pje1740) 2021.04 ~
- [@hochan222](https://github.com/hochan222) 2021.04 ~

## 참고 사항
Expand Down
2 changes: 2 additions & 0 deletions docs/zh-cn/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@
| ---------------------- | ------------ | ------------------ | --------------------------------------------------------------------------- |
| Accessibility concerns | 无障碍考虑 | | https://github.com/mdn/translated-content/issues/11456 |
| Active learning | 动手练习 | | https://github.com/mdn/translated-content/pull/12696#discussion_r1164859935 |
| Associated interfaces | 相关接口 | | |
| Associated roles | 相关角色 | | |
| Browser compatibility | 浏览器兼容性 | | |
| Conclusion | 总结 | | https://github.com/mdn/translated-content/pull/13329#discussion_r1199677894 |
| Examples | 示例 | | |
Expand Down
Loading

0 comments on commit b65d67c

Please sign in to comment.