This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
187 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import os | ||
import sys | ||
|
||
def insert_content(file_path, start_tag, end_tag, content_insert): | ||
with open(file_path, "r") as file: | ||
file_contents = file.read() | ||
|
||
start_index = file_contents.find(start_tag) | ||
end_index = file_contents.find(end_tag) | ||
|
||
if start_index == -1 or end_tag == -1: | ||
print("未找到 Tags") | ||
sys.exit(1) | ||
|
||
updated_contents = ( | ||
file_contents[:start_index + len(start_tag)] + | ||
"\n" + | ||
content_insert + | ||
"\n" + | ||
file_contents[end_index:] | ||
) | ||
|
||
with open(file_path, "w") as file: | ||
file.write(updated_contents) | ||
|
||
def main(): | ||
file_path = os.environ.get("FILE_PATH") | ||
start_tag = os.environ.get("START_TAG") | ||
end_tag = os.environ.get("END_TAG") | ||
content = os.environ.get("CONTENT") | ||
envs = [file_path, start_tag, end_tag, content] | ||
|
||
if all(envs): | ||
insert_content(file_path, start_tag, end_tag, content) | ||
else: | ||
print("錯誤,有環境變數未存在!") | ||
sys.exit(1) | ||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,135 +1,137 @@ | ||
<!-- markdownlint-configure-file { | ||
"MD033": false, | ||
"MD041": false, | ||
"MD051": false | ||
} --> | ||
|
||
<div align="center"> | ||
|
||
# 模組翻譯包 | ||
|
||
[![Release][release-badge]][release-latest] | ||
[![Modrinth][modrinth-badge]][modrinth] | ||
[![License][CC BY-NC-ND 4.0]][main-license] | ||
[![Discord][discord-badge]][discord-invite] | ||
[![Stars][repo-stars]][github] | ||
|
||
<h3>一個包含了各式各樣的模組翻譯的資源包~ </h3> | ||
|
||
</div> | ||
|
||
--- | ||
|
||
<div align="center"> | ||
|
||
✭ [🌐 安裝翻譯包](#-安裝翻譯包) • [💫 貢獻與回報問題](#-貢獻與回報問題) • [✨ 第三方翻譯來源](#-第三方翻譯來源) • [💫 翻譯貢獻者](#-翻譯貢獻者) ✭ | ||
|
||
</div> | ||
|
||
--- | ||
|
||
## 🌐 安裝翻譯包 | ||
|
||
在 [Modrinth][modrinth] 平台上下載對應版本並放入遊戲資源包載入! | ||
|
||
翻譯包版本差異在於,部分模組在不同版本上會有不同的翻譯 | ||
|
||
同時也建議安裝下列模組來獲得更完整的中文化體驗! | ||
|
||
[PRP][prp]:PRP 是一個專門對某些 Patchouli 手冊的翻譯進行修補,有部分模組手冊需要此模組才會運作。 | ||
|
||
[Untranslated Items][untranslated-items]:讓你可以看見該物品的原始英文名稱,也可以在搜尋上用到。 | ||
|
||
## 🐞 貢獻與回報問題 | ||
|
||
遇到翻譯問題或是想要貢獻翻譯 | ||
|
||
歡迎加入 [Discord][discord-invite] 與翻譯者一起討論! | ||
|
||
或是參考我們的[貢獻指南][contributing]來開始你的旅程。 | ||
|
||
## ✨ 第三方翻譯來源 | ||
|
||
有部分翻譯為外部第三方翻譯 | ||
|
||
像是當模組官方已內建中文翻譯卻還沒有新版本 | ||
|
||
或是一些原因,將會內建一些第三方來源 | ||
|
||
感謝下列各個翻譯者所製作的模組翻譯! | ||
|
||
* 部分模組簡轉繁,原始專案組織 [CFPA Team](https://github.com/CFPAOrg)<br/> | ||
* [MMLP-CN-to-ZW](https://github.com/TeamKugimiya/MMLP-CN-to-ZW)<br/> | ||
[![CC BY-NC-SA 4.0][CC BY-NC-SA 4.0]](https://github.com/CFPAOrg/Minecraft-Mod-Language-Package/blob/main/LICENSE) | ||
* [CLOVERsquare](https://github.com/CLOVERsquare) | ||
* [Alchemistry](https://github.com/SmashingMods/Alchemistry)<br/> | ||
[![GPL 2.0][GPL 2.0]](https://github.com/SmashingMods/Alchemistry/blob/1.18.x/LICENSE) | ||
* [Jimmy-sheep](https://github.com/Jimmy-sheep) | ||
* [CoFHCore](https://github.com/CoFH/CoFHCore/tree/1.18.2) | ||
* [ThermalFoundation](https://github.com/CoFH/ThermalFoundation/tree/1.18.2) | ||
* [Julian Dunskus](https://github.com/juliand665) | ||
* [Dynamic FPS](https://github.com/juliand665/Dynamic-FPS)<br/> | ||
[![MIT][MIT]](https://github.com/juliand665/Dynamic-FPS/blob/main/LICENSE) | ||
* [steak0902](https://home.gamer.com.tw/homeindex.php?owner=minecraft15) | ||
* [Immersive Engineering](https://forum.gamer.com.tw/C.php?bsn=18673&snA=196127) | ||
* [Grant88](https://grant88.pixnet.net/blog) | ||
<details> | ||
<summary>展開列表</summary> | ||
<ul> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44752177">Cooking for Blockheads</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45187324">Macaw's Bridges</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45185876">Macaw's Doors</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45185932">Macaw's Fences and Walls</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44816824">Macaw's Furniture</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44817796">Macaw's Roofs</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45161058">Macaw's Trapdoors</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45185898">Macaw's Windows</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/40862752">MrCrayfish's Furniture Mod</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44935344">Productive Bees</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44360632">Simply Light</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45034372">Supplementaries</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/41564042">Tinkers' Construct</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44749600">Xaero's World Map</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44681823">Xaero's Minimap</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/40612096">The Twilight Forest</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44988448">Quark</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44851513">BetterNether</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44987473">BetterEnd</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44851513">BCLib</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/43700814">JourneyMap</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44292148">Fairy Lights</a></li> | ||
</ul> | ||
</details> | ||
|
||
## 💫 翻譯貢獻者 | ||
|
||
感謝以下貢獻者才能讓更多玩家體驗到完整的中文化模組體驗! | ||
|
||
<!-- CONTRIBUTORS_CI_START --><!-- CONTRIBUTORS_CI_END --> | ||
|
||
<!-- 徽章 --> | ||
[modrinth-badge]: https://img.shields.io/modrinth/dt/cF5VXmkW?label=Modrinth%20%E4%B8%8B%E8%BC%89%E6%95%B8&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMSAxMSIgd2lkdGg9IjE0LjY2NyIgaGVpZ2h0PSIxNC42NjciICB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxkZWZzPjxjbGlwUGF0aCBpZD0iQSI%2BPHBhdGggZD0iTTAgMGgxMXYxMUgweiIvPjwvY2xpcFBhdGg%2BPC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNBKSI%2BPHBhdGggZD0iTTEuMzA5IDcuODU3YTQuNjQgNC42NCAwIDAgMS0uNDYxLTEuMDYzSDBDLjU5MSA5LjIwNiAyLjc5NiAxMSA1LjQyMiAxMWMxLjk4MSAwIDMuNzIyLTEuMDIgNC43MTEtMi41NTZoMGwtLjc1LS4zNDVjLS44NTQgMS4yNjEtMi4zMSAyLjA5Mi0zLjk2MSAyLjA5MmE0Ljc4IDQuNzggMCAwIDEtMy4wMDUtMS4wNTVsMS44MDktMS40NzQuOTg0Ljg0NyAxLjkwNS0xLjAwM0w4LjE3NCA1LjgybC0uMzg0LS43ODYtMS4xMTYuNjM1LS41MTYuNjk0LS42MjYuMjM2LS44NzMtLjM4N2gwbC0uMjEzLS45MS4zNTUtLjU2Ljc4Ny0uMzcuODQ1LS45NTktLjcwMi0uNTEtMS44NzQuNzEzLTEuMzYyIDEuNjUxLjY0NSAxLjA5OC0xLjgzMSAxLjQ5MnptOS42MTQtMS40NEE1LjQ0IDUuNDQgMCAwIDAgMTEgNS41QzExIDIuNDY0IDguNTAxIDAgNS40MjIgMCAyLjc5NiAwIC41OTEgMS43OTQgMCA0LjIwNmguODQ4QzEuNDE5IDIuMjQ1IDMuMjUyLjgwOSA1LjQyMi44MDljMi42MjYgMCA0Ljc1OCAyLjEwMiA0Ljc1OCA0LjY5MSAwIC4xOS0uMDEyLjM3Ni0uMDM0LjU2bC43NzcuMzU3aDB6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiM1ZGE0MjYiLz48L2c%2BPC9zdmc%2B&style=flat-square | ||
[release-badge]: https://img.shields.io/github/v/release/xMikux/ModsTranslationPack?label=%E7%99%BC%E4%BD%88%E7%89%88&logo=semanticrelease&style=flat-square | ||
<!-- [release_beta]: https://img.shields.io/github/downloads/xMikux/ModsTranslationPack/total?label=下載測試版&logo=DocuSign&style=for-the-badge --> | ||
[discord-badge]: https://img.shields.io/discord/947630690315411476?label=%E9%87%98%E5%AE%AE%E7%BF%BB%E8%AD%AF%E7%B5%84&logo=discord&style=flat-square | ||
[repo-stars]: https://img.shields.io/github/stars/xMikux/ModsTranslationPack?label=%E2%AD%90%E6%98%9F%E6%98%9F%E6%95%B8&style=flat-square | ||
|
||
<!-- 授權條款徽章 --> | ||
[CC BY-NC-ND 4.0]: https://img.shields.io/badge/授權條款-CC%20BY--NC--ND%204.0-orange?style=flat-square&logo=creativecommons | ||
[CC BY-NC-SA 4.0]: https://img.shields.io/badge/授權條款-CC%20BY--NC--SA%204.0-orange?style=flat-square&logo=creativecommons | ||
[GPL 2.0]: https://img.shields.io/badge/授權條款-GPL%202.0-orange?style=flat-square&logo=gnu | ||
<!-- [GPL 3.0]: https://img.shields.io/badge/授權條款-GPL%203.0-orange?style=flat-square&logo=gnu --> | ||
[MIT]: https://img.shields.io/badge/授權條款-MIT-orange?style=flat-square | ||
|
||
<!-- 連結 --> | ||
[github]: https://github.com/xMikux/ModsTranslationPack | ||
[modrinth]: https://modrinth.com/resourcepack/modstranslationpack | ||
[release-latest]: https://github.com/xMikux/ModsTranslationPack/releases/latest | ||
<!-- [release-beta]: https://github.com/xMikux/ModsTranslationPack/releases/tag/latest --> | ||
[discord-invite]: https://discord.gg/7BbPMtygHU | ||
[prp]: https://www.curseforge.com/minecraft/mc-mods/prp | ||
[untranslated-items]: https://www.curseforge.com/minecraft/mc-mods/untranslated-items | ||
[contributing]: https://github.com/xMikux/ModsTranslationPack/blob/main/docs/CONTRIBUTING.md | ||
|
||
<!-- 授權條款 --> | ||
[main-license]: LICENSE | ||
<!-- markdownlint-configure-file { | ||
"MD033": false, | ||
"MD041": false, | ||
"MD051": false | ||
} --> | ||
|
||
<div align="center"> | ||
|
||
# 模組翻譯包 | ||
|
||
[![Release][release-badge]][release-latest] | ||
[![Modrinth][modrinth-badge]][modrinth] | ||
[![License][CC BY-NC-ND 4.0]][main-license] | ||
[![Discord][discord-badge]][discord-invite] | ||
[![Stars][repo-stars]][github] | ||
|
||
<h3>一個包含了各式各樣的模組翻譯的資源包~ </h3> | ||
|
||
</div> | ||
|
||
--- | ||
|
||
<div align="center"> | ||
|
||
✭ [🌐 安裝翻譯包](#-安裝翻譯包) • [💫 貢獻與回報問題](#-貢獻與回報問題) • [✨ 第三方翻譯來源](#-第三方翻譯來源) • [💫 翻譯貢獻者](#-翻譯貢獻者) ✭ | ||
|
||
</div> | ||
|
||
--- | ||
|
||
## 🌐 安裝翻譯包 | ||
|
||
在 [Modrinth][modrinth] 平台上下載對應版本並放入遊戲資源包載入! | ||
|
||
翻譯包版本差異在於,部分模組在不同版本上會有不同的翻譯 | ||
|
||
同時也建議安裝下列模組來獲得更完整的中文化體驗! | ||
|
||
[PRP][prp]:PRP 是一個專門對某些 Patchouli 手冊的翻譯進行修補,有部分模組手冊需要此模組才會運作。 | ||
|
||
[Untranslated Items][untranslated-items]:讓你可以看見該物品的原始英文名稱,也可以在搜尋上用到。 | ||
|
||
## 🐞 貢獻與回報問題 | ||
|
||
遇到翻譯問題或是想要貢獻翻譯 | ||
|
||
歡迎加入 [Discord][discord-invite] 與翻譯者一起討論! | ||
|
||
或是參考我們的[貢獻指南][contributing]來開始你的旅程。 | ||
|
||
## ✨ 第三方翻譯來源 | ||
|
||
有部分翻譯為外部第三方翻譯 | ||
|
||
像是當模組官方已內建中文翻譯卻還沒有新版本 | ||
|
||
或是一些原因,將會內建一些第三方來源 | ||
|
||
感謝下列各個翻譯者所製作的模組翻譯! | ||
|
||
* 部分模組簡轉繁,原始專案組織 [CFPA Team](https://github.com/CFPAOrg)<br/> | ||
* [MMLP-CN-to-ZW](https://github.com/TeamKugimiya/MMLP-CN-to-ZW)<br/> | ||
[![CC BY-NC-SA 4.0][CC BY-NC-SA 4.0]](https://github.com/CFPAOrg/Minecraft-Mod-Language-Package/blob/main/LICENSE) | ||
* [CLOVERsquare](https://github.com/CLOVERsquare) | ||
* [Alchemistry](https://github.com/SmashingMods/Alchemistry)<br/> | ||
[![GPL 2.0][GPL 2.0]](https://github.com/SmashingMods/Alchemistry/blob/1.18.x/LICENSE) | ||
* [Jimmy-sheep](https://github.com/Jimmy-sheep) | ||
* [CoFHCore](https://github.com/CoFH/CoFHCore/tree/1.18.2) | ||
* [ThermalFoundation](https://github.com/CoFH/ThermalFoundation/tree/1.18.2) | ||
* [Julian Dunskus](https://github.com/juliand665) | ||
* [Dynamic FPS](https://github.com/juliand665/Dynamic-FPS)<br/> | ||
[![MIT][MIT]](https://github.com/juliand665/Dynamic-FPS/blob/main/LICENSE) | ||
* [steak0902](https://home.gamer.com.tw/homeindex.php?owner=minecraft15) | ||
* [Immersive Engineering](https://forum.gamer.com.tw/C.php?bsn=18673&snA=196127) | ||
* [Grant88](https://grant88.pixnet.net/blog) | ||
<details> | ||
<summary>展開列表</summary> | ||
<ul> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44752177">Cooking for Blockheads</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45187324">Macaw's Bridges</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45185876">Macaw's Doors</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45185932">Macaw's Fences and Walls</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44816824">Macaw's Furniture</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44817796">Macaw's Roofs</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45161058">Macaw's Trapdoors</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45185898">Macaw's Windows</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/40862752">MrCrayfish's Furniture Mod</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44935344">Productive Bees</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44360632">Simply Light</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/45034372">Supplementaries</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/41564042">Tinkers' Construct</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44749600">Xaero's World Map</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44681823">Xaero's Minimap</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/40612096">The Twilight Forest</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44988448">Quark</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44851513">BetterNether</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44987473">BetterEnd</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44851513">BCLib</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/43700814">JourneyMap</a></li> | ||
<li><a href="https://grant88.pixnet.net/blog/post/44292148">Fairy Lights</a></li> | ||
</ul> | ||
</details> | ||
|
||
## 💫 翻譯貢獻者 | ||
|
||
感謝以下貢獻者才能讓更多玩家體驗到完整的中文化模組體驗! | ||
|
||
<!-- CONTRIBUTORS_CI_START --> | ||
|
||
<!-- CONTRIBUTORS_CI_END --> | ||
|
||
<!-- 徽章 --> | ||
[modrinth-badge]: https://img.shields.io/modrinth/dt/cF5VXmkW?label=Modrinth%20%E4%B8%8B%E8%BC%89%E6%95%B8&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMSAxMSIgd2lkdGg9IjE0LjY2NyIgaGVpZ2h0PSIxNC42NjciICB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxkZWZzPjxjbGlwUGF0aCBpZD0iQSI%2BPHBhdGggZD0iTTAgMGgxMXYxMUgweiIvPjwvY2xpcFBhdGg%2BPC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNBKSI%2BPHBhdGggZD0iTTEuMzA5IDcuODU3YTQuNjQgNC42NCAwIDAgMS0uNDYxLTEuMDYzSDBDLjU5MSA5LjIwNiAyLjc5NiAxMSA1LjQyMiAxMWMxLjk4MSAwIDMuNzIyLTEuMDIgNC43MTEtMi41NTZoMGwtLjc1LS4zNDVjLS44NTQgMS4yNjEtMi4zMSAyLjA5Mi0zLjk2MSAyLjA5MmE0Ljc4IDQuNzggMCAwIDEtMy4wMDUtMS4wNTVsMS44MDktMS40NzQuOTg0Ljg0NyAxLjkwNS0xLjAwM0w4LjE3NCA1LjgybC0uMzg0LS43ODYtMS4xMTYuNjM1LS41MTYuNjk0LS42MjYuMjM2LS44NzMtLjM4N2gwbC0uMjEzLS45MS4zNTUtLjU2Ljc4Ny0uMzcuODQ1LS45NTktLjcwMi0uNTEtMS44NzQuNzEzLTEuMzYyIDEuNjUxLjY0NSAxLjA5OC0xLjgzMSAxLjQ5MnptOS42MTQtMS40NEE1LjQ0IDUuNDQgMCAwIDAgMTEgNS41QzExIDIuNDY0IDguNTAxIDAgNS40MjIgMCAyLjc5NiAwIC41OTEgMS43OTQgMCA0LjIwNmguODQ4QzEuNDE5IDIuMjQ1IDMuMjUyLjgwOSA1LjQyMi44MDljMi42MjYgMCA0Ljc1OCAyLjEwMiA0Ljc1OCA0LjY5MSAwIC4xOS0uMDEyLjM3Ni0uMDM0LjU2bC43NzcuMzU3aDB6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiM1ZGE0MjYiLz48L2c%2BPC9zdmc%2B&style=flat-square | ||
[release-badge]: https://img.shields.io/github/v/release/xMikux/ModsTranslationPack?label=%E7%99%BC%E4%BD%88%E7%89%88&logo=semanticrelease&style=flat-square | ||
<!-- [release_beta]: https://img.shields.io/github/downloads/xMikux/ModsTranslationPack/total?label=下載測試版&logo=DocuSign&style=for-the-badge --> | ||
[discord-badge]: https://img.shields.io/discord/947630690315411476?label=%E9%87%98%E5%AE%AE%E7%BF%BB%E8%AD%AF%E7%B5%84&logo=discord&style=flat-square | ||
[repo-stars]: https://img.shields.io/github/stars/xMikux/ModsTranslationPack?label=%E2%AD%90%E6%98%9F%E6%98%9F%E6%95%B8&style=flat-square | ||
|
||
<!-- 授權條款徽章 --> | ||
[CC BY-NC-ND 4.0]: https://img.shields.io/badge/授權條款-CC%20BY--NC--ND%204.0-orange?style=flat-square&logo=creativecommons | ||
[CC BY-NC-SA 4.0]: https://img.shields.io/badge/授權條款-CC%20BY--NC--SA%204.0-orange?style=flat-square&logo=creativecommons | ||
[GPL 2.0]: https://img.shields.io/badge/授權條款-GPL%202.0-orange?style=flat-square&logo=gnu | ||
<!-- [GPL 3.0]: https://img.shields.io/badge/授權條款-GPL%203.0-orange?style=flat-square&logo=gnu --> | ||
[MIT]: https://img.shields.io/badge/授權條款-MIT-orange?style=flat-square | ||
|
||
<!-- 連結 --> | ||
[github]: https://github.com/xMikux/ModsTranslationPack | ||
[modrinth]: https://modrinth.com/resourcepack/modstranslationpack | ||
[release-latest]: https://github.com/xMikux/ModsTranslationPack/releases/latest | ||
<!-- [release-beta]: https://github.com/xMikux/ModsTranslationPack/releases/tag/latest --> | ||
[discord-invite]: https://discord.gg/7BbPMtygHU | ||
[prp]: https://www.curseforge.com/minecraft/mc-mods/prp | ||
[untranslated-items]: https://www.curseforge.com/minecraft/mc-mods/untranslated-items | ||
[contributing]: https://github.com/xMikux/ModsTranslationPack/blob/main/docs/CONTRIBUTING.md | ||
|
||
<!-- 授權條款 --> | ||
[main-license]: LICENSE |