mirror of
https://github.com/baiqwerdvd/StarRailUID.git
synced 2025-05-06 11:43:44 +08:00
增加错误码信息翻译
This commit is contained in:
parent
0953042161
commit
2e5b27492b
@ -7,6 +7,7 @@ import aiohttp
|
|||||||
from PIL import Image, ImageDraw
|
from PIL import Image, ImageDraw
|
||||||
from gsuid_core.logger import logger
|
from gsuid_core.logger import logger
|
||||||
|
|
||||||
|
from ..utils.error_reply import get_error as get_error_msg
|
||||||
from ..utils.api import get_sqla
|
from ..utils.api import get_sqla
|
||||||
from ..utils.mys_api import mys_api
|
from ..utils.mys_api import mys_api
|
||||||
from ..utils.image.convert import convert_img
|
from ..utils.image.convert import convert_img
|
||||||
@ -151,9 +152,10 @@ def get_error(img: Image.Image, uid: str, daily_data: int):
|
|||||||
fill=first_color,
|
fill=first_color,
|
||||||
anchor='mm',
|
anchor='mm',
|
||||||
)
|
)
|
||||||
|
error_text = get_error_msg(daily_data)
|
||||||
img_draw.text(
|
img_draw.text(
|
||||||
(350, 650),
|
(350, 650),
|
||||||
f'错误码 {daily_data}',
|
f'{error_text} ,错误码{daily_data}',
|
||||||
font=sr_font_26,
|
font=sr_font_26,
|
||||||
fill=red_color,
|
fill=red_color,
|
||||||
anchor='mm',
|
anchor='mm',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user