perf: 修改一次性翻译长度 (#12557)

Co-authored-by: feng <1304903146@qq.com>
pull/12642/head
fit2bot 2024-01-17 11:38:58 +08:00 committed by GitHub
parent 9968617758
commit e2a3c360ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ from .const import RED, GREEN, RESET
class BaseTranslateManager:
bulk_size = 30
bulk_size = 15
SEPARATOR = "<SEP>"
LANG_MAPPER = {
# 'ja': 'Japanese',

View File

@ -3,7 +3,7 @@ import os
import polib
from .base import BaseTranslateManager
from .const import RED, GREEN
from .const import RED, GREEN, MAGENTA
class CoreTranslateManager(BaseTranslateManager):