diff --git a/.github/scripts/assets_folder.sh b/.github/scripts/assets_folder.sh
deleted file mode 100755
index f796d2bcc..000000000
--- a/.github/scripts/assets_folder.sh
+++ /dev/null
@@ -1,125 +0,0 @@
-#!/bin/bash
-
-make_file () {
- file_name=ModsList.md
- mods_count=$(ls MultiVersions/Forge/main/ | wc -l)
- touch $file_name
- {
- echo "# 模組清單"
- echo ""
- echo "此清單用於記錄模組翻譯回饋至該模組專案"
- echo ""
- echo "目前已收錄 \`\`$mods_count\`\` 款模組"
- echo ""
- echo "| 模組名稱 | 貢獻 | PR | 翻譯變動 |"
- echo "| ------ | ------ | ------ | ------ |"
- } > $file_name
-}
-
-list_dir () {
- find MultiVersions/Forge/main/ -maxdepth 1 -type d -exec echo "$1" \; >> "$2"
-}
-
-modslist_generate () {
- file_name=modslist_result.md
- list_dir '| {} | :x: | | |' $file_name
- sed -i "1s+| MultiVersions/Forge/main/ | :x: | | |++" $file_name
- sed -i "s+MultiVersions/Forge/main/++" $file_name
- sed -i "/^$/d" $file_name
-}
-
-modslist_added_mod_generate () {
- file_name=modslist_result.md
- x_placeholder=" | :x: | | |"
- question_placeholder=" | :question: |"
- check_placeholder=" | :heavy_check_mark: |"
-
- if [ "$1" = 1 ]; then
- sed -i "s+$2$x_placeholder+$2$check_placeholder [已回饋]($3) | |+" $file_name
- elif [ "$1" = 2 ]; then
- sed -i "s+$2$x_placeholder+$2$check_placeholder [已回饋]($3) | :heavy_exclamation_mark: |+" $file_name
- elif [ "$1" = 3 ]; then
- sed -i "s+$2$x_placeholder+$2$question_placeholder [等待合併]($3) | |+" $file_name
- elif [ "$1" = 4 ]; then
- sed -i "s+$2$x_placeholder+$2$question_placeholder Crowdin | |+" $file_name
- fi
-}
-
-sort_file () {
- sort -o modslist_result_sorted.md modslist_result.md
-}
-
-combind_file () {
- cat modslist_result_sorted.md >> ModsList.md
- mv ModsList.md docs/ModsList.md
- rm modslist_result_sorted.md modslist_result.md
-}
-
-# Main
-modslist_generate
-
-## Status Code
-#
-# 1 已回饋
-# 2 已回饋,但翻譯在本專案有更新
-# 3 等待合併
-# 4 提交上 Crowdin 或同步 Crowdin
-
-### Screencapper
-modslist_added_mod_generate "2" "screencapper" "https://github.com/Deftu/Screencapper/pull/6"
-
-## Sodium & Sodium Extra
-modslist_added_mod_generate "4" "sodium"
-modslist_added_mod_generate "4" "sodium-extra"
-
-## Auto ModPack
-modslist_added_mod_generate "1" "automodpack" "https://github.com/Skidamek/AutoModpack/pull/64"
-
-## EnergyMeter
-modslist_added_mod_generate "2" "energymeter" "https://github.com/AlmostReliable/energymeter-forge/pull/26"
-
-### TrashCans
-modslist_added_mod_generate "1" "trashcans" "https://github.com/SuperMartijn642/TrashCans/pull/25"
-
-### Flux Networks
-modslist_added_mod_generate "1" "fluxnetworks" "https://github.com/SonarSonic/Flux-Networks/pull/482"
-
-### YetAnotherConfigLib
-modslist_added_mod_generate "1" "yet-another-config-lib" "https://github.com/isXander/YetAnotherConfigLib/pull/31"
-
-### ExNihiloSequentia
-modslist_added_mod_generate "1" "exnihiloae" "https://github.com/NovaMachina-Mods/ExNihiloSequentia/pull/380"
-modslist_added_mod_generate "1" "exnihilomekanism" "https://github.com/NovaMachina-Mods/ExNihiloSequentia/pull/380"
-modslist_added_mod_generate "1" "exnihilosequentia" "https://github.com/NovaMachina-Mods/ExNihiloSequentia/pull/380"
-modslist_added_mod_generate "1" "exnihilothermal" "https://github.com/NovaMachina-Mods/ExNihiloSequentia/pull/380"
-modslist_added_mod_generate "1" "exnihilotinkers" "https://github.com/NovaMachina-Mods/ExNihiloSequentia/pull/380"
-
-### LanguageReload
-modslist_added_mod_generate "1" "languagereload" "https://github.com/Jerozgen/LanguageReload/pull/20"
-
-### BorderlessMining
-modslist_added_mod_generate "1" "borderlessmining" "https://github.com/comp500/BorderlessMining/pull/56"
-
-### SlimefunToEMI
-modslist_added_mod_generate "3" "sftoemi" "https://github.com/JustAHuman-xD/SlimefunToEMI/pull/2"
-
-### CITResewn
-modslist_added_mod_generate "1" "citresewn" "https://github.com/SHsuperCM/CITResewn/pull/219"
-modslist_added_mod_generate "1" "citresewn-defaults" "https://github.com/SHsuperCM/CITResewn/pull/219"
-
-### Fabric Capes
-modslist_added_mod_generate "1" "capes" "https://github.com/CaelTheColher/Capes/pull/85"
-
-### EntityCulling
-modslist_added_mod_generate "1" "entityculling" "https://github.com/tr7zw/EntityCulling/pull/94"
-
-### GraphUtil
-modslist_added_mod_generate "1" "graphutil" "https://github.com/tr7zw/GraphUtil/pull/4"
-
-### Debugify
-modslist_added_mod_generate "3" "debugify" "https://github.com/isXander/Debugify/pull/213"
-
-# Finish
-sort_file
-make_file
-combind_file
diff --git a/.github/workflows/ModsList-Updater.yml b/.github/workflows/ModsList-Updater.yml
deleted file mode 100644
index 178994681..000000000
--- a/.github/workflows/ModsList-Updater.yml
+++ /dev/null
@@ -1,49 +0,0 @@
-name: ModsList Updater
-
-on:
- workflow_dispatch: {}
- schedule:
- - cron: "0 0 * * *"
-
-permissions:
- contents: write
- pull-requests: write
-
-jobs:
- Updater:
- name: ModsList docs updater
- runs-on: ubuntu-latest
- if: |
- github.repository == 'xMikux/ModsTranslationPack'
-
- steps:
- - name: Checking Repository
- uses: actions/checkout@v3
-
- - name: Run script
- run: ./.github/scripts/assets_folder.sh
-
- - name: Date
- id: date
- run: |
- echo "date=$(date)" >> $GITHUB_OUTPUT
-
- - name: Create Pull Request
- uses: peter-evans/create-pull-request@v4
- with:
- committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- branch: "docs/action-modslist"
- commit-message: "docs(ModsList): 更新模組清單"
- title: "docs(ModsList): 更新模組清單"
- body: |
- 自動化 [GitHub Action][github-action] 更新模組清單文件。
- 產生時間:${{ steps.date.outputs.date }}
-
- ------
- 由 [create-pull-request][cpr] 製作
-
- [cpr]: https://github.com/peter-evans/create-pull-request
- [github-action]: https://github.com/features/actions
- labels: |
- 📃 文件
diff --git a/README.md b/README.md
index e9154418b..8e2eccc57 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,8 @@
[![Discord][discord-badge]][discord-invite]
[![Stars][repo-stars]][github]
-
一個包含了各式各樣的模組翻譯的資源包~
+一個包含了各式各樣的模組翻譯的資源包~
+目前已收錄 320
款模組
diff --git a/docs/ModsList.md b/docs/ModsList.md
deleted file mode 100644
index 859ffd903..000000000
--- a/docs/ModsList.md
+++ /dev/null
@@ -1,328 +0,0 @@
-# 模組清單
-
-此清單用於記錄模組翻譯回饋至該模組專案
-
-目前已收錄 ``320`` 款模組
-
-| 模組名稱 | 貢獻 | PR | 翻譯變動 |
-| ------ | ------ | ------ | ------ |
-| additionalbars | :x: | | |
-| additionallanterns | :x: | | |
-| advanced-xray-fabric | :x: | | |
-| advancementinfo | :x: | | |
-| advgenerators | :x: | | |
-| ae2 | :x: | | |
-| ae2things | :x: | | |
-| ae2wtlib | :x: | | |
-| aeinfinitybooster | :x: | | |
-| akashictome | :x: | | |
-| alchemylib | :x: | | |
-| allthecompressed | :x: | | |
-| allthemodium | :x: | | |
-| alltheores | :x: | | |
-| allthetweaks | :x: | | |
-| angelring | :x: | | |
-| animatica | :x: | | |
-| another_furniture | :x: | | |
-| apotheosis | :x: | | |
-| appbot | :x: | | |
-| appmek | :x: | | |
-| archers_paradox | :x: | | |
-| ars_creo | :x: | | |
-| auditory | :x: | | |
-| autoclicker-fabric | :x: | | |
-| autofish | :x: | | |
-| automodpack | :heavy_check_mark: | [已回饋](https://github.com/Skidamek/AutoModpack/pull/64) | |
-| autosmithingtable | :x: | | |
-| avaritia | :x: | | |
-| bambooeverything | :x: | | |
-| barteringstation | :x: | | |
-| bcc | :x: | | |
-| bdlib | :x: | | |
-| betterdeserttemples | :x: | | |
-| betterf3 | :x: | | |
-| betteroceanmonuments | :x: | | |
-| betterstats | :x: | | |
-| betterstrongholds | :x: | | |
-| bettertridents | :x: | | |
-| betterwitchhuts | :x: | | |
-| bhc | :x: | | |
-| bhmenu | :x: | | |
-| biggerreactors | :x: | | |
-| blackdogsmoddinglibrary | :x: | | |
-| blockui | :x: | | |
-| blockydoors | :x: | | |
-| blur | :x: | | |
-| boatiview | :x: | | |
-| bonsaitrees3 | :x: | | |
-| bookshelf | :x: | | |
-| borderlessmining | :heavy_check_mark: | [已回饋](https://github.com/comp500/BorderlessMining/pull/56) | |
-| botanypots | :x: | | |
-| bountiful | :x: | | |
-| buddingcrystals | :x: | | |
-| buildinggadgets | :x: | | |
-| cabletiers | :x: | | |
-| capes | :heavy_check_mark: | [已回饋](https://github.com/CaelTheColher/Capes/pull/85) | |
-| carryon | :x: | | |
-| catalogue | :x: | | |
-| caveopolis | :x: | | |
-| cccbridge | :x: | | |
-| cem | :x: | | |
-| champions | :x: | | |
-| chancecubes | :x: | | |
-| chargers | :x: | | |
-| charginggadgets | :x: | | |
-| charmonium | :x: | | |
-| chat_heads | :x: | | |
-| cherishedworlds | :x: | | |
-| chickens | :x: | | |
-| chipped | :x: | | |
-| chubbystuff | :x: | | |
-| citresewn | :heavy_check_mark: | [已回饋](https://github.com/SHsuperCM/CITResewn/pull/219) | |
-| citresewn-defaults | :heavy_check_mark: | [已回饋](https://github.com/SHsuperCM/CITResewn/pull/219) | |
-| clickmachine | :x: | | |
-| cloth-config2 | :x: | | |
-| cobblefordays | :x: | | |
-| codechickenlib | :x: | | |
-| collective | :x: | | |
-| colormatic | :x: | | |
-| comforts | :x: | | |
-| compactcrafting | :x: | | |
-| compactmachines | :x: | | |
-| configured | :x: | | |
-| connectedglass | :x: | | |
-| constructionwand | :x: | | |
-| continuity | :x: | | |
-| copper-horns | :x: | | |
-| corail_woodcutter | :x: | | |
-| cosmeticarmorreworked | :x: | | |
-| cosmopolis | :x: | | |
-| craftingtweaks | :x: | | |
-| crawl | :x: | | |
-| create | :x: | | |
-| createaddition | :x: | | |
-| createchromaticreturn | :x: | | |
-| createchunkloading | :x: | | |
-| creatures_from_the_snow | :x: | | |
-| creeperoverhaul | :x: | | |
-| cucumber | :x: | | |
-| culinaryconstruct | :x: | | |
-| cull-less-leaves | :x: | | |
-| curios | :x: | | |
-| custommachinery | :x: | | |
-| cyclopscore | :x: | | |
-| darkpaintings | :x: | | |
-| darkutils | :x: | | |
-| dashloader | :x: | | |
-| debugify | :question: | [等待合併](https://github.com/isXander/Debugify/pull/213) | |
-| decorative_blocks | :x: | | |
-| deepslatecutting | :x: | | |
-| domum_ornamentum | :x: | | |
-| duckling | :x: | | |
-| durabilitytooltip | :x: | | |
-| easyanvils | :x: | | |
-| easymagic | :x: | | |
-| eccentrictome | :x: | | |
-| effective | :x: | | |
-| elevatorid | :x: | | |
-| enchdesc | :x: | | |
-| energymeter | :heavy_check_mark: | [已回饋](https://github.com/AlmostReliable/energymeter-forge/pull/26) | :heavy_exclamation_mark: |
-| entangled | :x: | | |
-| entityculling | :heavy_check_mark: | [已回饋](https://github.com/tr7zw/EntityCulling/pull/94) | |
-| equipmentcompare | :x: | | |
-| exlinecopperequipment | :x: | | |
-| exmachinis | :x: | | |
-| exnaturae | :x: | | |
-| exnihiloae | :heavy_check_mark: | [已回饋](https://github.com/NovaMachina-Mods/ExNihiloSequentia/pull/380) | |
-| exnihilomekanism | :heavy_check_mark: | [已回饋](https://github.com/NovaMachina-Mods/ExNihiloSequentia/pull/380) | |
-| exnihilosequentia | :heavy_check_mark: | [已回饋](https://github.com/NovaMachina-Mods/ExNihiloSequentia/pull/380) | |
-| exnihilothermal | :heavy_check_mark: | [已回饋](https://github.com/NovaMachina-Mods/ExNihiloSequentia/pull/380) | |
-| exnihilotinkers | :heavy_check_mark: | [已回饋](https://github.com/NovaMachina-Mods/ExNihiloSequentia/pull/380) | |
-| exordium | :x: | | |
-| experienceobelisk | :x: | | |
-| extendedcrafting | :x: | | |
-| extendedexchange | :x: | | |
-| extrasounds | :x: | | |
-| extrastorage | :x: | | |
-| extremesoundmuffler | :x: | | |
-| fabric-resource-loader-v0 | :x: | | |
-| fabricskyboxes | :x: | | |
-| fabrihud | :x: | | |
-| fabrishot | :x: | | |
-| farmersdelight | :x: | | |
-| farmingforblockheads | :x: | | |
-| fastload | :x: | | |
-| findme | :x: | | |
-| flopper | :x: | | |
-| fluiddrawerslegacy | :x: | | |
-| fluxnetworks | :heavy_check_mark: | [已回饋](https://github.com/SonarSonic/Flux-Networks/pull/482) | |
-| framedcompactdrawers | :x: | | |
-| fsb-interop | :x: | | |
-| ftbauxilium | :x: | | |
-| ftbbackups | :x: | | |
-| ftbchunks | :x: | | |
-| ftbdripper | :x: | | |
-| ftbessentials | :x: | | |
-| ftbic | :x: | | |
-| ftblibrary | :x: | | |
-| ftbquests | :x: | | |
-| ftbsbc | :x: | | |
-| ftbteams | :x: | | |
-| ftbultimine | :x: | | |
-| functionalstorage | :x: | | |
-| gag | :x: | | |
-| geckolib3 | :x: | | |
-| glassential | :x: | | |
-| gofish | :x: | | |
-| graphutil | :heavy_check_mark: | [已回饋](https://github.com/tr7zw/GraphUtil/pull/4) | |
-| gravestone | :x: | | |
-| hexerei | :x: | | |
-| hostilenetworks | :x: | | |
-| industrialforegoing | :x: | | |
-| inmis | :x: | | |
-| inmisaddon | :x: | | |
-| instrumentalmobs | :x: | | |
-| inventoryhud | :x: | | |
-| inventorysorter | :x: | | |
-| ironchest | :x: | | |
-| ironchests | :x: | | |
-| ironfurnaces | :x: | | |
-| ironjetpacks | :x: | | |
-| itemcollectors | :x: | | |
-| itemfilters | :x: | | |
-| itemmodelfix | :x: | | |
-| jags | :x: | | |
-| jecalculation | :x: | | |
-| jei | :x: | | |
-| jetboots | :x: | | |
-| justenoughprofessions | :x: | | |
-| justhammers | :x: | | |
-| lambdabettergrass | :x: | | |
-| lambdynlights | :x: | | |
-| languagereload | :heavy_check_mark: | [已回饋](https://github.com/Jerozgen/LanguageReload/pull/20) | |
-| laserio | :x: | | |
-| lazierae2 | :x: | | |
-| lightoverlay | :x: | | |
-| literalskyblock | :x: | | |
-| lollipop | :x: | | |
-| lowfire | :x: | | |
-| luggage | :x: | | |
-| mantle | :x: | | |
-| mcjtylib | :x: | | |
-| mcwlights | :x: | | |
-| mcwpaths | :x: | | |
-| measurements | :x: | | |
-| megacells | :x: | | |
-| merequester | :x: | | |
-| metalbarrels | :x: | | |
-| minetogether | :x: | | |
-| miniatures | :x: | | |
-| minicoal | :x: | | |
-| mininggadgets | :x: | | |
-| miniutilities | :x: | | |
-| mob_grinding_utils | :x: | | |
-| more_babies | :x: | | |
-| morefrogs | :x: | | |
-| moreminecarts | :x: | | |
-| morevanillalib | :x: | | |
-| morphtool | :x: | | |
-| mother_silverfish | :x: | | |
-| mousewheelie | :x: | | |
-| multiconnect | :x: | | |
-| multipiston | :x: | | |
-| myrtrees | :x: | | |
-| mythicbotany | :x: | | |
-| mythicbotany_lexicon | :x: | | |
-| nethersdelight | :x: | | |
-| notenoughanimations | :x: | | |
-| notenoughcrashes | :x: | | |
-| notenoughwands | :x: | | |
-| observable | :x: | | |
-| onsoulfire | :x: | | |
-| paginatedadvancements | :x: | | |
-| paintings | :x: | | |
-| patchouli | :x: | | |
-| phosphophyllite | :x: | | |
-| pipez | :x: | | |
-| placebo | :x: | | |
-| plonk | :x: | | |
-| pocketstorage | :x: | | |
-| portablecraftingtable | :x: | | |
-| potionsmaster | :x: | | |
-| powah | :x: | | |
-| ppfluids | :x: | | |
-| presencefootsteps | :x: | | |
-| prettypipes | :x: | | |
-| projecte | :x: | | |
-| projectexpansion | :x: | | |
-| puzzle | :x: | | |
-| pylons | :x: | | |
-| quartzelv | :x: | | |
-| questsadditions | :x: | | |
-| reauth | :x: | | |
-| rebornstorage | :x: | | |
-| rechiseled | :x: | | |
-| redstone_arsenal | :x: | | |
-| refinedstorage | :x: | | |
-| refinedstorageaddons | :x: | | |
-| reliquary | :x: | | |
-| rightclickharvest | :x: | | |
-| rottencreatures | :x: | | |
-| roughlyenoughprofessions | :x: | | |
-| rsinfinitybooster | :x: | | |
-| rsrequestify | :x: | | |
-| screencapper | :heavy_check_mark: | [已回饋](https://github.com/Deftu/Screencapper/pull/6) | :heavy_exclamation_mark: |
-| sdrp | :x: | | |
-| seasons | :x: | | |
-| sftoemi | :question: | [等待合併](https://github.com/JustAHuman-xD/SlimefunToEMI/pull/2) | |
-| showcaseitem | :x: | | |
-| shrink | :x: | | |
-| simplebackups | :x: | | |
-| simplemagnets | :x: | | |
-| simplybackpacks | :x: | | |
-| skyblockbuilder | :x: | | |
-| skyguis | :x: | | |
-| slabmachines | :x: | | |
-| smoothboot | :x: | | |
-| snad | :x: | | |
-| snowrealmagic | :x: | | |
-| sodium | :question: | Crowdin | |
-| sodium-extra | :question: | Crowdin | |
-| solargeneration | :x: | | |
-| solcarrot | :x: | | |
-| sophisticatedbackpacks | :x: | | |
-| sophisticatedcore | :x: | | |
-| sophisticatedstorage | :x: | | |
-| soulshards | :x: | | |
-| spirit | :x: | | |
-| squirtgun | :x: | | |
-| stendhal | :x: | | |
-| stonechest | :x: | | |
-| storagedrawers | :x: | | |
-| structurecompass | :x: | | |
-| structures_compass | :x: | | |
-| summoningrituals | :x: | | |
-| supercircuitmaker | :x: | | |
-| tempad | :x: | | |
-| tesseract | :x: | | |
-| testworld | :x: | | |
-| theoneprobe | :x: | | |
-| tiab | :x: | | |
-| titanium | :x: | | |
-| torchbowmod | :x: | | |
-| trashcans | :heavy_check_mark: | [已回饋](https://github.com/SuperMartijn642/TrashCans/pull/25) | |
-| trashslot | :x: | | |
-| travel_anchors | :x: | | |
-| uppers | :x: | | |
-| vanillahammers | :x: | | |
-| visuality | :x: | | |
-| waterstrainer | :x: | | |
-| wirelesschargers | :x: | | |
-| woodenbucket | :x: | | |
-| woodenhopper | :x: | | |
-| woodenshears | :x: | | |
-| woof | :x: | | |
-| wstweaks | :x: | | |
-| xnet | :x: | | |
-| xray | :x: | | |
-| yet-another-config-lib | :heavy_check_mark: | [已回饋](https://github.com/isXander/YetAnotherConfigLib/pull/31) | |