mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
* ✨ 支持 i18n #410 * 🚨 更改noqa方式 * 📝 添加 CONTRIBUTING.md 文件 * 🌐 将 i18n 默认语言设置为 en-US * 📝 添加英文版 CONTRIBUTING.md
33 lines
823 B
Python
33 lines
823 B
Python
# This file is @generated by tarina.lang CLI tool
|
|
# It is not intended for manual editing.
|
|
|
|
from tarina.lang.model import LangItem, LangModel # type: ignore[import-untyped]
|
|
|
|
|
|
class InteractionWrong:
|
|
query_bot: LangItem = LangItem('interaction', 'wrong.query_bot')
|
|
|
|
|
|
class InteractionWarning:
|
|
unverified: LangItem = LangItem('interaction', 'warning.unverified')
|
|
|
|
|
|
class Interaction:
|
|
wrong = InteractionWrong
|
|
warning = InteractionWarning
|
|
|
|
|
|
class ErrorMessageformaterror:
|
|
TETR_IO: LangItem = LangItem('error', 'MessageFormatError.TETR.IO')
|
|
TOS: LangItem = LangItem('error', 'MessageFormatError.TOS')
|
|
TOP: LangItem = LangItem('error', 'MessageFormatError.TOP')
|
|
|
|
|
|
class Error:
|
|
MessageFormatError = ErrorMessageformaterror
|
|
|
|
|
|
class Lang(LangModel):
|
|
interaction = Interaction
|
|
error = Error
|