From 72ff0392d6901def95dfe9067902a9bf6e0c5c4a Mon Sep 17 00:00:00 2001 From: Min Date: Thu, 8 May 2025 23:20:06 +0800 Subject: [PATCH 1/8] docs: add Traditional Chinese version of README --- README.zh-TW.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.zh-TW.md diff --git a/README.zh-TW.md b/README.zh-TW.md new file mode 100644 index 0000000..78fd760 --- /dev/null +++ b/README.zh-TW.md @@ -0,0 +1,35 @@ +# URL Shorteners + +🌐 [English](./README.md) | 繁體中文 + +[![Build Status](https://img.shields.io/travis/com/PeterDaveHello/url-shorteners/master.svg?style=flat-square)](https://app.travis-ci.com/PeterDaveHello/url-shorteners) +[![GitHub license](https://img.shields.io/github/license/PeterDaveHello/url-shorteners?style=flat-square)](https://github.com/PeterDaveHello/url-shorteners/blob/master/LICENSE) + +這是一個包含逾千個 URL 短網址服務網域的完整清單,可用於建立白名單/允許清單、黑名單/封鎖清單,或作為網域可信度評估等多種用途。此清單已受到 NextDNS、RethinkDNS、ControlD、dnslow.me 及各個 OSINT 專案採用。這些高品質清單旨在強化網路安全、隱私保護及降低網域風險評估中的誤判。請在使用這些清單時自行斟酌風險。 + +請注意,因為維護這些清單需要大量的時間與心力,本儲存庫不會即時更新。歡迎您的貢獻——無論是回報缺失的網域、誤判網域,或是透過捐款支持本專案。 + +曾被誤判或已停止短網址服務的網域將不列於 `list` 檔案,而會記錄於 `inactive` 檔案中。 + +## 直接連結 + +使用以下連結訂閱或下載檔案: + +- 有效的 URL 短網址服務: +- 失效的 URL 短網址服務: + +## 使用情境 + +這些網域清單可應用於多種網路環境以達到不同目的,包括: + +- 直接作為白名單/允許清單或黑名單/封鎖清單 +- 減少安全與隱私保護中的誤判 +- 作為風險評估流程中的網域可信度評估部分 + +## 貢獻 + +非常感謝您協助維護與改進這些清單。若需回報缺失的網域、誤判或其他任何問題,請至 GitHub 提交 issue 或 pull request 。 + +## 授權 + +本專案以 [創用 CC 姓名標示-相同方式分享 4.0 國際授權條款 (CC-BY-SA-4.0)](https://creativecommons.org/licenses/by-sa/4.0/) 授權。 From 6c5d77b1359c6447a9786d604c41853a8c8e949d Mon Sep 17 00:00:00 2001 From: Min Date: Thu, 8 May 2025 23:21:35 +0800 Subject: [PATCH 2/8] docs: add language switching options to README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 92baaef..8c7252e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # URL Shorteners +🌐 English | [繁體中文](./README.zh-TW.md) + [![Build Status](https://img.shields.io/travis/com/PeterDaveHello/url-shorteners/master.svg?style=flat-square)](https://app.travis-ci.com/PeterDaveHello/url-shorteners) [![GitHub license](https://img.shields.io/github/license/PeterDaveHello/url-shorteners?style=flat-square)](https://github.com/PeterDaveHello/url-shorteners/blob/master/LICENSE) From ac4431ccf532cc519ba3b70bbbf8cb6c6dc6f214 Mon Sep 17 00:00:00 2001 From: Min Date: Fri, 9 May 2025 00:50:45 +0800 Subject: [PATCH 3/8] docs: add Traditional Chinese (zh-TW) templates - Add zh-TW version of issue template - Add zh-TW version of pull request template - Update existing templates formatting - Update zh-TW README content for readability improvements --- .github/ISSUE_TEMPLATE/issue_template.md | 2 +- .../ISSUE_TEMPLATE/issue_template.zh-TW.md | 25 ++++++++++++++++++ .github/pull_request_template.md | 2 +- .github/pull_request_template.zh-TW.md | 26 +++++++++++++++++++ README.zh-TW.md | 4 +-- 5 files changed, 55 insertions(+), 4 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/issue_template.zh-TW.md create mode 100644 .github/pull_request_template.zh-TW.md diff --git a/.github/ISSUE_TEMPLATE/issue_template.md b/.github/ISSUE_TEMPLATE/issue_template.md index 40d2b35..3be6484 100644 --- a/.github/ISSUE_TEMPLATE/issue_template.md +++ b/.github/ISSUE_TEMPLATE/issue_template.md @@ -10,7 +10,7 @@ ## Verification Examples -``` +```text 1. http://short.example/abc -> https://www.actual-domain.com/page1 2. ... ``` diff --git a/.github/ISSUE_TEMPLATE/issue_template.zh-TW.md b/.github/ISSUE_TEMPLATE/issue_template.zh-TW.md new file mode 100644 index 0000000..429fb96 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue_template.zh-TW.md @@ -0,0 +1,25 @@ +# Issue 模板 + +## 描述 + + +## 涉及網域 + +1. ... +2. ... + +## 驗證範例 + +```text +1. http://short.example/abc -> https://www.actual-domain.com/page1 +2. ... +``` + +## 驗證步驟 + +- [ ] 已確認所回報的網域正確且與短網址服務用途相關。 +- [ ] 已為每個回報的問題提供清楚證據(如連結、日誌等)。 + +## 補充內容 + +提供日誌、參考資料或其他詳細資訊,以協助我們瞭解並解決您的問題。 diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index fd8f930..ef6af3a 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -6,7 +6,7 @@ ## Domain Usage Proof -``` +```text 1. http://short.example/abc -> https://www.actual-domain.com/page1 2. http://short.example/def -> https://www.actual-domain.com/page2 3. ... diff --git a/.github/pull_request_template.zh-TW.md b/.github/pull_request_template.zh-TW.md new file mode 100644 index 0000000..a03fed7 --- /dev/null +++ b/.github/pull_request_template.zh-TW.md @@ -0,0 +1,26 @@ +# Pull Request 模板 + +## 描述 + + +## 網域使用證明 + + +```text +1. http://short.example/abc -> https://www.actual-domain.com/page1 +2. http://short.example/def -> https://www.actual-domain.com/page2 +3. ... +``` + +## 檢查清單 + +- [ ] 我已確認這些短網址服務網域狀態(active 有效/inactive 失效)與所示一致。 +- [ ] 我已驗證每個網域的使用證據皆是正確且最新的。 + +## 調整原因 + +說明為何要新增或移除這些網域(例如:失效、誤判、發現新短網址服務等)。 + +## 補充說明 + +任何給維護者的補充資訊或注意事項。 diff --git a/README.zh-TW.md b/README.zh-TW.md index 78fd760..ba81e03 100644 --- a/README.zh-TW.md +++ b/README.zh-TW.md @@ -5,9 +5,9 @@ [![Build Status](https://img.shields.io/travis/com/PeterDaveHello/url-shorteners/master.svg?style=flat-square)](https://app.travis-ci.com/PeterDaveHello/url-shorteners) [![GitHub license](https://img.shields.io/github/license/PeterDaveHello/url-shorteners?style=flat-square)](https://github.com/PeterDaveHello/url-shorteners/blob/master/LICENSE) -這是一個包含逾千個 URL 短網址服務網域的完整清單,可用於建立白名單/允許清單、黑名單/封鎖清單,或作為網域可信度評估等多種用途。此清單已受到 NextDNS、RethinkDNS、ControlD、dnslow.me 及各個 OSINT 專案採用。這些高品質清單旨在強化網路安全、隱私保護及降低網域風險評估中的誤判。請在使用這些清單時自行斟酌風險。 +這是一個包含逾千個 URL 短網址服務網域的完整清單,可用於建立白名單/允許清單、黑名單/封鎖清單,或作為網域可信度評估等多種用途。此清單已被 NextDNS、RethinkDNS、ControlD、dnslow.me 及各個 OSINT 專案採用。這些高品質清單旨在強化網路安全、隱私保護及降低網域風險評估中的誤判。請在使用這些清單時自行斟酌風險。 -請注意,因為維護這些清單需要大量的時間與心力,本儲存庫不會即時更新。歡迎您的貢獻——無論是回報缺失的網域、誤判網域,或是透過捐款支持本專案。 +請注意,因為維護這些清單需耗費大量時間與心力,本儲存庫不會即時更新。歡迎您的貢獻——無論是回報缺失的網域、誤判網域,或是透過捐款支持本專案。 曾被誤判或已停止短網址服務的網域將不列於 `list` 檔案,而會記錄於 `inactive` 檔案中。 From d3c0741b95ac8d3737c2f205ab18152ab83e7234 Mon Sep 17 00:00:00 2001 From: Min <110502513@cc.ncu.edu.tw> Date: Fri, 9 May 2025 19:09:08 +0800 Subject: [PATCH 4/8] Revert issue_template.md formatting --- .github/ISSUE_TEMPLATE/issue_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/issue_template.md b/.github/ISSUE_TEMPLATE/issue_template.md index 3be6484..40d2b35 100644 --- a/.github/ISSUE_TEMPLATE/issue_template.md +++ b/.github/ISSUE_TEMPLATE/issue_template.md @@ -10,7 +10,7 @@ ## Verification Examples -```text +``` 1. http://short.example/abc -> https://www.actual-domain.com/page1 2. ... ``` From ab53637251b1519f04cf3eea40682798ef078d00 Mon Sep 17 00:00:00 2001 From: Min <110502513@cc.ncu.edu.tw> Date: Fri, 9 May 2025 19:09:48 +0800 Subject: [PATCH 5/8] Revert pull_request_template.md formatting --- .github/pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index ef6af3a..fd8f930 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -6,7 +6,7 @@ ## Domain Usage Proof -```text +``` 1. http://short.example/abc -> https://www.actual-domain.com/page1 2. http://short.example/def -> https://www.actual-domain.com/page2 3. ... From f3042ff633e7bfab141d4e800b036f04cda4debf Mon Sep 17 00:00:00 2001 From: Min <110502513@cc.ncu.edu.tw> Date: Fri, 9 May 2025 19:10:13 +0800 Subject: [PATCH 6/8] Delete .github/ISSUE_TEMPLATE/issue_template.zh-TW.md --- .../ISSUE_TEMPLATE/issue_template.zh-TW.md | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/issue_template.zh-TW.md diff --git a/.github/ISSUE_TEMPLATE/issue_template.zh-TW.md b/.github/ISSUE_TEMPLATE/issue_template.zh-TW.md deleted file mode 100644 index 429fb96..0000000 --- a/.github/ISSUE_TEMPLATE/issue_template.zh-TW.md +++ /dev/null @@ -1,25 +0,0 @@ -# Issue 模板 - -## 描述 - - -## 涉及網域 - -1. ... -2. ... - -## 驗證範例 - -```text -1. http://short.example/abc -> https://www.actual-domain.com/page1 -2. ... -``` - -## 驗證步驟 - -- [ ] 已確認所回報的網域正確且與短網址服務用途相關。 -- [ ] 已為每個回報的問題提供清楚證據(如連結、日誌等)。 - -## 補充內容 - -提供日誌、參考資料或其他詳細資訊,以協助我們瞭解並解決您的問題。 From 80f2d0545ca3b55f480db6ac72bb86cdf1fbfc19 Mon Sep 17 00:00:00 2001 From: Min <110502513@cc.ncu.edu.tw> Date: Fri, 9 May 2025 19:10:32 +0800 Subject: [PATCH 7/8] Delete .github/pull_request_template.zh-TW.md --- .github/pull_request_template.zh-TW.md | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/pull_request_template.zh-TW.md diff --git a/.github/pull_request_template.zh-TW.md b/.github/pull_request_template.zh-TW.md deleted file mode 100644 index a03fed7..0000000 --- a/.github/pull_request_template.zh-TW.md +++ /dev/null @@ -1,26 +0,0 @@ -# Pull Request 模板 - -## 描述 - - -## 網域使用證明 - - -```text -1. http://short.example/abc -> https://www.actual-domain.com/page1 -2. http://short.example/def -> https://www.actual-domain.com/page2 -3. ... -``` - -## 檢查清單 - -- [ ] 我已確認這些短網址服務網域狀態(active 有效/inactive 失效)與所示一致。 -- [ ] 我已驗證每個網域的使用證據皆是正確且最新的。 - -## 調整原因 - -說明為何要新增或移除這些網域(例如:失效、誤判、發現新短網址服務等)。 - -## 補充說明 - -任何給維護者的補充資訊或注意事項。 From cff4422b7621bf857a3a27689c544205cb70352b Mon Sep 17 00:00:00 2001 From: Min <110502513@cc.ncu.edu.tw> Date: Fri, 23 May 2025 19:18:11 +0800 Subject: [PATCH 8/8] Update README.zh-TW.md for naturalness Refine wording in README.zh-TW.md for improved naturalness. --- README.zh-TW.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.zh-TW.md b/README.zh-TW.md index ba81e03..16dffb3 100644 --- a/README.zh-TW.md +++ b/README.zh-TW.md @@ -5,7 +5,7 @@ [![Build Status](https://img.shields.io/travis/com/PeterDaveHello/url-shorteners/master.svg?style=flat-square)](https://app.travis-ci.com/PeterDaveHello/url-shorteners) [![GitHub license](https://img.shields.io/github/license/PeterDaveHello/url-shorteners?style=flat-square)](https://github.com/PeterDaveHello/url-shorteners/blob/master/LICENSE) -這是一個包含逾千個 URL 短網址服務網域的完整清單,可用於建立白名單/允許清單、黑名單/封鎖清單,或作為網域可信度評估等多種用途。此清單已被 NextDNS、RethinkDNS、ControlD、dnslow.me 及各個 OSINT 專案採用。這些高品質清單旨在強化網路安全、隱私保護及降低網域風險評估中的誤判。請在使用這些清單時自行斟酌風險。 +這是一份彙整了上千筆 URL 短網址服務網域的完整清單,可用於建立白名單/允許清單、黑名單/封鎖清單,或作為網域可信度評估的參考等。此清單已被 NextDNS、RethinkDNS、ControlD、dnslow.me 及多個 OSINT 專案採用。這些高品質清單有助於強化網路安全、保護隱私及降低網域風險評估時的誤判。請在使用時自行評估相關風險。 請注意,因為維護這些清單需耗費大量時間與心力,本儲存庫不會即時更新。歡迎您的貢獻——無論是回報缺失的網域、誤判網域,或是透過捐款支持本專案。