diff --git a/README.md b/README.md index 7b3b7902..f4f00b2c 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Head over to [contribution guide](https://github.com/Roshanjossey/code-contribut [日本語](docs/translations/ja/README.ja.md) [Bahasa Indonesia](docs/translations/id/README.id.md) [中文](docs/translations/cn/README.cn.md) +[中文(繁體)](docs/translations/cn_hk/README.cn_hk.md) [Spain](docs/translations/es/README.es.md) [Türkiye](docs/translations/tr/README.tr.md) [Farsi](docs/translations/fa/README.fa.md) diff --git a/contributors/jiakeboge.html b/contributors/jiakeboge.html new file mode 100644 index 00000000..00fff001 --- /dev/null +++ b/contributors/jiakeboge.html @@ -0,0 +1,43 @@ +
+

jiakeboge

+

I'm a software engineer with a passion for building AI applications.

+

Programming languages I use

+
+
+ Python +
+
+ TypeScript +
+
+ +

Tools I use

+
+ + +
+
+ + \ No newline at end of file diff --git a/docs/translations/Translations.md b/docs/translations/Translations.md index 94d690d8..7decc42b 100644 --- a/docs/translations/Translations.md +++ b/docs/translations/Translations.md @@ -7,6 +7,7 @@ | Português (Brasil) | [Português (Brasil)](pt_br/README.pt_br.md) | | Bahasa Indonesia | [Bahasa Indonesia](id/README.id.md) | | 中文 | [中文](cn/README.cn.md) | +| 中文(繁體) | [中文(繁體)](cn_hk/README.cn_hk.md) | | Türkiye | [Türkiye](tr/README.tr.md) | | Italiano | [Italiano](it/README.it.md) | | Spain | [Spain](es/README.es.md) | diff --git a/docs/translations/cn-hk/CONTRIBUTING.cn-hk.md b/docs/translations/cn-hk/CONTRIBUTING.cn-hk.md new file mode 100644 index 00000000..536e5c8e --- /dev/null +++ b/docs/translations/cn-hk/CONTRIBUTING.cn-hk.md @@ -0,0 +1,143 @@ +# 提交的步驟 + +fork this repository + +## 點擊Fork按鈕来Fork這個程式碼倉庫(repo) + +## Clone(克隆)你對這個專案的Fork + +在你對這個專案的Fork倉庫中 , 點擊code按鈕。選擇SSH項然後點擊 `copy to clipboard` 按鈕。 + +clone this repository +打開一個終端然後運行 `git clone` 命令 + +```bash +git clone "url you copied" +``` + +> [!IMPORTANT] +> 在以下步驟當中,当你看見 `` 的时候,你應該用你的GitHub ID代替它。 +> +> 举个例子,如果你的GitHub ID 是 `aaronsw`, +> `git switch -c add-`實際上就應該是`git switch -c add-aaronsw` +> `contributors/.html` 實際上是 `contributors/aaronsw.html` +> +> + +copy URL to clipboard + +## 創建一個分支(branch) + +如果當前不在程式碼倉庫路徑下的话,請移動到那裡。 + +```bash +cd code-contributions +``` + +用 `git switch` 命令創建一個分支 + +```bash +git switch -c add- +``` + + +## 創建屬於你自己的卡片 + +在提交者目录下,你可以以HTML檔案的形式添加你的卡片。在提交者目錄中用你的使用者名創建一個檔案。為了方便你開始,你可以複製下面的網頁範本。 + +`contributors/.html` +```html +
+

Your username

+

A small bio about you (optional)

+

Programming languages I use

+
+
+ Python +
+
+ JavaScript +
+
+ +

Tools I use

+
+ + +
+
+ + +``` +## 在貢獻者清單裡添加屬於你的卡片 + +把你創建的檔案的名字添加到 `scripts/load-cards.js` 檔案。 + +`scripts/load-cards.js` +```js +const contributorFiles = [ + ".html", // add your file name here + "roshanjossey.html", + "gokultp.html", +]; +``` + +## 在一個網頁瀏覽器裡看你帶來的變化 + +你可以在一個瀏覽器裡打開`index.html` 檔案来查看你帶來的變化。 你應該可以看見你在前幾個步驟中添加的卡片。 + +你可以繼續在你的卡片上做出改變,然後刷新瀏覽器介面來看這些變化。 + +## 提交你做出的改變 + +首先用 `git add` 指令把你做出的改變添加到本地git倉庫 + +```bash +git add contributors/.html +``` + +然後用 `git commit` 指令 提交你做出的改變 + +```bash +git commit -m "add " +``` + +## 把你做的東西上傳到GitHub + +```bash +git push -u origin add- +``` + +## 為了便於檢查和回顧,提交你所做出的具體是什麼改变。 + +如果你前往自己的GitHub對這個專案的Fork倉庫,你可以看見一個`Compare & pull request` 按鈕。點擊這個按鈕。 + +create a pull request + +然後提交合併分支的請求(pull request,簡稱pr) + +submit pull request + +一旦你做出的改變被合併,你將會收到一封提示性的郵件。 diff --git a/docs/translations/cn-hk/README.cn-hk.md b/docs/translations/cn-hk/README.cn-hk.md new file mode 100644 index 00000000..8779e3e9 --- /dev/null +++ b/docs/translations/cn-hk/README.cn-hk.md @@ -0,0 +1,7 @@ +# 程式碼提交 + +這是一個用來讓你練習給有程式碼的開源專案提交程式碼的專案 + +我们希望你已经完成了[“第一次提交”專案](https://github.com/firstcontributions/first-contributions)上的练习 + +前往 [“提交指南”](CONTRIBUTING.zh-Hant.md) 開始這個練習吧! diff --git a/docs/translations/cn_hk/CONTRIBUTING.cn_hk.md b/docs/translations/cn_hk/CONTRIBUTING.cn_hk.md new file mode 100644 index 00000000..5aed9f59 --- /dev/null +++ b/docs/translations/cn_hk/CONTRIBUTING.cn_hk.md @@ -0,0 +1,143 @@ +# 提交的步驟 + +fork this repository + +## 點擊Fork按鈕来Fork這個代碼倉庫(repo) + +## Clone(克隆)你對這個專案的Fork + +在你對這個專案的Fork倉庫中 , 點擊code按鈕。選擇SSH項然後點擊 `copy to clipboard` 按鈕。 + +clone this repository +打開一個終端然後運行 `git clone` 命令 + +```bash +git clone "url you copied" +``` + +> [!IMPORTANT] +> 在以下步驟當中,当你看見 `` 的时候,你應該用你的GitHub ID代替它。 +> +> 举个例子,如果你的GitHub ID 是 `aaronsw`, +> `git switch -c add-`實際上就應該是`git switch -c add-aaronsw` +> `contributors/.html` 實際上是 `contributors/aaronsw.html` +> +> + +copy URL to clipboard + +## 創建一個分支(branch) + +如果當前不在代碼倉庫路徑下的话,請移動到那裡。 + +```bash +cd code-contributions +``` + +用 `git switch` 命令創建一個分支 + +```bash +git switch -c add- +``` + + +## 創建屬於你自己的卡片 + +在提交者目录下,你可以以HTML檔案的形式添加你的卡片。在提交者目錄中用你的使用者名創建一個檔案。為了方便你開始,你可以複製下面的網頁範本。 + +`contributors/.html` +```html +
+

Your username

+

A small bio about you (optional)

+

Programming languages I use

+
+
+ Python +
+
+ JavaScript +
+
+ +

Tools I use

+
+ + +
+
+ + +``` +## 在貢獻者清單裡添加屬於你的卡片 + +把你創建的檔案的名字添加到 `scripts/load-cards.js` 檔案。 + +`scripts/load-cards.js` +```js +const contributorFiles = [ + ".html", // add your file name here + "roshanjossey.html", + "gokultp.html", +]; +``` + +## 在一個網頁瀏覽器裡看你帶來的變化 + +你可以在一個瀏覽器裡打開`index.html` 檔案来查看你帶來的變化。 你應該可以看見你在前幾個步驟中添加的卡片。 + +你可以繼續在你的卡片上做出改變,然後刷新瀏覽器介面來看這些變化。 + +## 提交你做出的改變 + +首先用 `git add` 指令把你做出的改變添加到本地git倉庫 + +```bash +git add contributors/.html +``` + +然後用 `git commit` 指令 提交你做出的改變 + +```bash +git commit -m "add " +``` + +## 把你做的東西上傳到GitHub + +```bash +git push -u origin add- +``` + +## 為了便於檢查和回顧,提交你所做出的具體是什麼改变。 + +如果你前往自己的GitHub對這個專案的Fork倉庫,你可以看見一個`Compare & pull request` 按鈕。點擊這個按鈕。 + +create a pull request + +然後提交合併分支的請求(pull request,簡稱pr) + +submit pull request + +一旦你做出的改變被合併,你將會收到一封提示性的郵件。 diff --git a/docs/translations/cn_hk/README.cn_hk.md b/docs/translations/cn_hk/README.cn_hk.md new file mode 100644 index 00000000..b44eca8b --- /dev/null +++ b/docs/translations/cn_hk/README.cn_hk.md @@ -0,0 +1,7 @@ +# 代碼提交 + +這是一個用來讓你練習給有代碼的開源專案提交代碼的專案 + +我们希望你已经完成了[“第一次提交”專案](https://github.com/firstcontributions/first-contributions)上的练习 + +前往 [“提交指南”](CONTRIBUTING.cn_hk.md) 開始這個練習吧!