🌐 添加模板语言的映射

This commit is contained in:
2025-04-15 03:11:30 +08:00
parent 1679576fb4
commit f90be2ef9c
5 changed files with 28 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
# 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]
from tarina.lang.model import LangItem, LangModel
class InteractionWrong:
@@ -27,6 +27,11 @@ class Error:
MessageFormatError = ErrorMessageformaterror
class Template:
template_language: LangItem = LangItem('template', 'template_language')
class Lang(LangModel):
interaction = Interaction
error = Error
template = Template