From fb286e2eebce289ace297e70fde7dfa34f0fdb82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=A2=85=EC=9B=90?= Date: Mon, 12 Jul 2021 21:36:08 +0900 Subject: [PATCH 1/4] Added Korean translations for CONTRIBUTING.md & Added CONTRIBUTING-ko link to other CONTRIBUTINGS --- .github/CONTRIBUTING-es.md | 2 +- .github/CONTRIBUTING-jp.md | 2 +- .github/CONTRIBUTING-ko.md | 105 ++++++++++++++++++++++++++++++++++ .github/CONTRIBUTING-pt-BR.md | 2 +- .github/CONTRIBUTING-zh-CN.md | 2 +- .github/CONTRUBUTING-ru.md | 2 +- CONTRIBUTING.md | 2 +- 7 files changed, 111 insertions(+), 6 deletions(-) create mode 100644 .github/CONTRIBUTING-ko.md diff --git a/.github/CONTRIBUTING-es.md b/.github/CONTRIBUTING-es.md index f319578..a2c59cd 100644 --- a/.github/CONTRIBUTING-es.md +++ b/.github/CONTRIBUTING-es.md @@ -1,7 +1,7 @@ # Contribución Ver este documento en otro idioma: -[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Português](.github/CONTRIBUTING-pt-BR.md) +[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [한국어](.github/CONTRIBUTING-ko.md) ¿Quieres contribuir al proyecto? ¡Genial! diff --git a/.github/CONTRIBUTING-jp.md b/.github/CONTRIBUTING-jp.md index 7958b80..741f74e 100644 --- a/.github/CONTRIBUTING-jp.md +++ b/.github/CONTRIBUTING-jp.md @@ -1,7 +1,7 @@ # 貢献する このドキュメントを別の言語で表示する: -[English](CONTRIBUTING.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) +[English](CONTRIBUTING.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [한국어](.github/CONTRIBUTING-ko.md) このプロジェクトに貢献したいですか?素晴らしい! diff --git a/.github/CONTRIBUTING-ko.md b/.github/CONTRIBUTING-ko.md new file mode 100644 index 0000000..55ad4ea --- /dev/null +++ b/.github/CONTRIBUTING-ko.md @@ -0,0 +1,105 @@ +# Contributing(기여하기) + +다른 언어로 보기: +[English](CONTRIBUTING.md) / [简体中文](.github/CONTRIBUTING-zh-CN.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [Русский](.github/CONTRIBUTING-ru.md) + +이 프로젝트에 도움을 주고 싶나요? 대단합니다! + +## 알아야 할 것 + +이 프로젝트는 참여자에게 행동규범을 요구합니다. 이 프로젝트에 기여하기 위해서는 아래 규범을 지켜야 합니다. [행동규범][code-of-conduct]을 확인해서 잘못된 행동을 하지 않도록 해주세요. + +**Pull Request가 처음이신가요?** +[깃헙 오픈소스 프로젝트에 기여하는 방법][egghead] + +## 어떻게?? + +* 프로젝트를 설치하나요?? + [우리가 도와줄게요!](#project-setup) + +* 버그를 발견했나요?? + [알려주세요!][new-issue] + +* 버그를 패치했나요?? + [Pull Request를 해주세요!][new-pr] + +* 새로운 내용을 추가하고 싶으신가요?? + 먼저 [open an issue][new-issue]를 해서 내용을 설명해주시고, 완성이 되어 피드백을 받을 수 있을 때 [new Pull Request][new-pr]를 해주세요! + +## 프로젝트 설치 + +이 프로젝트에 기여하고 싶으시다니 대단히 기쁘네요! ❤️ 아래 절차를 따라 설치하시면 실행이 될 겁니다: + +1. 이 Repository를 Fork & clone 하세요 +2. 필요한 dependencies를 설치해주세요: + ```sh + $ npm install + ``` +3. dev server를 실행해주세요: + interactive interface에 가능한 모든 component를 보려면, storybook을 이용하세요. + ```sh + $ npm run storybook + ``` + +### 저장경로 +```sh +. +├── index.html: Demo page +├── style.css: Demo page style +├── css: Distribution files +├── docs: Storybook stories +└── scss: Source + ├── base + │ ├── reboot.scss: 절대 수정하지 마세요! (Bootstrap Reboot) + │ ├── generic.scss: Generic style and reboot.css + │ └── variables.scss: Common variables + ├── elements + ├── components + ├── form + ├── icons: 16x16 icons + ├── pixel-arts: For icons other than 16x16. + └── utilities +``` + +> Tip: 여러분의 `master` branch가 원래 repository를 가리키도록 지정하시고, fork한 곳의 branch에서 pull requests를 만드세요. 아래와 같이 실행하면 됩니다: +> +> ``` +> git remote add upstream https://github.com/nostalgic-css/NES.css.git +> git fetch upstream +> git branch --set-upstream-to=upstream/master master +> ``` +> +> 위 방법이 원래의 repository를 "upstream"이라 불리는 "remote"로 추가할 것이고, 여러분이 `git pull`을 사용할 때마다 그 "remote"에서 정보를 불러와서, 여러분의 `master` branch를 `upstream/master` branch를 사용할 수 있게끔 세팅할 것입니다. 이 방법을 통해 `master` branch에서 여러분의 branch를 만들 수 있을 겁니다. `master` branch를 업데이트 하고 싶다면, `git pull`을 사용하세요. + +## `nostalgic-css` 구성원들을 위한 Contributing + +아래의 절차는 `nostalgic-css`의 구성원들을 위한 절차입니다. 도움을 주시는 외부의 여러분들은 위의 Contributing만 해당됩니다. + +### 개발 절차 + +1. 아래 양식 규정을 지키면서 `develop`에서 branch를 만들어주세요. +2. 이슈에 맞는 작업을 진행해주세요. 만약, 이슈와 맞지 않는 작업이었다고 판단된다면 [새로운 issue][new-issue]를 생성하고, 다른 branch에서 진행해주세요. +3. `develop`에 merge를 위해 Pull Request를 제출해주세요. + * 현재까지의 개발에 영향을 주는 수정사항은 description에 작성되어야 합니다. + * 이슈를 가졌던 Pull Request는 이슈번호를 꼭 적어주세요. 예시: `[#33] Fix bug` + * Pull Request를 자신에게 배정하세요 + * Pull Request가 작업이 완료되어 merge할 준비가 되었다면, `nostalgic-css/NES.css` 팀으로부터 리뷰를 받아야 합니다. +4. Pull Request가 승인되면, **작업하신분** 이 branch에 수정사항을 merge해야 합니다. + +### 커밋 양식 + +우리는 프로젝트의 커밋이 최대한 읽기 쉽도록 [Commitizen][commitizen] 와 [`commitlint`][commitlint]를 사용하고, [`semantic-release`][semantic-release]를 통해 출시가 자동화되어서, [감성적이지 않으려고 노력합니다.][sentimental-versioning]. + => 개발자 임의대로 출시 버젼을 지정하지 않도록 한다는 의미입니다. + + + + + +[code-of-conduct]: CODE_OF_CONDUCT.md +[commitizen]: https://github.com/commitizen/cz-cli +[commitlint]: [https://github.com/marionebl/commitlint] +[egghead]: https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github +[new-issue]: https://github.com/nostalgic-css/NES.css/issues/new/choose +[new-pr]: https://github.com/nostalgic-css/NES.css/compare/develop...develop +[semantic-release]: https://github.com/semantic-release/semantic-release +[sentimental-versioning]: http://sentimentalversioning.org/ diff --git a/.github/CONTRIBUTING-pt-BR.md b/.github/CONTRIBUTING-pt-BR.md index d8fb317..f14cf8f 100644 --- a/.github/CONTRIBUTING-pt-BR.md +++ b/.github/CONTRIBUTING-pt-BR.md @@ -1,7 +1,7 @@ # Contribuindo Veja este documento em outro idioma: -[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Español](.github/CONTRIBUTING-es.md) +[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Español](.github/CONTRIBUTING-es.md) / [한국어](.github/CONTRIBUTING-ko.md) Quer contribuir para este projeto? Legal! diff --git a/.github/CONTRIBUTING-zh-CN.md b/.github/CONTRIBUTING-zh-CN.md index 42cf63e..331ba96 100644 --- a/.github/CONTRIBUTING-zh-CN.md +++ b/.github/CONTRIBUTING-zh-CN.md @@ -1,7 +1,7 @@ # 贡献 使用其他语言来阅读本文档: -[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) +[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [한국어](.github/CONTRIBUTING-ko.md) 你打算为本项目做贡献?太棒了! diff --git a/.github/CONTRUBUTING-ru.md b/.github/CONTRUBUTING-ru.md index aca7f49..cedbeed 100644 --- a/.github/CONTRUBUTING-ru.md +++ b/.github/CONTRUBUTING-ru.md @@ -1,7 +1,7 @@ # Вклад Посмотри документы на другом языке: -[简体中文](.github/CONTRIBUTING-zh-CN.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md)/ [English](../CONTRIBUTING.md) +[简体中文](.github/CONTRIBUTING-zh-CN.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md)/ [English](../CONTRIBUTING.md) / [한국어](.github/CONTRIBUTING-ko.md) Хочешь внести свой вклад в проект? Отлично! diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0ac7ddd..63cf5be 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,7 @@ # Contributing View this document in another language: -[简体中文](.github/CONTRIBUTING-zh-CN.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [Русский](.github/CONTRIBUTING-ru.md) +[简体中文](.github/CONTRIBUTING-zh-CN.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [Русский](.github/CONTRIBUTING-ru.md) / [한국어](.github/CONTRIBUTING-ko.md) You want to contribute to the project? Awesome! From 01091afdeaad8abb122c4995b83bd8c77790936a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=A2=85=EC=9B=90?= Date: Mon, 12 Jul 2021 21:39:12 +0900 Subject: [PATCH 2/4] Fixed Mistyping --- .github/CONTRIBUTING-ko.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING-ko.md b/.github/CONTRIBUTING-ko.md index 55ad4ea..fd7e304 100644 --- a/.github/CONTRIBUTING-ko.md +++ b/.github/CONTRIBUTING-ko.md @@ -88,8 +88,8 @@ ### 커밋 양식 -우리는 프로젝트의 커밋이 최대한 읽기 쉽도록 [Commitizen][commitizen] 와 [`commitlint`][commitlint]를 사용하고, [`semantic-release`][semantic-release]를 통해 출시가 자동화되어서, [감성적이지 않으려고 노력합니다.][sentimental-versioning]. - => 개발자 임의대로 출시 버젼을 지정하지 않도록 한다는 의미입니다. +우리는 프로젝트의 커밋이 최대한 읽기 쉽도록 [Commitizen][commitizen] 와 [`commitlint`][commitlint]를 사용하고, [`semantic-release`][semantic-release]를 통해 출시가 자동화되어서, [감성적이지 않으려고 노력합니다][sentimental-versioning]. +=> 개발자 임의대로 출시 버전을 지정하지 않도록 한다는 의미입니다. From ab82b897d8e560fa15073a38a257765887230121 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=A2=85=EC=9B=90?= Date: Mon, 12 Jul 2021 21:36:08 +0900 Subject: [PATCH 3/4] docs: add korean contributing translation file --- .github/CONTRIBUTING-es.md | 2 +- .github/CONTRIBUTING-jp.md | 2 +- .github/CONTRIBUTING-ko.md | 105 ++++++++++++++++++++++++++++++++++ .github/CONTRIBUTING-pt-BR.md | 2 +- .github/CONTRIBUTING-zh-CN.md | 2 +- .github/CONTRUBUTING-ru.md | 2 +- CONTRIBUTING.md | 2 +- 7 files changed, 111 insertions(+), 6 deletions(-) create mode 100644 .github/CONTRIBUTING-ko.md diff --git a/.github/CONTRIBUTING-es.md b/.github/CONTRIBUTING-es.md index f319578..a2c59cd 100644 --- a/.github/CONTRIBUTING-es.md +++ b/.github/CONTRIBUTING-es.md @@ -1,7 +1,7 @@ # Contribución Ver este documento en otro idioma: -[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Português](.github/CONTRIBUTING-pt-BR.md) +[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [한국어](.github/CONTRIBUTING-ko.md) ¿Quieres contribuir al proyecto? ¡Genial! diff --git a/.github/CONTRIBUTING-jp.md b/.github/CONTRIBUTING-jp.md index 7958b80..741f74e 100644 --- a/.github/CONTRIBUTING-jp.md +++ b/.github/CONTRIBUTING-jp.md @@ -1,7 +1,7 @@ # 貢献する このドキュメントを別の言語で表示する: -[English](CONTRIBUTING.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) +[English](CONTRIBUTING.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [한국어](.github/CONTRIBUTING-ko.md) このプロジェクトに貢献したいですか?素晴らしい! diff --git a/.github/CONTRIBUTING-ko.md b/.github/CONTRIBUTING-ko.md new file mode 100644 index 0000000..55ad4ea --- /dev/null +++ b/.github/CONTRIBUTING-ko.md @@ -0,0 +1,105 @@ +# Contributing(기여하기) + +다른 언어로 보기: +[English](CONTRIBUTING.md) / [简体中文](.github/CONTRIBUTING-zh-CN.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [Русский](.github/CONTRIBUTING-ru.md) + +이 프로젝트에 도움을 주고 싶나요? 대단합니다! + +## 알아야 할 것 + +이 프로젝트는 참여자에게 행동규범을 요구합니다. 이 프로젝트에 기여하기 위해서는 아래 규범을 지켜야 합니다. [행동규범][code-of-conduct]을 확인해서 잘못된 행동을 하지 않도록 해주세요. + +**Pull Request가 처음이신가요?** +[깃헙 오픈소스 프로젝트에 기여하는 방법][egghead] + +## 어떻게?? + +* 프로젝트를 설치하나요?? + [우리가 도와줄게요!](#project-setup) + +* 버그를 발견했나요?? + [알려주세요!][new-issue] + +* 버그를 패치했나요?? + [Pull Request를 해주세요!][new-pr] + +* 새로운 내용을 추가하고 싶으신가요?? + 먼저 [open an issue][new-issue]를 해서 내용을 설명해주시고, 완성이 되어 피드백을 받을 수 있을 때 [new Pull Request][new-pr]를 해주세요! + +## 프로젝트 설치 + +이 프로젝트에 기여하고 싶으시다니 대단히 기쁘네요! ❤️ 아래 절차를 따라 설치하시면 실행이 될 겁니다: + +1. 이 Repository를 Fork & clone 하세요 +2. 필요한 dependencies를 설치해주세요: + ```sh + $ npm install + ``` +3. dev server를 실행해주세요: + interactive interface에 가능한 모든 component를 보려면, storybook을 이용하세요. + ```sh + $ npm run storybook + ``` + +### 저장경로 +```sh +. +├── index.html: Demo page +├── style.css: Demo page style +├── css: Distribution files +├── docs: Storybook stories +└── scss: Source + ├── base + │ ├── reboot.scss: 절대 수정하지 마세요! (Bootstrap Reboot) + │ ├── generic.scss: Generic style and reboot.css + │ └── variables.scss: Common variables + ├── elements + ├── components + ├── form + ├── icons: 16x16 icons + ├── pixel-arts: For icons other than 16x16. + └── utilities +``` + +> Tip: 여러분의 `master` branch가 원래 repository를 가리키도록 지정하시고, fork한 곳의 branch에서 pull requests를 만드세요. 아래와 같이 실행하면 됩니다: +> +> ``` +> git remote add upstream https://github.com/nostalgic-css/NES.css.git +> git fetch upstream +> git branch --set-upstream-to=upstream/master master +> ``` +> +> 위 방법이 원래의 repository를 "upstream"이라 불리는 "remote"로 추가할 것이고, 여러분이 `git pull`을 사용할 때마다 그 "remote"에서 정보를 불러와서, 여러분의 `master` branch를 `upstream/master` branch를 사용할 수 있게끔 세팅할 것입니다. 이 방법을 통해 `master` branch에서 여러분의 branch를 만들 수 있을 겁니다. `master` branch를 업데이트 하고 싶다면, `git pull`을 사용하세요. + +## `nostalgic-css` 구성원들을 위한 Contributing + +아래의 절차는 `nostalgic-css`의 구성원들을 위한 절차입니다. 도움을 주시는 외부의 여러분들은 위의 Contributing만 해당됩니다. + +### 개발 절차 + +1. 아래 양식 규정을 지키면서 `develop`에서 branch를 만들어주세요. +2. 이슈에 맞는 작업을 진행해주세요. 만약, 이슈와 맞지 않는 작업이었다고 판단된다면 [새로운 issue][new-issue]를 생성하고, 다른 branch에서 진행해주세요. +3. `develop`에 merge를 위해 Pull Request를 제출해주세요. + * 현재까지의 개발에 영향을 주는 수정사항은 description에 작성되어야 합니다. + * 이슈를 가졌던 Pull Request는 이슈번호를 꼭 적어주세요. 예시: `[#33] Fix bug` + * Pull Request를 자신에게 배정하세요 + * Pull Request가 작업이 완료되어 merge할 준비가 되었다면, `nostalgic-css/NES.css` 팀으로부터 리뷰를 받아야 합니다. +4. Pull Request가 승인되면, **작업하신분** 이 branch에 수정사항을 merge해야 합니다. + +### 커밋 양식 + +우리는 프로젝트의 커밋이 최대한 읽기 쉽도록 [Commitizen][commitizen] 와 [`commitlint`][commitlint]를 사용하고, [`semantic-release`][semantic-release]를 통해 출시가 자동화되어서, [감성적이지 않으려고 노력합니다.][sentimental-versioning]. + => 개발자 임의대로 출시 버젼을 지정하지 않도록 한다는 의미입니다. + + + + + +[code-of-conduct]: CODE_OF_CONDUCT.md +[commitizen]: https://github.com/commitizen/cz-cli +[commitlint]: [https://github.com/marionebl/commitlint] +[egghead]: https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github +[new-issue]: https://github.com/nostalgic-css/NES.css/issues/new/choose +[new-pr]: https://github.com/nostalgic-css/NES.css/compare/develop...develop +[semantic-release]: https://github.com/semantic-release/semantic-release +[sentimental-versioning]: http://sentimentalversioning.org/ diff --git a/.github/CONTRIBUTING-pt-BR.md b/.github/CONTRIBUTING-pt-BR.md index d8fb317..f14cf8f 100644 --- a/.github/CONTRIBUTING-pt-BR.md +++ b/.github/CONTRIBUTING-pt-BR.md @@ -1,7 +1,7 @@ # Contribuindo Veja este documento em outro idioma: -[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Español](.github/CONTRIBUTING-es.md) +[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [简体中文](CONTRIBUTING-zh-CN.md) / [Español](.github/CONTRIBUTING-es.md) / [한국어](.github/CONTRIBUTING-ko.md) Quer contribuir para este projeto? Legal! diff --git a/.github/CONTRIBUTING-zh-CN.md b/.github/CONTRIBUTING-zh-CN.md index 42cf63e..331ba96 100644 --- a/.github/CONTRIBUTING-zh-CN.md +++ b/.github/CONTRIBUTING-zh-CN.md @@ -1,7 +1,7 @@ # 贡献 使用其他语言来阅读本文档: -[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) +[English](CONTRIBUTING.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [한국어](.github/CONTRIBUTING-ko.md) 你打算为本项目做贡献?太棒了! diff --git a/.github/CONTRUBUTING-ru.md b/.github/CONTRUBUTING-ru.md index aca7f49..cedbeed 100644 --- a/.github/CONTRUBUTING-ru.md +++ b/.github/CONTRUBUTING-ru.md @@ -1,7 +1,7 @@ # Вклад Посмотри документы на другом языке: -[简体中文](.github/CONTRIBUTING-zh-CN.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md)/ [English](../CONTRIBUTING.md) +[简体中文](.github/CONTRIBUTING-zh-CN.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md)/ [English](../CONTRIBUTING.md) / [한국어](.github/CONTRIBUTING-ko.md) Хочешь внести свой вклад в проект? Отлично! diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0ac7ddd..63cf5be 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,7 @@ # Contributing View this document in another language: -[简体中文](.github/CONTRIBUTING-zh-CN.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [Русский](.github/CONTRIBUTING-ru.md) +[简体中文](.github/CONTRIBUTING-zh-CN.md) / [日本語](.github/CONTRIBUTING-jp.md) / [Español](.github/CONTRIBUTING-es.md) / [Português](.github/CONTRIBUTING-pt-BR.md) / [Русский](.github/CONTRIBUTING-ru.md) / [한국어](.github/CONTRIBUTING-ko.md) You want to contribute to the project? Awesome! From 1033d669250ef077131b9cc6c126419281eb4205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=A2=85=EC=9B=90?= Date: Tue, 13 Jul 2021 23:07:11 +0900 Subject: [PATCH 4/4] docs: fix korean contributing translation file --- .github/CONTRIBUTING-ko.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING-ko.md b/.github/CONTRIBUTING-ko.md index 55ad4ea..fd7e304 100644 --- a/.github/CONTRIBUTING-ko.md +++ b/.github/CONTRIBUTING-ko.md @@ -88,8 +88,8 @@ ### 커밋 양식 -우리는 프로젝트의 커밋이 최대한 읽기 쉽도록 [Commitizen][commitizen] 와 [`commitlint`][commitlint]를 사용하고, [`semantic-release`][semantic-release]를 통해 출시가 자동화되어서, [감성적이지 않으려고 노력합니다.][sentimental-versioning]. - => 개발자 임의대로 출시 버젼을 지정하지 않도록 한다는 의미입니다. +우리는 프로젝트의 커밋이 최대한 읽기 쉽도록 [Commitizen][commitizen] 와 [`commitlint`][commitlint]를 사용하고, [`semantic-release`][semantic-release]를 통해 출시가 자동화되어서, [감성적이지 않으려고 노력합니다][sentimental-versioning]. +=> 개발자 임의대로 출시 버전을 지정하지 않도록 한다는 의미입니다.