├── .flaskenv ├── .github └── workflows │ ├── pylint.yml │ └── update.yml ├── .gitignore ├── .gitmodules ├── GeoLite2-City.mmdb ├── LICENSE ├── README.md ├── README_en.md ├── app.py ├── app_base.py ├── app_init.py ├── babel.cfg ├── data ├── archive │ ├── zh_cn_1132.json │ ├── zh_cn_1144.json │ ├── zh_cn_1152.json │ ├── zh_cn_1165.json │ ├── zh_cn_1171.json │ ├── zh_cn_1182.json │ ├── zh_cn_1194.json │ ├── zh_cn_1206.json │ └── zh_cn_1214.json ├── changed.json ├── diff.json ├── long.json ├── short.json └── tygf.json ├── id.py ├── index.py ├── messages.pot ├── requirements.txt ├── sample ├── sample_advancements.png ├── sample_advancements_en.png ├── sample_biome.png ├── sample_biome_en.png ├── sample_block.png ├── sample_block_en.png ├── sample_effect.png ├── sample_effect_en.png ├── sample_enchantment.png ├── sample_enchantment_en.png ├── sample_entity.png ├── sample_entity_en.png ├── sample_item.png ├── sample_item_en.png ├── sample_quiz_portal.png ├── sample_quiz_portal_en.png ├── sample_quiz_sub.png ├── sample_quiz_sub_en.png └── sample_table.png ├── static ├── apple-touch-icon.png ├── css │ ├── dark-mode.css │ ├── error.css │ ├── index.css │ ├── quiz_portal.css │ ├── quiz_sub.css │ └── table.css ├── favicon.ico ├── id.json ├── images │ ├── github-icon.svg │ └── teahouse-logo.svg ├── js │ ├── dark-mode.js │ ├── index.js │ └── quiz.js ├── rating.json └── table.tsv ├── table.py ├── templates ├── 404.html ├── index.html ├── quiz_error.html ├── quiz_portal.html ├── quiz_sub.html └── table.html ├── translations ├── zh_Hans_CN │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── zh_Hant_TW │ └── LC_MESSAGES │ ├── messages.mo │ └── messages.po ├── vercel.json └── wsgi.py /.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_DEBUG = 1 -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/.gitmodules -------------------------------------------------------------------------------- /GeoLite2-City.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/GeoLite2-City.mmdb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/README_en.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/app.py -------------------------------------------------------------------------------- /app_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/app_base.py -------------------------------------------------------------------------------- /app_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/app_init.py -------------------------------------------------------------------------------- /babel.cfg: -------------------------------------------------------------------------------- 1 | [python: app.py] 2 | [jinja2: **/templates/**.html] -------------------------------------------------------------------------------- /data/archive/zh_cn_1132.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/archive/zh_cn_1132.json -------------------------------------------------------------------------------- /data/archive/zh_cn_1144.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/archive/zh_cn_1144.json -------------------------------------------------------------------------------- /data/archive/zh_cn_1152.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/archive/zh_cn_1152.json -------------------------------------------------------------------------------- /data/archive/zh_cn_1165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/archive/zh_cn_1165.json -------------------------------------------------------------------------------- /data/archive/zh_cn_1171.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/archive/zh_cn_1171.json -------------------------------------------------------------------------------- /data/archive/zh_cn_1182.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/archive/zh_cn_1182.json -------------------------------------------------------------------------------- /data/archive/zh_cn_1194.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/archive/zh_cn_1194.json -------------------------------------------------------------------------------- /data/archive/zh_cn_1206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/archive/zh_cn_1206.json -------------------------------------------------------------------------------- /data/archive/zh_cn_1214.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/archive/zh_cn_1214.json -------------------------------------------------------------------------------- /data/changed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/changed.json -------------------------------------------------------------------------------- /data/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/diff.json -------------------------------------------------------------------------------- /data/long.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/long.json -------------------------------------------------------------------------------- /data/short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/short.json -------------------------------------------------------------------------------- /data/tygf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/data/tygf.json -------------------------------------------------------------------------------- /id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/id.py -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/index.py -------------------------------------------------------------------------------- /messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/messages.pot -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample/sample_advancements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_advancements.png -------------------------------------------------------------------------------- /sample/sample_advancements_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_advancements_en.png -------------------------------------------------------------------------------- /sample/sample_biome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_biome.png -------------------------------------------------------------------------------- /sample/sample_biome_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_biome_en.png -------------------------------------------------------------------------------- /sample/sample_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_block.png -------------------------------------------------------------------------------- /sample/sample_block_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_block_en.png -------------------------------------------------------------------------------- /sample/sample_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_effect.png -------------------------------------------------------------------------------- /sample/sample_effect_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_effect_en.png -------------------------------------------------------------------------------- /sample/sample_enchantment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_enchantment.png -------------------------------------------------------------------------------- /sample/sample_enchantment_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_enchantment_en.png -------------------------------------------------------------------------------- /sample/sample_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_entity.png -------------------------------------------------------------------------------- /sample/sample_entity_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_entity_en.png -------------------------------------------------------------------------------- /sample/sample_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_item.png -------------------------------------------------------------------------------- /sample/sample_item_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_item_en.png -------------------------------------------------------------------------------- /sample/sample_quiz_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_quiz_portal.png -------------------------------------------------------------------------------- /sample/sample_quiz_portal_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_quiz_portal_en.png -------------------------------------------------------------------------------- /sample/sample_quiz_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_quiz_sub.png -------------------------------------------------------------------------------- /sample/sample_quiz_sub_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_quiz_sub_en.png -------------------------------------------------------------------------------- /sample/sample_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/sample/sample_table.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/css/dark-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/css/dark-mode.css -------------------------------------------------------------------------------- /static/css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/css/error.css -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/css/quiz_portal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/css/quiz_portal.css -------------------------------------------------------------------------------- /static/css/quiz_sub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/css/quiz_sub.css -------------------------------------------------------------------------------- /static/css/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/css/table.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/id.json -------------------------------------------------------------------------------- /static/images/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/images/github-icon.svg -------------------------------------------------------------------------------- /static/images/teahouse-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/images/teahouse-logo.svg -------------------------------------------------------------------------------- /static/js/dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/js/dark-mode.js -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/js/index.js -------------------------------------------------------------------------------- /static/js/quiz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/js/quiz.js -------------------------------------------------------------------------------- /static/rating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/rating.json -------------------------------------------------------------------------------- /static/table.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/static/table.tsv -------------------------------------------------------------------------------- /table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/table.py -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/quiz_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/templates/quiz_error.html -------------------------------------------------------------------------------- /templates/quiz_portal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/templates/quiz_portal.html -------------------------------------------------------------------------------- /templates/quiz_sub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/templates/quiz_sub.html -------------------------------------------------------------------------------- /templates/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/templates/table.html -------------------------------------------------------------------------------- /translations/zh_Hans_CN/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/translations/zh_Hans_CN/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /translations/zh_Hans_CN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/translations/zh_Hans_CN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /translations/zh_Hant_TW/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/translations/zh_Hant_TW/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /translations/zh_Hant_TW/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/translations/zh_Hant_TW/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/vercel.json -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEye-FAST/minecraft_translation_flask/HEAD/wsgi.py --------------------------------------------------------------------------------