diff --git a/src/engine.py b/src/engine.py index 9f0d8dd..eff4c21 100644 --- a/src/engine.py +++ b/src/engine.py @@ -36,14 +36,14 @@ def setupUi(self, EngineDialog): self.label_2.setWordWrap(True) self.keyEdit = QLineEdit(EngineDialog) self.keyEdit.setObjectName(u"keyEdit") - self.keyEdit.setGeometry(QRect(240, 68, 761, 20)) + self.keyEdit.setGeometry(QRect(240, 68, 491, 20)) self.label_3 = QLabel(EngineDialog) self.label_3.setObjectName(u"label_3") self.label_3.setGeometry(QRect(20, 117, 211, 31)) self.label_3.setWordWrap(True) self.secretEdit = QLineEdit(EngineDialog) self.secretEdit.setObjectName(u"secretEdit") - self.secretEdit.setGeometry(QRect(240, 120, 761, 20)) + self.secretEdit.setGeometry(QRect(240, 120, 491, 20)) self.confirmButton = QPushButton(EngineDialog) self.confirmButton.setObjectName(u"confirmButton") self.confirmButton.setGeometry(QRect(20, 160, 981, 24)) @@ -53,6 +53,7 @@ def setupUi(self, EngineDialog): font = QFont() font.setUnderline(True) self.detailLabel.setFont(font) + self.detailLabel.setCursor(QCursor(Qt.PointingHandCursor)) self.detailLabel.setAlignment(Qt.AlignCenter) self.detailLabel.setWordWrap(True) self.rpmEdit = QLineEdit(EngineDialog) @@ -112,6 +113,9 @@ def setupUi(self, EngineDialog): self.maxLengthEdit.setGeometry(QRect(20, 460, 981, 31)) self.maxLengthEdit.setText(u"5000") self.maxLengthEdit.setAlignment(Qt.AlignCenter) + self.detectButton = QPushButton(EngineDialog) + self.detectButton.setObjectName(u"detectButton") + self.detectButton.setGeometry(QRect(750, 70, 251, 71)) self.retranslateUi(EngineDialog) @@ -139,5 +143,6 @@ def retranslateUi(self, EngineDialog): self.customButton.setText(QCoreApplication.translate("EngineDialog", u"custom model", None)) self.label_9.setText(QCoreApplication.translate("EngineDialog", u"time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) :", None)) self.label_10.setText(QCoreApplication.translate("EngineDialog", u"max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000)", None)) + self.detectButton.setText(QCoreApplication.translate("EngineDialog", u"detect network delay", None)) # retranslateUi diff --git a/src/engine.ui b/src/engine.ui index 76bd155..f364ecb 100644 --- a/src/engine.ui +++ b/src/engine.ui @@ -60,7 +60,7 @@ 240 68 - 761 + 491 20 @@ -86,7 +86,7 @@ 240 120 - 761 + 491 20 @@ -121,6 +121,9 @@ true + + PointingHandCursor + detail information @@ -356,6 +359,19 @@ Qt::AlignCenter + + + + 750 + 70 + 251 + 71 + + + + detect network delay + + diff --git a/src/engine_form.py b/src/engine_form.py index b7c8057..af954ce 100644 --- a/src/engine_form.py +++ b/src/engine_form.py @@ -1,3 +1,4 @@ +import _thread import io import json import os @@ -7,12 +8,27 @@ from PySide6 import QtCore from PySide6.QtGui import QIntValidator from PySide6.QtWidgets import QDialog +from ping3 import ping from engine import Ui_EngineDialog from my_log import log_print from renpy_translate import engineDic, engineList +def get_ping_host(ip): + """ + :param node: + :return delay: + """ + ip_address = ip + response = ping(ip_address) + if response is not None: + delay = int(response * 1000) + return delay + else: + return -1 + + class MyEngineForm(QDialog, Ui_EngineDialog): def __init__(self, parent=None): super(MyEngineForm, self).__init__(parent) @@ -73,6 +89,29 @@ def __init__(self, parent=None): self.rpsEdit.setValidator(validator) self.rpmEdit.setValidator(validator) self.maxLengthEdit.setValidator(validator) + self.detectButton.clicked.connect(self.dect_network) + + def detect_network_thread(self, engine, url): + delay = -1 + try: + if len(url) > 0: + delay = get_ping_host(url) + except Exception as e: + pass + if delay != -1: + log_print(f'{engine} : {delay} ms') + else: + log_print(f'{engine} unreachable') + + def dect_network(self): + for engine, dic in engineDic.items(): + url = dic['url'] + url = url.replace('http://', '') + url = url.replace('https://', '') + index = url.find('/') + if index != -1: + url = url[:index] + _thread.start_new_thread(self.detect_network_thread, (engine, url)) def init_openai_time_out(self): if self.modelComboBox.currentText().startswith('gpt-3.5'): diff --git a/src/main.py b/src/main.py index f6bde9d..f7047ae 100644 --- a/src/main.py +++ b/src/main.py @@ -53,7 +53,7 @@ sourceDic = dict() translator = QTranslator() -VERSION = '2.3.8' +VERSION = '2.3.9' class MyProxyForm(QDialog, Ui_ProxyDialog): diff --git a/src/qm/arabic.qm b/src/qm/arabic.qm index 3417e53..d62f085 100644 Binary files a/src/qm/arabic.qm and b/src/qm/arabic.qm differ diff --git a/src/qm/bengali.qm b/src/qm/bengali.qm index e7ff3ec..849766c 100644 Binary files a/src/qm/bengali.qm and b/src/qm/bengali.qm differ diff --git a/src/qm/chinese.qm b/src/qm/chinese.qm index b34ecfb..50e3406 100644 Binary files a/src/qm/chinese.qm and b/src/qm/chinese.qm differ diff --git a/src/qm/french.qm b/src/qm/french.qm index 8798819..050be73 100644 Binary files a/src/qm/french.qm and b/src/qm/french.qm differ diff --git a/src/qm/german.qm b/src/qm/german.qm index a0d28e4..c9a15ce 100644 Binary files a/src/qm/german.qm and b/src/qm/german.qm differ diff --git a/src/qm/greek.qm b/src/qm/greek.qm index b65d640..d042cd7 100644 Binary files a/src/qm/greek.qm and b/src/qm/greek.qm differ diff --git a/src/qm/hindi.qm b/src/qm/hindi.qm index 65b35d8..386bcb6 100644 Binary files a/src/qm/hindi.qm and b/src/qm/hindi.qm differ diff --git a/src/qm/japanese.qm b/src/qm/japanese.qm index c9bca60..c23bc3a 100644 Binary files a/src/qm/japanese.qm and b/src/qm/japanese.qm differ diff --git a/src/qm/korean.qm b/src/qm/korean.qm index 9ece496..3f96364 100644 Binary files a/src/qm/korean.qm and b/src/qm/korean.qm differ diff --git a/src/qm/portuguese.qm b/src/qm/portuguese.qm index a3aebda..007b030 100644 Binary files a/src/qm/portuguese.qm and b/src/qm/portuguese.qm differ diff --git a/src/qm/russian.qm b/src/qm/russian.qm index 1604a5c..40c9956 100644 Binary files a/src/qm/russian.qm and b/src/qm/russian.qm differ diff --git a/src/qm/spanish.qm b/src/qm/spanish.qm index 280219d..7bfb4dc 100644 Binary files a/src/qm/spanish.qm and b/src/qm/spanish.qm differ diff --git a/src/qm/turkish.qm b/src/qm/turkish.qm index 4d099ff..7a68adc 100644 Binary files a/src/qm/turkish.qm and b/src/qm/turkish.qm differ diff --git a/src/qm/urdu.qm b/src/qm/urdu.qm index 0ec4fbb..31ed215 100644 Binary files a/src/qm/urdu.qm and b/src/qm/urdu.qm differ diff --git a/src/requirements.txt b/src/requirements.txt index ad408d5..9fdfc41 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -9,4 +9,5 @@ pyperclip==1.8.2 openpyxl==3.1.2 qt-material==2.14 beautifulsoup4==4.12.3 -pywin32==306 \ No newline at end of file +pywin32==306 +ping3==4.0.8 \ No newline at end of file diff --git a/src/ts/arabic.ts b/src/ts/arabic.ts index 7421f2e..d6e1a79 100644 --- a/src/ts/arabic.ts +++ b/src/ts/arabic.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ التراجع الحالي إلى التحميل الأول - + select the directory you want to edit حدد الدليل الذي تريد تحريره - + select the file(s) you want to edit حدد الملف (الملفات) الذي تريد تحريره @@ -569,66 +569,71 @@ يتأكد - + detail information معلومات مفصلة - - + + 3 3 - + RPM (requests per minute): دورة في الدقيقة (الطلبات في الدقيقة): - + RPS (requests per second): RPS (الطلبات في الثانية): - + TPM (requests token limits): TPM (يطلب حدود الرمز المميز): - + 40000 40000 - + model: نموذج: - + base_url: base_url: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model نموذج مخصص - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out (الحد الأقصى لوقت الانتظار لكل طلب. بالنسبة لـ gpt-3.5 يوصى بـ 120 ثانية، بالنسبة لـ gpt-4 يوصى بـ 240 ثانية): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (الحد الأقصى لطول الحرف لكل طلب. وحدة الحد الفعلية لـ openai هي الرمز المميز الذي عادة ما يكون كلمة. ولكن من الصعب تحديده، لذا استخدم max_length كبديل. الحد الأقصى من الرموز المميزة لـ openai هي 4096 لكل طلب. قم بإجراءتأكد من أن الرمز المميز أقل من الحد الأقصى، واقتراحي هو التعيين على 5000) + + + detect network delay + كشف تأخير الشبكة + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language حدد خط الملف الذي يدعم اللغة المترجمة @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files ملف html لا يتطابق مع الملف المترجم، يرجى التحقق من ملفات الإدخال @@ -1151,46 +1156,46 @@ MainWindow - + is extracting... استخراج... - - + + is translating... جار الترجمة... - - + + Click to check for update انقر للتحقق من التحديث - + It's up to date now إنه محدث الآن - + New version detected تم اكتشاف نسخة جديدة - + Would you like to open the website to get the latest verison? هل ترغب في فتح الموقع للحصول على أحدث إصدار؟ - + translate يترجم - + extract يستخرج @@ -1204,12 +1209,12 @@ حدد الدليل الذي تريد استخراجه - + select the file(s) you want to translate حدد الملف (الملفات) التي تريد ترجمتها - + select the directory you want to translate حدد الدليل الذي تريد ترجمته @@ -1431,8 +1436,8 @@ سجل نظيف - - + + Version إصدار @@ -1636,12 +1641,12 @@ قم بفك ضغط جميع الملفات (إذا تم تعطيلها، فسيتم فك ضغط ملفات البرامج النصية فقط) - + select the game file حدد ملف اللعبة - + One Key Translate Complete اكتملت ترجمة مفتاح واحد diff --git a/src/ts/bengali.ts b/src/ts/bengali.ts index 94fc4a1..661fdf7 100644 --- a/src/ts/bengali.ts +++ b/src/ts/bengali.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ রোলব্যাক বর্তমান প্রথম লোড - + select the directory you want to edit আপনি যে ডিরেক্টরিটি সম্পাদনা করতে চান তা নির্বাচন করুন - + select the file(s) you want to edit আপনি সম্পাদনা করতে চান ফাইল(গুলি) নির্বাচন করুন @@ -569,66 +569,71 @@ নিশ্চিত করুন - + detail information বিস্তারিত তথ্য - - + + 3 3 - + RPM (requests per minute): RPM (প্রতি মিনিটে অনুরোধ): - + RPS (requests per second): RPS (প্রতি সেকেন্ডে অনুরোধ): - + TPM (requests token limits): TPM (টোকেন সীমার অনুরোধ করে): - + 40000 40000 - + model: মডেল: - + base_url: base_url: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model কাস্টম মডেল - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : টাইম_আউট (প্রতিটি অনুরোধের জন্য অপেক্ষার সর্বোচ্চ সময় .gpt-3.5 এর জন্য এটি 120s এর জন্য সুপারিশ করা হয়েছে, gpt-4 এর জন্য এটি 240s এর জন্য সুপারিশ করা হয়েছে): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (প্রতিটি অনুরোধের জন্য সর্বাধিক অক্ষরের দৈর্ঘ্য। openai এর প্রকৃত সীমা ইউনিট হল টোকেন যা সাধারণত একটি শব্দ। কিন্তু এটি সংজ্ঞায়িত করা কঠিন, তাই max_length একটি প্রতিস্থাপন হিসাবে ব্যবহার করুন। প্রতিটি অনুরোধের জন্য openai-এর সর্বাধিক টোকেন 4096 হয়। করুননিশ্চিত করুন যে টোকেনটি সীমা ছাড়িয়ে গেছে, আমার পরামর্শ হল 5000 সেট করা) + + + detect network delay + নেটওয়ার্ক বিলম্ব সনাক্ত করুন + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language ফাইল ফন্ট নির্বাচন করুন যা অনুবাদিত ভাষা সমর্থন করে @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files html ফাইলটি অনূদিত ফাইলের সাথে মেলে না, অনুগ্রহ করে ইনপুট ফাইলগুলি পরীক্ষা করুন৷ @@ -1151,46 +1156,46 @@ MainWindow - + is extracting... নিষ্কাশন করা হচ্ছে... - - + + is translating... অনুবাদ করা হচ্ছে... - - + + Click to check for update আপডেট চেক করতে ক্লিক করুন - + It's up to date now এটা এখন আপ টু ডেট - + New version detected নতুন সংস্করণ সনাক্ত করা হয়েছে - + Would you like to open the website to get the latest verison? আপনি কি সর্বশেষ সংস্করণ পেতে ওয়েবসাইট খুলতে চান? - + translate অনুবাদ করা - + extract নির্যাস @@ -1204,12 +1209,12 @@ আপনি নিষ্কাশন করতে চান ডিরেক্টরি নির্বাচন করুন - + select the file(s) you want to translate আপনি যে ফাইলটি অনুবাদ করতে চান সেটি নির্বাচন করুন - + select the directory you want to translate আপনি যে ডিরেক্টরিটি অনুবাদ করতে চান তা নির্বাচন করুন @@ -1219,8 +1224,8 @@ Ren'py অনুবাদক - - + + Version সংস্করণ @@ -1636,12 +1641,12 @@ সমস্ত ফাইল আনপ্যাক করুন (অক্ষম থাকলে শুধুমাত্র স্ক্রিপ্ট ফাইলগুলি আনপ্যাক করা হবে) - + select the game file গেম ফাইল নির্বাচন করুন - + One Key Translate Complete এক কী অনুবাদ সম্পূর্ণ diff --git a/src/ts/chinese.ts b/src/ts/chinese.ts index a3350c6..8b326ed 100644 --- a/src/ts/chinese.ts +++ b/src/ts/chinese.ts @@ -323,7 +323,7 @@ - + Current @@ -349,7 +349,7 @@ - + Original @@ -520,12 +520,12 @@ 将 当前 回滚到刚加载时 - + select the directory you want to edit 选择要编辑的目录 - + select the file(s) you want to edit 选择您要编辑的文件 @@ -569,66 +569,71 @@ 确认 - + detail information 详细信息 - - + + 3 3 - + RPM (requests per minute): RPM (每分钟请求数): - + RPS (requests per second): RPS (每秒请求数): - + TPM (requests token limits): TPM (请求令牌限制): - + 40000 40000 - + model: 模型: - + base_url: base_url: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model 定制模型 - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out(每个请求的最大等待时间。对于gpt-3.5,建议为120s,对于gpt-4,建议为240s): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (每次请求的最大字符长度。openai的实际限制单位是token,一般是一个单词。但是很难定义,所以用max_length代替。openai每次请求的最大token数是4096。 确保令牌低于限制,我的建议是设置为 5000) + + + detect network delay + 检测网络延迟 + ExportSettingDialog @@ -909,7 +914,7 @@ - + select the file font which supports the translated language 选择支持翻译语言的文件字体 @@ -1010,9 +1015,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files html文件与翻译的文件不匹配,请检查输入文件 @@ -1160,40 +1165,40 @@ Ren'py 翻译器 - + is extracting... 抽取中... - - + + is translating... 翻译中... - - + + Click to check for update 点击检查更新 - + It's up to date now 现在是最新的 - + New version detected 检测到新版本 - + Would you like to open the website to get the latest verison? 您是否愿意打开网站获取最新版本? - + translate 翻译 @@ -1207,12 +1212,12 @@ 选择你要解压的目录 - + select the file(s) you want to translate 选择您要翻译的文件 - + select the directory you want to translate 选择要翻译的目录 @@ -1404,7 +1409,7 @@ 在此处输入或选择或拖动要翻译的目录。示例:F:\GameName\game\tl\language - + extract 抽取 @@ -1449,8 +1454,8 @@ 清空日志 - - + + Version 版本 @@ -1644,12 +1649,12 @@ 解压所有文件(如果禁用,则仅解压脚本文件) - + select the game file 选择游戏文件 - + One Key Translate Complete 一键翻译完成 diff --git a/src/ts/default.ts b/src/ts/default.ts index f5d9747..18235ae 100644 --- a/src/ts/default.ts +++ b/src/ts/default.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ - + select the directory you want to edit - + select the file(s) you want to edit @@ -569,66 +569,71 @@ - + detail information - - + + 3 - + RPM (requests per minute): - + RPS (requests per second): - + TPM (requests token limits): - + 40000 - + model: - + base_url: - + http://my.test.server.example.com:8083 - + custom model - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) + + + detect network delay + + ExportSettingDialog @@ -839,7 +844,7 @@ - + select the file font which supports the translated language @@ -971,9 +976,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files @@ -1096,57 +1101,57 @@ MainWindow - + is extracting... - - + + is translating... - - + + Click to check for update - + It's up to date now - + New version detected - + Would you like to open the website to get the latest verison? - + translate - + extract - + select the file(s) you want to translate - + select the directory you want to translate @@ -1156,8 +1161,8 @@ - - + + Version @@ -1513,12 +1518,12 @@ - + select the game file - + One Key Translate Complete diff --git a/src/ts/french.ts b/src/ts/french.ts index 884c7ef..663e31a 100644 --- a/src/ts/french.ts +++ b/src/ts/french.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ Retourner le courant à la première charge - + select the directory you want to edit sélectionnez le répertoire que vous souhaitez modifier - + select the file(s) you want to edit sélectionnez le(s) fichier(s) que vous souhaitez modifier @@ -569,66 +569,71 @@ Confirmer - + detail information informations détaillées - - + + 3 3 - + RPM (requests per minute): RPM (requêtes par minute) : - + RPS (requests per second): RPS (requêtes par seconde) : - + TPM (requests token limits): TPM (demande des limites de jetons) : - + 40000 40000 - + model: modèle: - + base_url: URL_de base : - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model modèle personnalisé - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out (Le temps d'attente maximum pour chaque requête .pour gpt-3.5 il est recommandé à 120s, pour gpt-4 il est recommandé à 240s) : - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (La longueur maximale des caractères pour chaque requête. L'unité limite réelle d'openai est un jeton qui est normalement un mot. Mais c'est difficile à définir, alors utilisez max_length en remplacement. Le maximum de jetons d'openai est de 4096 pour chaque requête. Faites assurez-vous que le jeton est sous la limite de dépassement, ma suggestion est de le définir sur 5000) + + + detect network delay + détecter le retard du réseau + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language sélectionnez la police du fichier qui prend en charge la langue traduite @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files Le fichier HTML ne correspond pas au fichier traduit, veuillez vérifier les fichiers d'entrée @@ -1151,46 +1156,46 @@ MainWindow - + is extracting... extraire... - - + + is translating... Traduction en cours... - - + + Click to check for update Cliquez pour vérifier la mise à jour - + It's up to date now C'est à jour maintenant - + New version detected Nouvelle version détectée - + Would you like to open the website to get the latest verison? Souhaitez-vous ouvrir le site Web pour obtenir la dernière version ? - + translate traduire - + extract extrait @@ -1204,12 +1209,12 @@ sélectionnez le répertoire que vous souhaitez extraire - + select the file(s) you want to translate sélectionnez le(s) fichier(s) que vous souhaitez traduire - + select the directory you want to translate sélectionnez le répertoire que vous souhaitez traduire @@ -1446,8 +1451,8 @@ effacer le journal - - + + Version Version @@ -1636,12 +1641,12 @@ Décompressez tous les fichiers (s'ils sont désactivés, seuls les fichiers de script seront décompressés) - + select the game file sélectionnez le fichier du jeu - + One Key Translate Complete Une traduction clé terminée diff --git a/src/ts/german.ts b/src/ts/german.ts index ae6c5ca..65b023b 100644 --- a/src/ts/german.ts +++ b/src/ts/german.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ Rollback-Strom zum ersten Laden - + select the directory you want to edit Wählen Sie das Verzeichnis aus, das Sie bearbeiten möchten - + select the file(s) you want to edit Wählen Sie die Datei(en) aus, die Sie bearbeiten möchten @@ -569,66 +569,71 @@ Bestätigen - + detail information Detail Information - - + + 3 3 - + RPM (requests per minute): RPM (Anfragen pro Minute): - + RPS (requests per second): RPS (Anfragen pro Sekunde): - + TPM (requests token limits): TPM (Anforderungs-Token-Limits): - + 40000 40000 - + model: Modell: - + base_url: base_url: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model kundenspezifisches Modell - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out (Die maximale Wartezeit für jede Anfrage. Für gpt-3.5 werden 120 Sekunden empfohlen, für gpt-4 werden 240 Sekunden empfohlen): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (Die maximale Zeichenlänge für jede Anfrage. Die tatsächliche Grenzeinheit von openai ist ein Token, das normalerweise ein Wort ist. Aber es ist schwer zu definieren, also verwenden Sie max_length als Ersatz. Die maximalen Tokens von openai sind 4096 für jede Anfrage. Machen Stellen Sie sicher, dass der Token unter dem Überschreitungslimit liegt. Mein Vorschlag ist, ihn auf 5000 zu setzen.) + + + detect network delay + Netzwerkverzögerung erkennen + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language Wählen Sie die Dateischriftart aus, die die übersetzte Sprache unterstützt @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files Die HTML-Datei stimmt nicht mit der übersetzten Datei überein. Bitte überprüfen Sie die Eingabedateien @@ -1131,57 +1136,57 @@ MainWindow - + is extracting... extrahieren... - - + + is translating... übersetzen... - - + + Click to check for update Klicken Sie hier, um nach Updates zu suchen - + It's up to date now Es ist jetzt auf dem neuesten Stand - + New version detected Neue Version erkannt - + Would you like to open the website to get the latest verison? Möchten Sie die Website öffnen, um die neueste Version zu erhalten? - + translate übersetzen - + extract Extrakt - + select the file(s) you want to translate Wählen Sie die Datei(en) aus, die Sie übersetzen möchten - + select the directory you want to translate Wählen Sie das Verzeichnis aus, das Sie übersetzen möchten @@ -1191,8 +1196,8 @@ Ren'py-Übersetzer - - + + Version Ausführung @@ -1548,12 +1553,12 @@ Alle Dateien entpacken (wenn deaktiviert, werden nur Skriptdateien entpackt) - + select the game file Wählen Sie die Spieldatei aus - + One Key Translate Complete One-Key-Übersetzung abgeschlossen diff --git a/src/ts/greek.ts b/src/ts/greek.ts index 01547ca..9670f7c 100644 --- a/src/ts/greek.ts +++ b/src/ts/greek.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ Ρεύμα επαναφοράς στο πρώτο φορτίο - + select the directory you want to edit επιλέξτε τον κατάλογο που θέλετε να επεξεργαστείτε - + select the file(s) you want to edit επιλέξτε τα αρχεία που θέλετε να επεξεργαστείτε @@ -569,66 +569,71 @@ Επιβεβαιώνω - + detail information λεπτομερής πληροφορία - - + + 3 3 - + RPM (requests per minute): RPM (αιτήματα ανά λεπτό): - + RPS (requests per second): RPS (αιτήματα ανά δευτερόλεπτο): - + TPM (requests token limits): TPM (αιτήματα ορίων διακριτικών): - + 40000 40000 - + model: μοντέλο: - + base_url: base_url: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model προσαρμοσμένο μοντέλο - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out (Ο μέγιστος χρόνος αναμονής για κάθε αίτημα .για gpt-3.5 συνιστάται σε 120 δευτερόλεπτα, για gpt-4 συνιστάται σε 240 δευτερόλεπτα): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (Το μέγιστο μήκος χαρακτήρων για κάθε αίτημα. Η πραγματική μονάδα ορίου του openai είναι το διακριτικό που είναι συνήθως μια λέξη. Αλλά είναι δύσκολο να οριστεί, γι' αυτό χρησιμοποιήστε το max_length ως αντικατάσταση. Τα μέγιστα διακριτικά του openai είναι 4096 για κάθε αίτημα. Κάντε βεβαιωθείτε ότι το διακριτικό είναι κάτω από το όριο υπέρβασης, η πρότασή μου είναι να ορίσετε το 5000) + + + detect network delay + εντοπισμός καθυστέρησης δικτύου + ExportSettingDialog @@ -839,7 +844,7 @@ - + select the file font which supports the translated language επιλέξτε τη γραμματοσειρά του αρχείου που υποστηρίζει τη μεταφρασμένη γλώσσα @@ -971,9 +976,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files Το αρχείο html δεν ταιριάζει με το μεταφρασμένο αρχείο, ελέγξτε τα αρχεία εισόδου @@ -1096,57 +1101,57 @@ MainWindow - + is extracting... εξάγει... - - + + is translating... μεταφράζει... - - + + Click to check for update Κάντε κλικ για να ελέγξετε για ενημέρωση - + It's up to date now Είναι ενημερωμένο τώρα - + New version detected Εντοπίστηκε νέα έκδοση - + Would you like to open the website to get the latest verison? Θέλετε να ανοίξετε τον ιστότοπο για να λάβετε την πιο πρόσφατη έκδοση; - + translate μεταφράζω - + extract εκχύλισμα - + select the file(s) you want to translate επιλέξτε τα αρχεία που θέλετε να μεταφράσετε - + select the directory you want to translate επιλέξτε τον κατάλογο που θέλετε να μεταφράσετε @@ -1156,8 +1161,8 @@ Μεταφραστής Ren'py - - + + Version Εκδοχή @@ -1513,12 +1518,12 @@ Αποσυσκευάστε όλα τα αρχεία (εάν είναι απενεργοποιημένα μόνο τα αρχεία σεναρίου θα αποσυμπιεστούν) - + select the game file επιλέξτε το αρχείο του παιχνιδιού - + One Key Translate Complete Ολοκληρώθηκε η μετάφραση ενός κλειδιού diff --git a/src/ts/hindi.ts b/src/ts/hindi.ts index 0fde146..eb22311 100644 --- a/src/ts/hindi.ts +++ b/src/ts/hindi.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ रोलबैक करंट को पहले लोड पर - + select the directory you want to edit वह निर्देशिका चुनें जिसे आप संपादित करना चाहते हैं - + select the file(s) you want to edit वह फ़ाइल चुनें जिसे आप संपादित करना चाहते हैं @@ -569,66 +569,71 @@ पुष्टि करना - + detail information विस्तार से जानकारी - - + + 3 3 - + RPM (requests per minute): आरपीएम (प्रति मिनट अनुरोध): - + RPS (requests per second): आरपीएस (प्रति सेकंड अनुरोध): - + TPM (requests token limits): टीपीएम (टोकन सीमा का अनुरोध): - + 40000 40000 - + model: नमूना: - + base_url: आधार_यूआरएल: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model कस्टम मॉडल - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : टाइम_आउट (प्रत्येक अनुरोध के लिए प्रतीक्षा का अधिकतम समय। gpt-3.5 के लिए इसे 120s तक अनुशंसित किया जाता है, gpt-4 के लिए इसे 240s तक अनुशंसित किया जाता है): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (प्रत्येक अनुरोध के लिए अधिकतम वर्ण लंबाई। openai की वास्तविक सीमा इकाई टोकन है जो सामान्य रूप से एक शब्द है। लेकिन इसे परिभाषित करना कठिन है, इसलिए प्रतिस्थापन के रूप में max_length का उपयोग करें। प्रत्येक अनुरोध के लिए openai की अधिकतम टोकन 4096 हैं। बनाएं सुनिश्चित करें कि टोकन सीमा से अधिक है, मेरा सुझाव 5000 पर सेट करना है) + + + detect network delay + नेटवर्क विलंब का पता लगाना + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language उस फ़ाइल फ़ॉन्ट का चयन करें जो अनुवादित भाषा का समर्थन करता है @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files HTML फ़ाइल अनुवादित फ़ाइल से मेल नहीं खाती, कृपया इनपुट फ़ाइलों की जाँच करें @@ -1151,46 +1156,46 @@ MainWindow - + is extracting... निकाल रहा हूँ... - - + + is translating... अनुवाद कर रहा हूँ... - - + + Click to check for update अपडेट देखने के लिए क्लिक करें - + It's up to date now यह अब अद्यतित है - + New version detected नया संस्करण पाया गया - + Would you like to open the website to get the latest verison? क्या आप नवीनतम संस्करण प्राप्त करने के लिए वेबसाइट खोलना चाहेंगे? - + translate अनुवाद - + extract निकालना @@ -1204,12 +1209,12 @@ वह निर्देशिका चुनें जिसे आप निकालना चाहते हैं - + select the file(s) you want to translate वह फ़ाइल चुनें जिसका आप अनुवाद करना चाहते हैं - + select the directory you want to translate वह निर्देशिका चुनें जिसका आप अनुवाद करना चाहते हैं @@ -1219,8 +1224,8 @@ रेन्पी अनुवादक - - + + Version संस्करण @@ -1636,12 +1641,12 @@ सभी फ़ाइलें अनपैक करें (यदि अक्षम किया गया है तो केवल स्क्रिप्ट फ़ाइलें ही अनपैक होंगी) - + select the game file गेम फ़ाइल का चयन करें - + One Key Translate Complete एक कुंजी अनुवाद पूर्ण diff --git a/src/ts/japanese.ts b/src/ts/japanese.ts index 5a5fce5..9adef9b 100644 --- a/src/ts/japanese.ts +++ b/src/ts/japanese.ts @@ -323,7 +323,7 @@ - + Current @@ -349,7 +349,7 @@ - + Original @@ -520,12 +520,12 @@ 現在 をロードしたばかりの状態にロールバックします - + select the directory you want to edit 編集したいディレクトリを選択します - + select the file(s) you want to edit 編集したいファイルを選択します @@ -569,66 +569,71 @@ 確認する - + detail information 詳細情報 - - + + 3 3 - + RPM (requests per minute): RPM (1 分あたりのリクエスト数): - + RPS (requests per second): RPS (1 秒あたりのリクエスト数): - + TPM (requests token limits): TPM (トークン制限を要求): - + 40000 40000 - + model: モデル: - + base_url: base_url: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model カスタムモデル - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out (各リクエストの最大待機時間。gpt-3.5 の場合は 120 秒が推奨され、gpt-4 の場合は 240 秒が推奨されます): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (各リクエストの最大文字長。openai の実際の制限単位は、通常は単語であるトークンです。しかし定義が難しいため、代わりに max_length を使用します。openai の最大トークンはリクエストごとに 4096 です。 トークンが制限を超えていることを確認してください。私の提案は 5000 に設定することです) + + + detect network delay + ネットワーク遅延を検出する + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language 翻訳された言語をサポートするファイルフォントを選択します @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files HTML ファイルが翻訳されたファイルと一致しません。入力ファイルを確認してください @@ -1156,40 +1161,40 @@ レンピー翻訳者 - + is extracting... 抽出中... - - + + is translating... 翻訳中... - - + + Click to check for update クリックして更新を確認してください - + It's up to date now 今は最新です - + New version detected 新しいバージョンが検出されました - + Would you like to open the website to get the latest verison? 最新バージョンを取得するためにWebサイトを開きますか? - + translate 翻訳する @@ -1203,12 +1208,12 @@ 抽出したいディレクトリを選択します - + select the file(s) you want to translate 翻訳したいファイルを選択します - + select the directory you want to translate 翻訳したいディレクトリを選択します @@ -1396,7 +1401,7 @@ ここに翻訳したいディレクトリを入力または選択またはドラッグします。例:F:\GameName\game\tl\language - + extract 抽出する @@ -1441,8 +1446,8 @@ ログをクリアする - - + + Version バージョン @@ -1636,12 +1641,12 @@ すべてのファイルを解凍します(無効にするとスクリプト ファイルのみが解凍されます) - + select the game file ゲームファイルを選択します - + One Key Translate Complete ワンキー翻訳完了 diff --git a/src/ts/korean.ts b/src/ts/korean.ts index c484de8..c418078 100644 --- a/src/ts/korean.ts +++ b/src/ts/korean.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ 전류를 첫 번째 부하로 롤백 - + select the directory you want to edit 편집하려는 디렉토리를 선택하십시오 - + select the file(s) you want to edit 편집하고 싶은 파일을 선택하세요 @@ -569,66 +569,71 @@ 확인하다 - + detail information 자세한 정보 - - + + 3 - + RPM (requests per minute): RPM(분당 요청): - + RPS (requests per second): RPS(초당 요청): - + TPM (requests token limits): TPM(토큰 제한 요청): - + 40000 40000 - + model: 모델: - + base_url: 기본_URL: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model 맞춤 모델 - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out(각 요청에 대한 최대 대기 시간입니다. gpt-3.5의 경우 120초를 권장하고, gpt-4의 경우 240초를 권장합니다): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (각 요청의 최대 문자 길이입니다. openai의 실제 제한 단위는 일반적으로 단어인 토큰입니다. 그러나 정의하기 어렵기 때문에 대체용으로 max_length를 사용하십시오. openai의 최대 토큰은 각 요청에 대해 4096입니다. 토큰이 초과 한도 미만인지 확인하십시오. 제 제안은 5000으로 설정하는 것입니다.) + + + detect network delay + 네트워크 지연 감지 + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language 번역된 언어를 지원하는 파일 글꼴을 선택하세요 @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files HTML 파일이 번역된 파일과 일치하지 않습니다. 입력 파일을 확인하세요 @@ -1131,57 +1136,57 @@ MainWindow - + is extracting... 적출... - - + + is translating... 번역하는 중... - - + + Click to check for update 업데이트를 확인하려면 클릭하세요 - + It's up to date now 지금은 최신 상태입니다 - + New version detected 새 버전이 감지되었습니다 - + Would you like to open the website to get the latest verison? 최신 버전을 다운로드하기 위해 웹사이트를 여시겠습니까? - + translate 번역하다 - + extract 발췌 - + select the file(s) you want to translate 번역하려는 파일을 선택하세요 - + select the directory you want to translate 번역하려는 디렉토리를 선택하십시오 @@ -1191,8 +1196,8 @@ 렌피 번역기 - - + + Version 버전 @@ -1548,12 +1553,12 @@ 모든 파일 압축 해제(비활성화되면 스크립트 파일만 압축 해제됨) - + select the game file 게임 파일을 선택하세요 - + One Key Translate Complete 하나의 키 번역 완료 diff --git a/src/ts/portuguese.ts b/src/ts/portuguese.ts index 709e7f0..ff40bfd 100644 --- a/src/ts/portuguese.ts +++ b/src/ts/portuguese.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ Reverter a corrente para a primeira carga - + select the directory you want to edit selecione o diretório que deseja editar - + select the file(s) you want to edit selecione o(s) arquivo(s) que deseja editar @@ -569,66 +569,71 @@ confirme - + detail information informações detalhadas - - + + 3 3 - + RPM (requests per minute): RPM (solicitações por minuto): - + RPS (requests per second): RPS (solicitações por segundo): - + TPM (requests token limits): TPM (solicita limites de token): - + 40000 40.000 - + model: modelo: - + base_url: URL_base: - + http://my.test.server.example.com:8083 http://meu.teste.servidor.exemplo.com:8083 - + custom model modelo personalizado - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out (O tempo máximo de espera para cada solicitação. Para gpt-3.5 é recomendado 120s, para gpt-4 é recomendado 240s): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (O comprimento máximo de caracteres para cada solicitação. A unidade limite real de openai é token, que normalmente é uma palavra. Mas é difícil de definir, então use max_length como um substituto. Os tokens máximos de openai são 4096 para cada solicitação. Faça certeza de que o token está abaixo do limite excedido, minha sugestão é definir como 5000) + + + detect network delay + detectar atraso na rede + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language selecione a fonte do arquivo que suporta o idioma traduzido @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files O arquivo html não corresponde ao arquivo traduzido, verifique os arquivos de entrada @@ -1151,46 +1156,46 @@ MainWindow - + is extracting... extraindo... - - + + is translating... traduzindo... - - + + Click to check for update Clique para verificar se há atualização - + It's up to date now Está atualizado agora - + New version detected Nova versão detectada - + Would you like to open the website to get the latest verison? Gostaria de abrir o site para obter a versão mais recente? - + translate traduzir - + extract extrair @@ -1204,12 +1209,12 @@ selecione o diretório que deseja extrair - + select the file(s) you want to translate selecione o(s) arquivo(s) que deseja traduzir - + select the directory you want to translate selecione o diretório que deseja traduzir @@ -1219,8 +1224,8 @@ Tradutor Ren'py - - + + Version Versão @@ -1636,12 +1641,12 @@ Descompacte todos os arquivos (se desativado, apenas os arquivos de script serão descompactados) - + select the game file selecione o arquivo do jogo - + One Key Translate Complete Tradução completa de uma chave diff --git a/src/ts/russian.ts b/src/ts/russian.ts index 8c7420d..e81bd22 100644 --- a/src/ts/russian.ts +++ b/src/ts/russian.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ Ток отката до первой нагрузки - + select the directory you want to edit выберите каталог, который вы хотите редактировать - + select the file(s) you want to edit выберите файл(ы), которые вы хотите отредактировать @@ -569,66 +569,71 @@ Подтверждать - + detail information детальная информация - - + + 3 3 - + RPM (requests per minute): RPM (запросов в минуту): - + RPS (requests per second): RPS (запросов в секунду): - + TPM (requests token limits): TPM (запрашивает лимиты токенов): - + 40000 40000 - + model: модель: - + base_url: базовый_url: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model пользовательская модель - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out (Максимальное время ожидания каждого запроса. Для gpt-3.5 рекомендуется 120 с, для gpt-4 рекомендуется 240 с): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (Максимальная длина символов для каждого запроса. Фактической предельной единицей openai является токен, который обычно представляет собой слово. Но это сложно определить, поэтому используйте max_length в качестве замены. Максимальное количество токенов openai составляет 4096 для каждого запроса. Сделайте уверен, что токен превышает лимит, я предлагаю установить значение 5000) + + + detect network delay + обнаружить задержку сети + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language выберите шрифт файла, который поддерживает переведенный язык @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files HTML-файл не соответствует переведенному файлу, проверьте входные файлы @@ -1151,46 +1156,46 @@ MainWindow - + is extracting... извлечение... - - + + is translating... Идет перевод... - - + + Click to check for update Нажмите, чтобы проверить наличие обновлений - + It's up to date now Это актуально сейчас - + New version detected Обнаружена новая версия - + Would you like to open the website to get the latest verison? Хотите открыть веб-сайт и получить последнюю версию? - + translate переводить - + extract извлекать @@ -1204,12 +1209,12 @@ выберите каталог, который вы хотите извлечь - + select the file(s) you want to translate выберите файл(ы), которые вы хотите перевести - + select the directory you want to translate выберите каталог, который вы хотите перевести @@ -1219,8 +1224,8 @@ Ренпи Переводчик - - + + Version Версия @@ -1636,12 +1641,12 @@ Распаковать все файлы (если отключено, будут распакованы только файлы скриптов) - + select the game file выберите файл игры - + One Key Translate Complete One Key Translate завершен diff --git a/src/ts/spanish.ts b/src/ts/spanish.ts index 9a1d988..d037f65 100644 --- a/src/ts/spanish.ts +++ b/src/ts/spanish.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ Revertir la corriente a la primera carga - + select the directory you want to edit seleccione el directorio que desea editar - + select the file(s) you want to edit seleccione el archivo(s) que desea editar @@ -569,66 +569,71 @@ Confirmar - + detail information información detallada - - + + 3 3 - + RPM (requests per minute): RPM (solicitudes por minuto): - + RPS (requests per second): RPS (solicitudes por segundo): - + TPM (requests token limits): TPM (solicita límites de tokens): - + 40000 40000 - + model: modelo: - + base_url: base_url: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model modelo personalizado - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out (El tiempo máximo de espera para cada solicitud. Para gpt-3.5 se recomienda 120 s, para gpt-4 se recomienda 240 s): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (La longitud máxima de caracteres para cada solicitud. La unidad límite real de openai es un token, que normalmente es una palabra. Pero es difícil de definir, así que use max_length como reemplazo. Los tokens máximos de openai son 4096 para cada solicitud. Asegúrese de que el token esté por debajo del límite excedido, mi sugerencia es establecerlo en 5000) + + + detect network delay + detectar retraso en la red + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language seleccione la fuente del archivo que admita el idioma traducido @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files El archivo html no coincide con el archivo traducido, verifique los archivos de entrada @@ -1151,46 +1156,46 @@ MainWindow - + is extracting... extrayendo... - - + + is translating... traductorio... - - + + Click to check for update Haga clic para buscar actualizaciones - + It's up to date now Está actualizado ahora - + New version detected Nueva versión detectada - + Would you like to open the website to get the latest verison? ¿Le gustaría abrir el sitio web para obtener la última versión? - + translate traducir - + extract extracto @@ -1204,12 +1209,12 @@ seleccione el directorio que desea extraer - + select the file(s) you want to translate seleccione el archivo(s) que desea traducir - + select the directory you want to translate seleccione el directorio que desea traducir @@ -1219,8 +1224,8 @@ Traductor Ren'py - - + + Version Versión @@ -1640,12 +1645,12 @@ Desempaquetar todos los archivos (si está deshabilitado, solo se descomprimirán los archivos de script) - + select the game file selecciona el archivo del juego - + One Key Translate Complete Traducción completa con una tecla diff --git a/src/ts/turkish.ts b/src/ts/turkish.ts index c5a60aa..3d11dba 100644 --- a/src/ts/turkish.ts +++ b/src/ts/turkish.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ İlk yüklemeye geri al - + select the directory you want to edit düzenlemek istediğiniz dizini seçin - + select the file(s) you want to edit düzenlemek istediğiniz dosya(ları) seçin @@ -569,66 +569,71 @@ Onayla - + detail information detaylar - - + + 3 3 - + RPM (requests per minute): RPM (dakika başına talep): - + RPS (requests per second): RPS (saniyedeki istek sayısı): - + TPM (requests token limits): TPM (gerekli token limitleri): - + 40000 40000 - + model: model: - + base_url: base_url: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model özel model - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out (Her istek için maksimum bekleme süresi. gpt-3.5 için 120s, gpt-4 için 240s önerilir): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (Her istek için maksimum karakter uzunluğu. Openai'nin gerçek sınır birimi normalde bir kelime olan jetondur. Ancak tanımlamak zordur, bu nedenle yerine max_length kullanın. Openai'nin maksimum jetonları her istek için 4096'dır. belirtecin aşma sınırının altında olduğundan emin olun, önerim 5000'e ayarlamaktır) + + + detect network delay + ağ gecikmesini tespit et + ExportSettingDialog @@ -839,7 +844,7 @@ - + select the file font which supports the translated language çevrilmiş dili destekleyen dosya yazı tipini seçin @@ -983,9 +988,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files Html dosyası çevrilen dosyayla eşleşmiyor, lütfen dosyaları kontrol edin @@ -1108,57 +1113,57 @@ MainWindow - + is extracting... çıkartılıyor... - - + + is translating... Çevriliyor... - - + + Click to check for update Güncellemeyi kontrol etmek için tıklayın - + It's up to date now Artık güncel - + New version detected Yeni sürüm algılandı - + Would you like to open the website to get the latest verison? En son sürümü almak için web sitesini açmak ister misiniz? - + translate Çevir - + extract çıkar - + select the file(s) you want to translate çevirmek istediğiniz dosya(lar)ı seçin - + select the directory you want to translate çevirmek istediğiniz dizini seçin @@ -1168,8 +1173,8 @@ Ren'py Çevirici - - + + Version Sürüm @@ -1525,12 +1530,12 @@ Tüm dosyaları paketinden çıkarın (devre dışı bırakılırsa yalnızca komut dosyası dosyaları açılır) - + select the game file Dosyayı seçin - + One Key Translate Complete Tek Tuşla Çeviri Tamamlandı diff --git a/src/ts/urdu.ts b/src/ts/urdu.ts index a783cf2..ea624d2 100644 --- a/src/ts/urdu.ts +++ b/src/ts/urdu.ts @@ -296,7 +296,7 @@ - + Original @@ -307,7 +307,7 @@ - + Current @@ -404,12 +404,12 @@ پہلے لوڈ پر کرنٹ کو رول بیک کریں۔ - + select the directory you want to edit وہ ڈائریکٹری منتخب کریں جس میں آپ ترمیم کرنا چاہتے ہیں۔ - + select the file(s) you want to edit وہ فائل منتخب کریں جس میں آپ ترمیم کرنا چاہتے ہیں۔ @@ -569,66 +569,71 @@ تصدیق کریں۔ - + detail information تفصیلی معلومات - - + + 3 3 - + RPM (requests per minute): RPM (درخواستیں فی منٹ): - + RPS (requests per second): RPS (درخواستیں فی سیکنڈ): - + TPM (requests token limits): TPM (ٹوکن کی حد کی درخواست کرتا ہے): - + 40000 40000 - + model: ماڈل: - + base_url: base_url: - + http://my.test.server.example.com:8083 http://my.test.server.example.com:8083 - + custom model اپنی مرضی کے مطابق ماڈل - + time_out (The max time wait for each request .for gpt-3.5 it's recommended to 120s , for gpt-4 it's recommened to 240s) : time_out (ہر درخواست کے لیے انتظار کرنے کا زیادہ سے زیادہ وقت .gpt-3.5 کے لیے 120s پر تجویز کیا جاتا ہے، gpt-4 کے لیے اسے 240s کرنے کی سفارش کی جاتی ہے): - + max_length (The max character length for each request. The actual limit unit of openai is token which is normally a word. But it'hard to define,so use max_length as a replacement. The max tokens of openai are 4096 for each request. Make sure the token is under the exceed limit , my suggestion is to set to 5000) max_length (ہر درخواست کے لیے زیادہ سے زیادہ کریکٹر کی لمبائی۔ Openai کی اصل حد کی اکائی ٹوکن ہے جو کہ عام طور پر ایک لفظ ہے۔ لیکن اس کی وضاحت کرنا مشکل ہے، اس لیے max_length کو متبادل کے طور پر استعمال کریں۔ اوپنائی کے زیادہ سے زیادہ ٹوکن ہر درخواست کے لیے 4096 ہیں۔ بنائیں۔یقین ہے کہ ٹوکن حد سے زیادہ ہے، میری تجویز ہے کہ 5000 پر سیٹ کیا جائے) + + + detect network delay + نیٹ ورک کی تاخیر کا پتہ لگانا + ExportSettingDialog @@ -862,7 +867,7 @@ - + select the file font which supports the translated language فائل کا فونٹ منتخب کریں جو ترجمہ شدہ زبان کو سپورٹ کرتا ہے۔ @@ -1006,9 +1011,9 @@ ImportHtmlDialog - - - + + + The html file does not match the translated file , please check the input files html فائل ترجمہ شدہ فائل سے مماثل نہیں ہے، براہ کرم ان پٹ فائلوں کو چیک کریں۔ @@ -1151,46 +1156,46 @@ MainWindow - + is extracting... نکال رہا ہے... - - + + is translating... ترجمہ... - - + + Click to check for update اپ ڈیٹ چیک کرنے کے لیے کلک کریں۔ - + It's up to date now یہ اب اپ ٹو ڈیٹ ہے۔ - + New version detected نئے ورژن کا پتہ چلا - + Would you like to open the website to get the latest verison? کیا آپ تازہ ترین ورژن حاصل کرنے کے لیے ویب سائٹ کھولنا چاہیں گے؟ - + translate ترجمہ - + extract نکالنا @@ -1204,12 +1209,12 @@ وہ ڈائریکٹری منتخب کریں جسے آپ نکالنا چاہتے ہیں۔ - + select the file(s) you want to translate وہ فائل (فائلیں) منتخب کریں جس کا آپ ترجمہ کرنا چاہتے ہیں۔ - + select the directory you want to translate وہ ڈائریکٹری منتخب کریں جس کا آپ ترجمہ کرنا چاہتے ہیں۔ @@ -1219,8 +1224,8 @@ Ren'py مترجم - - + + Version ورژن @@ -1636,12 +1641,12 @@ تمام فائلوں کو کھولیں (اگر غیر فعال ہو تو صرف اسکرپٹ فائلوں کو پیک کیا جائے گا) - + select the game file گیم فائل کو منتخب کریں۔ - + One Key Translate Complete ایک کلیدی ترجمہ مکمل