mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 00:24:13 +08:00
remove
This commit is contained in:
parent
ce6e69d61f
commit
7256bda052
@ -146,7 +146,6 @@ class MAINUI() :
|
||||
return ss
|
||||
def textgetmethod(self,text,is_auto_run=True,embedcallback=None,onlytrans=False):
|
||||
_autolock(self.solvegottextlock)
|
||||
needclear=True
|
||||
if onlytrans==False:
|
||||
self.currentsignature=time.time()
|
||||
if type(text)==str:
|
||||
@ -154,14 +153,7 @@ class MAINUI() :
|
||||
self.translation_ui.displayres.emit('',globalconfig['rawtextcolor'],text[len('<notrans>'):],onlytrans,[])
|
||||
self.currenttext=text
|
||||
self.currentread=text
|
||||
return
|
||||
elif text.startswith('<msg_warning_with_text>'):
|
||||
length=len('<msg_warning_with_text>')
|
||||
idx=text.find('</msg_warning_with_text>')
|
||||
warningtext=text[length:idx]
|
||||
text=text[idx+length+1:]
|
||||
self.translation_ui.displaystatus.emit(warningtext,'red',True,False)
|
||||
needclear=False
|
||||
return
|
||||
else:
|
||||
msgs=[
|
||||
('<msg_info_not_refresh>',globalconfig['rawtextcolor'],False),
|
||||
@ -233,11 +225,11 @@ class MAINUI() :
|
||||
print_exc()
|
||||
hira=[]
|
||||
if globalconfig['refresh_on_get_trans']==False:
|
||||
self.translation_ui.displayraw1.emit(hira,text,globalconfig['rawtextcolor'] ,onlytrans,needclear)
|
||||
self.translation_ui.displayraw1.emit(hira,text,globalconfig['rawtextcolor'] ,onlytrans)
|
||||
_showrawfunction=None
|
||||
_showrawfunction_sig=0
|
||||
else:
|
||||
_showrawfunction=functools.partial(self.translation_ui.displayraw1.emit,hira,text,globalconfig['rawtextcolor'],onlytrans,needclear)
|
||||
_showrawfunction=functools.partial(self.translation_ui.displayraw1.emit,hira,text,globalconfig['rawtextcolor'],onlytrans)
|
||||
_showrawfunction_sig=time.time()
|
||||
|
||||
text_solved,optimization_params= self.solvebeforetrans(text)
|
||||
|
@ -29,7 +29,7 @@ from gui.usefulwidget import resizableframeless
|
||||
from gui.dialog_savedgame import browserdialog
|
||||
class QUnFrameWindow(resizableframeless):
|
||||
displayres = pyqtSignal(str,str,str ,bool,list)
|
||||
displayraw1 = pyqtSignal(list, str,str,bool,bool)
|
||||
displayraw1 = pyqtSignal(list, str,str,bool)
|
||||
displaystatus=pyqtSignal(str,str,bool,bool)
|
||||
showhideuisignal=pyqtSignal()
|
||||
hookfollowsignal=pyqtSignal(int,tuple)
|
||||
@ -101,8 +101,8 @@ class QUnFrameWindow(resizableframeless):
|
||||
self.saveiterclasspointer[klass]={'curr':self.translate_text.getcurrpointer()+len(_showtext),'start':self.translate_text.getcurrpointer()+len(_showtext)-len(res)}
|
||||
except:
|
||||
print_exc()
|
||||
def showraw(self,hira,res,color ,onlyshowhist,clear):
|
||||
#print(res,onlyshowhist)
|
||||
def showraw(self,hira,res,color ,onlyshowhist):
|
||||
clear=True
|
||||
gobject.baseobject.transhis.getnewsentencesignal.emit(res)
|
||||
if onlyshowhist:
|
||||
return
|
||||
|
@ -1,7 +1,5 @@
|
||||
import os
|
||||
|
||||
import os
|
||||
from myutils.config import globalconfig,_TR,static_data
|
||||
|
||||
from ocrengines.baseocrclass import baseocr
|
||||
from ctypes import CDLL,c_char_p ,create_string_buffer,c_uint32,POINTER,c_int32
|
||||
import os
|
||||
@ -23,7 +21,6 @@ class ocrwrapper:
|
||||
_OcrGetResult=self.dll.OcrGetResult
|
||||
length=_OcrGetLen(self.pOcrObj)
|
||||
buff = create_string_buffer(length)
|
||||
|
||||
_OcrGetResult(self.pOcrObj,buff,length)
|
||||
return buff.value
|
||||
def _OcrDestroy(self):
|
||||
@ -52,27 +49,14 @@ class OCR(baseocr):
|
||||
def initocr(self):
|
||||
self._ocr=ocrwrapper()
|
||||
self._savelang=None
|
||||
self.isusingjaasen=False
|
||||
self.checkchange()
|
||||
def checkchange(self):
|
||||
if self._savelang==self.srclang:
|
||||
return
|
||||
|
||||
self.isusingjaasen=False
|
||||
self._ocr.trydestroy()
|
||||
|
||||
innerlang=static_data["language_list_translator_inner"][globalconfig["srclang3"]]
|
||||
path='./files/ocr/{}'.format(innerlang)
|
||||
failed=False
|
||||
|
||||
path='./files/ocr/{}'.format(static_data["language_list_translator_inner"][globalconfig["srclang3"]])
|
||||
if not(os.path.exists(path+'/det.onnx') and os.path.exists(path+'/rec.onnx') and os.path.exists(path+'/dict.txt') ):
|
||||
failed=True
|
||||
if(innerlang=='en'):
|
||||
path2='./files/ocr/{}'.format('ja')
|
||||
if (os.path.exists(path2+'/det.onnx') and os.path.exists(path2+'/rec.onnx') and os.path.exists(path2+'/dict.txt') ):
|
||||
path=path2
|
||||
failed=False
|
||||
self.isusingjaasen=True
|
||||
if failed:
|
||||
raise Exception(_TR('未下载该语言的OCR模型,请从软件主页下载模型解压到files/ocr路径后使用') )
|
||||
self._ocr.init(path+'/det.onnx',path+'/rec.onnx',path+'/dict.txt')
|
||||
self._savelang=self.srclang
|
||||
@ -88,8 +72,5 @@ class OCR(baseocr):
|
||||
for i in range(len(ls)//2):
|
||||
box.append([int(_) for _ in ls[i*2].split(',')])
|
||||
text.append(ls[i*2+1])
|
||||
|
||||
res=self.common_solve_text_orientation(box,text)
|
||||
if self.isusingjaasen:
|
||||
res='<msg_warning_with_text>'+_TR('未下载该语言的OCR模型,请从软件主页下载模型解压到files/ocr路径后使用')+'\n'+_TR('正在使用日语模型作为代替,可能效果不佳')+'</msg_warning_with_text>'+res
|
||||
return res
|
||||
|
||||
return self.common_solve_text_orientation(box,text)
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "برامج التكبير الخارجي",
|
||||
"Hook Magpie进程使其不会退出缩放": "هوك ماجي العملية بحيث لا تخرج من التكبير",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "هوك looslessscaling العملية بحيث لا تخرج من التكبير",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "استخدام النموذج الياباني بدلا من ذلك ، قد لا تعمل بشكل جيد",
|
||||
"保持非重复字符": "الحفاظ على الطابع غير المتكرر",
|
||||
"选择文本窗口中文本框只读": "حدد مربع النص للقراءة فقط في نافذة النص",
|
||||
"多重区域模式": "وضع منطقة متعددة",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "外部縮放軟件",
|
||||
"Hook Magpie进程使其不会退出缩放": "Hook Magpie行程使其不會退出縮放",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Hook LosslessScaling行程使其不會退出縮放",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "正在使用日語模型作為代替,可能效果不佳",
|
||||
"保持非重复字符": "保持非重複字元",
|
||||
"选择文本窗口中文本框只读": "選擇文字視窗中文字方塊只讀",
|
||||
"多重区域模式": "多重區域模式",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "External scaling software",
|
||||
"Hook Magpie进程使其不会退出缩放": "Hook Magpie process prevents it from exiting scaling",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Hook LosslessScaling process prevents it from exiting scaling",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "Using Japanese models as a substitute may not be effective",
|
||||
"保持非重复字符": "Keep non repeating characters",
|
||||
"选择文本窗口中文本框只读": "Select read-only text boxes in the text window",
|
||||
"多重区域模式": "Multi region mode",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "Software de zoom externo",
|
||||
"Hook Magpie进程使其不会退出缩放": "El proceso Hook magpie hace que no salga del zoom",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "El proceso Hook losslessscaling hace que no salga del zoom",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "Se está utilizando el modelo japonés como sustituto y puede que no funcione bien",
|
||||
"保持非重复字符": "Mantener caracteres no repetitivos",
|
||||
"选择文本窗口中文本框只读": "Seleccione la ventana de texto en la que el cuadro de texto es de solo lectura",
|
||||
"多重区域模式": "Modelo multiregional",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "Logiciel de zoom externe",
|
||||
"Hook Magpie进程使其不会退出缩放": "Le processus Hook Magpie ne quitte pas le zoom",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Hook losslesscaling processus pour ne pas quitter le zoom",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "Le modèle japonais est utilisé à la place, peut ne pas fonctionner aussi bien",
|
||||
"保持非重复字符": "Garder les caractères non répétitifs",
|
||||
"选择文本窗口中文本框只读": "Sélectionner une zone de texte en lecture seule dans la fenêtre de texte",
|
||||
"多重区域模式": "Mode Multi - zones",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "Software di ridimensionamento esterno",
|
||||
"Hook Magpie进程使其不会退出缩放": "Il processo Hook Magpie impedisce di uscire dalla scala",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Hook LosslessScaling processo impedisce di uscire dalla scalabilità",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "Utilizzare modelli giapponesi come sostituto potrebbe non essere efficace",
|
||||
"保持非重复字符": "Mantieni caratteri non ripetuti",
|
||||
"选择文本窗口中文本框只读": "Selezionare le caselle di testo di sola lettura nella finestra di testo",
|
||||
"多重区域模式": "Modalità multi regione",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "外部ズームソフトウェア",
|
||||
"Hook Magpie进程使其不会退出缩放": "Hook Magpieプロセスはスケールを終了しないようにする",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Hook LosslessScalingプロセスはスケーリングを終了しないようにする",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "代替として日本語モデルを使用していますが、効果が低いかもしれません",
|
||||
"保持非重复字符": "非反復文字の維持",
|
||||
"选择文本窗口中文本框只读": "テキストウィンドウのテキストボックス読み取り専用を選択",
|
||||
"多重区域模式": "複数領域モード",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "외부 확대 / 축소 소프트웨어",
|
||||
"Hook Magpie进程使其不会退出缩放": "Hook Magpie 프로세스로 인해 줌이 종료되지 않습니다.",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Hook LosslessScaling 프로세스로 인해 줌이 종료되지 않습니다.",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "일본어 모델을 대체하는 중입니다. 효과가 없을 수 있습니다",
|
||||
"保持非重复字符": "비반복 문자 유지",
|
||||
"选择文本窗口中文本框只读": "텍스트 선택 창의 텍스트 상자 읽기 전용",
|
||||
"多重区域模式": "다중 영역 모드",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "Oprogramowanie do skalowania zewnętrznego",
|
||||
"Hook Magpie进程使其不会退出缩放": "Proces Hook Magpie zapobiega zakończeniu skalowania",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Proces Hook Losslessless Scaling zapobiega zakończeniu skalowania",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "Używanie japońskich modeli jako substytutów może nie być skuteczne",
|
||||
"保持非重复字符": "Zachowaj niepowtarzające się znaki",
|
||||
"选择文本窗口中文本框只读": "Zaznaczanie pola tekstowe tylko do odczytu w oknie tekstowym",
|
||||
"多重区域模式": "Tryb wielu regionów",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "Программное обеспечение для внешнего масштабирования",
|
||||
"Hook Magpie进程使其不会退出缩放": "Процесс Hook Magpie не выводит из масштабирования",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Процесс Hook LosslessScaling не выводит из масштабирования",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "В качестве замены используется японская модель, которая может быть неэффективной",
|
||||
"保持非重复字符": "Сохранить символ без повторения",
|
||||
"选择文本窗口中文本框只读": "Выберите текстовое окно только для чтения",
|
||||
"多重区域模式": "Многорегиональная модель",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "ซอฟต์แวร์ซูมภายนอก",
|
||||
"Hook Magpie进程使其不会退出缩放": "กระบวนการ Hook Magpie ทำให้ไม่ออกจากการซูม",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Hook LosslessScaling กระบวนการทำให้มันไม่ออกจากซูม",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "ใช้แบบจำลองภาษาญี่ปุ่นแทนอาจไม่ได้ผล",
|
||||
"保持非重复字符": "เก็บอักขระที่ไม่ซ้ำกัน",
|
||||
"选择文本窗口中文本框只读": "เลือกกล่องข้อความในหน้าต่างข้อความ อ่านอย่างเดียว",
|
||||
"多重区域模式": "โหมดหลายโซน",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "Dışarı skalama yazılımı",
|
||||
"Hook Magpie进程使其不会退出缩放": "Hook Magpie süreci ölçeklenmesini engelledi",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Hook LosslessScaling süreç ölçeklenmesini engelledi",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "Japon modellerini yerine koymak etkili olmayabilir.",
|
||||
"保持非重复字符": "Tekrarlamayan karakterleri tut",
|
||||
"选择文本窗口中文本框只读": "Metin penceresindeki sadece okuyulmuş metin kutularını seçin",
|
||||
"多重区域模式": "Çok bölge modu",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "Зовнішнє програмне забезпечення масштабу",
|
||||
"Hook Magpie进程使其不会退出缩放": "Процес Hook Magpie забороняє їй вийти з масштабу",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Процес безвтратного розміруScaling забороняє їй вийти з розміру",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "Використання японських моделей як заміни може бути неефективним",
|
||||
"保持非重复字符": "Зберегти символи, які не повторюються",
|
||||
"选择文本窗口中文本框只读": "Виберіть текстові поля для лише читання у текстовому вікні",
|
||||
"多重区域模式": "Режим декількох регіонів",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "Phần mềm Zoom ngoài",
|
||||
"Hook Magpie进程使其不会退出缩放": "Quá trình Hook Magpie làm cho nó không thoát khỏi zoom",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "Quá trình Hook LosslessScaling làm cho nó không thoát khỏi zoom",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "Các mô hình tiếng Nhật đang được sử dụng thay thế và có thể không hiệu quả",
|
||||
"保持非重复字符": "Giữ các ký tự không trùng lặp",
|
||||
"选择文本窗口中文本框只读": "Chọn hộp văn bản chỉ đọc trong cửa sổ văn bản",
|
||||
"多重区域模式": "Chế độ đa vùng",
|
||||
|
@ -705,7 +705,6 @@
|
||||
"外部缩放软件": "",
|
||||
"Hook Magpie进程使其不会退出缩放": "",
|
||||
"Hook LosslessScaling进程使其不会退出缩放": "",
|
||||
"正在使用日语模型作为代替,可能效果不佳": "",
|
||||
"保持非重复字符": "",
|
||||
"选择文本窗口中文本框只读": "",
|
||||
"多重区域模式": "",
|
||||
|
Loading…
x
Reference in New Issue
Block a user