refac
This commit is contained in:
@@ -1344,9 +1344,7 @@ async def chat_completion(
|
|||||||
user_message = metadata.get('user_message') or {}
|
user_message = metadata.get('user_message') or {}
|
||||||
selected_chat_models = user_message.get('models') if isinstance(user_message, dict) else None
|
selected_chat_models = user_message.get('models') if isinstance(user_message, dict) else None
|
||||||
if not isinstance(selected_chat_models, list) or not selected_chat_models:
|
if not isinstance(selected_chat_models, list) or not selected_chat_models:
|
||||||
selected_chat_models = [
|
selected_chat_models = [entry.get('model_id') for entry in message_ids if entry.get('model_id')]
|
||||||
entry.get('model_id') for entry in message_ids if entry.get('model_id')
|
|
||||||
]
|
|
||||||
|
|
||||||
# Persist chat-level fields the frontend used to save on every message.
|
# Persist chat-level fields the frontend used to save on every message.
|
||||||
# The old frontend saveChatHandler did this on every message;
|
# The old frontend saveChatHandler did this on every message;
|
||||||
|
|||||||
@@ -89,9 +89,7 @@ def _convert_column_to_json(table: str, column: str):
|
|||||||
parsed = None
|
parsed = None
|
||||||
|
|
||||||
conn.execute(
|
conn.execute(
|
||||||
sa.update(
|
sa.update(sa.table(table, sa.column('id'), sa.column(f'{column}_json', sa.JSON)))
|
||||||
sa.table(table, sa.column('id'), sa.column(f'{column}_json', sa.JSON))
|
|
||||||
)
|
|
||||||
.where(sa.column('id') == uid)
|
.where(sa.column('id') == uid)
|
||||||
.values({f'{column}_json': parsed})
|
.values({f'{column}_json': parsed})
|
||||||
)
|
)
|
||||||
@@ -122,9 +120,7 @@ def _convert_column_to_text(table: str, column: str):
|
|||||||
|
|
||||||
for uid, raw in rows:
|
for uid, raw in rows:
|
||||||
conn.execute(
|
conn.execute(
|
||||||
sa.update(
|
sa.update(sa.table(table, sa.column('id'), sa.column(f'{column}_text', sa.Text)))
|
||||||
sa.table(table, sa.column('id'), sa.column(f'{column}_text', sa.Text))
|
|
||||||
)
|
|
||||||
.where(sa.column('id') == uid)
|
.where(sa.column('id') == uid)
|
||||||
.values({f'{column}_text': json.dumps(raw) if raw is not None else None})
|
.values({f'{column}_text': json.dumps(raw) if raw is not None else None})
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -648,9 +648,7 @@ async def _transcribe_openai(request, file_path, filename, languages, file_dir,
|
|||||||
session = await get_session()
|
session = await get_session()
|
||||||
api_key = await Config.get('audio.stt.openai.api_key')
|
api_key = await Config.get('audio.stt.openai.api_key')
|
||||||
api_base_url = await Config.get('audio.stt.openai.api_base_url')
|
api_base_url = await Config.get('audio.stt.openai.api_base_url')
|
||||||
request_format = (
|
request_format = (await Config.get('audio.stt.openai.api_request_format') or 'multipart').lower()
|
||||||
await Config.get('audio.stt.openai.api_request_format') or 'multipart'
|
|
||||||
).lower()
|
|
||||||
|
|
||||||
headers = {'Authorization': f'Bearer {api_key}'}
|
headers = {'Authorization': f'Bearer {api_key}'}
|
||||||
if user and ENABLE_FORWARD_USER_INFO_HEADERS:
|
if user and ENABLE_FORWARD_USER_INFO_HEADERS:
|
||||||
|
|||||||
@@ -3471,7 +3471,6 @@ async def non_streaming_chat_response_handler(response, ctx):
|
|||||||
content = choices[0].get('message', {}).get('content') if choices else ''
|
content = choices[0].get('message', {}).get('content') if choices else ''
|
||||||
|
|
||||||
if choices and (content or response_output):
|
if choices and (content or response_output):
|
||||||
|
|
||||||
if content or response_output:
|
if content or response_output:
|
||||||
await event_emitter(
|
await event_emitter(
|
||||||
{
|
{
|
||||||
@@ -4307,11 +4306,7 @@ async def streaming_chat_response_handler(response, ctx):
|
|||||||
if reasoning_content or reasoning_details:
|
if reasoning_content or reasoning_details:
|
||||||
reasoning_item = (
|
reasoning_item = (
|
||||||
next(
|
next(
|
||||||
(
|
(item for item in reversed(output) if item.get('type') == 'reasoning'),
|
||||||
item
|
|
||||||
for item in reversed(output)
|
|
||||||
if item.get('type') == 'reasoning'
|
|
||||||
),
|
|
||||||
None,
|
None,
|
||||||
)
|
)
|
||||||
if reasoning_details and not reasoning_content
|
if reasoning_details and not reasoning_content
|
||||||
|
|||||||
@@ -1309,6 +1309,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.",
|
"join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "معاينة JSON",
|
"JSON Preview": "معاينة JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "يوليو",
|
"July": "يوليو",
|
||||||
@@ -1441,6 +1442,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1520,6 +1522,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1909,6 +1912,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2422,7 +2426,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "جاري التحميل",
|
"Upload Progress": "جاري التحميل",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1309,6 +1309,7 @@
|
|||||||
"Jina API Key": "مفتاح API لـ Jina",
|
"Jina API Key": "مفتاح API لـ Jina",
|
||||||
"join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.",
|
"join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "معاينة JSON",
|
"JSON Preview": "معاينة JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "يوليو",
|
"July": "يوليو",
|
||||||
@@ -1441,6 +1442,7 @@
|
|||||||
"Memory added successfully": "تم إضافة الذاكرة بنجاح",
|
"Memory added successfully": "تم إضافة الذاكرة بنجاح",
|
||||||
"Memory cleared successfully": "تم مسح الذاكرة بنجاح",
|
"Memory cleared successfully": "تم مسح الذاكرة بنجاح",
|
||||||
"Memory deleted successfully": "تم حذف الذاكرة بنجاح",
|
"Memory deleted successfully": "تم حذف الذاكرة بنجاح",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "تم تحديث الذاكرة بنجاح",
|
"Memory updated successfully": "تم تحديث الذاكرة بنجاح",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "دمج الردود",
|
"Merge Responses": "دمج الردود",
|
||||||
@@ -1520,6 +1522,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1909,6 +1912,7 @@
|
|||||||
"Reply in Thread": "الرد داخل سلسلة الرسائل",
|
"Reply in Thread": "الرد داخل سلسلة الرسائل",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2422,7 +2426,6 @@
|
|||||||
"Upload Pipeline": "رفع خط المعالجة",
|
"Upload Pipeline": "رفع خط المعالجة",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "جاري التحميل",
|
"Upload Progress": "جاري التحميل",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API Açarı",
|
"Jina API Key": "Jina API Açarı",
|
||||||
"join our Discord for help.": "kömək üçün Discord kanalımıza qoşulun.",
|
"join our Discord for help.": "kömək üçün Discord kanalımıza qoşulun.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON Önizləmə",
|
"JSON Preview": "JSON Önizləmə",
|
||||||
"JSON Spec": "JSON Spesifikasiyası",
|
"JSON Spec": "JSON Spesifikasiyası",
|
||||||
"July": "İyul",
|
"July": "İyul",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Yaddaş uğurla əlavə edildi",
|
"Memory added successfully": "Yaddaş uğurla əlavə edildi",
|
||||||
"Memory cleared successfully": "Yaddaş uğurla təmizləndi",
|
"Memory cleared successfully": "Yaddaş uğurla təmizləndi",
|
||||||
"Memory deleted successfully": "Yaddaş uğurla silindi",
|
"Memory deleted successfully": "Yaddaş uğurla silindi",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Yaddaş uğurla yeniləndi",
|
"Memory updated successfully": "Yaddaş uğurla yeniləndi",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Cavabları birləşdir",
|
"Merge Responses": "Cavabları birləşdir",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "Daha Çox Seçim",
|
"More Options": "Daha Çox Seçim",
|
||||||
"Move": "Köçür",
|
"Move": "Köçür",
|
||||||
"Moved {{name}}": "{{name}} köçürüldü",
|
"Moved {{name}}": "{{name}} köçürüldü",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "Mənim Terminalım",
|
"My Terminal": "Mənim Terminalım",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Mövzu daxilində cavabla",
|
"Reply in Thread": "Mövzu daxilində cavabla",
|
||||||
"Reply to thread...": "Mövzuya cavab yaz...",
|
"Reply to thread...": "Mövzuya cavab yaz...",
|
||||||
"Replying to {{NAME}}": "{{NAME}} adlı istifadəçiyə cavab verilir",
|
"Replying to {{NAME}}": "{{NAME}} adlı istifadəçiyə cavab verilir",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "tələb olunur",
|
"required": "tələb olunur",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Pipeline yüklə",
|
"Upload Pipeline": "Pipeline yüklə",
|
||||||
"Upload profile image": "Profil şəklini yüklə",
|
"Upload profile image": "Profil şəklini yüklə",
|
||||||
"Upload Progress": "Yükləmə vəziyyəti",
|
"Upload Progress": "Yükləmə vəziyyəti",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Yükləmə vəziyyəti: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Yüklənmiş fayllar və ya şəkillər",
|
"Uploaded files or images": "Yüklənmiş fayllar və ya şəkillər",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "Yüklənir...",
|
"Uploading...": "Yüklənir...",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "API ключ за Jina",
|
"Jina API Key": "API ключ за Jina",
|
||||||
"join our Discord for help.": "свържете се с нашия Discord за помощ.",
|
"join our Discord for help.": "свържете се с нашия Discord за помощ.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON Преглед",
|
"JSON Preview": "JSON Преглед",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Юли",
|
"July": "Юли",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Паметта е добавена успешно",
|
"Memory added successfully": "Паметта е добавена успешно",
|
||||||
"Memory cleared successfully": "Паметта е изчистена успешно",
|
"Memory cleared successfully": "Паметта е изчистена успешно",
|
||||||
"Memory deleted successfully": "Паметта е изтрита успешно",
|
"Memory deleted successfully": "Паметта е изтрита успешно",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Паметта е актуализирана успешно",
|
"Memory updated successfully": "Паметта е актуализирана успешно",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Обединяване на отговори",
|
"Merge Responses": "Обединяване на отговори",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Отговори в тред",
|
"Reply in Thread": "Отговори в тред",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Качване на конвейер",
|
"Upload Pipeline": "Качване на конвейер",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Прогрес на качването",
|
"Upload Progress": "Прогрес на качването",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "সাহায্যের জন্য আমাদের Discord-এ যুক্ত হোন",
|
"join our Discord for help.": "সাহায্যের জন্য আমাদের Discord-এ যুক্ত হোন",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON প্রিভিউ",
|
"JSON Preview": "JSON প্রিভিউ",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "জুলাই",
|
"July": "জুলাই",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "আপলোড হচ্ছে",
|
"Upload Progress": "আপলোড হচ্ছে",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1274,6 +1274,7 @@
|
|||||||
"Jina API Key": "Jina API ལྡེ་མིག",
|
"Jina API Key": "Jina API ལྡེ་མིག",
|
||||||
"join our Discord for help.": "རོགས་རམ་ཆེད་དུ་ང་ཚོའི་ Discord ལ་མཉམ་ཞུགས་བྱེད་པ།",
|
"join our Discord for help.": "རོགས་རམ་ཆེད་དུ་ང་ཚོའི་ Discord ལ་མཉམ་ཞུགས་བྱེད་པ།",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON སྔོན་ལྟ།",
|
"JSON Preview": "JSON སྔོན་ལྟ།",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "ཟླ་བ་བདུན་པ།",
|
"July": "ཟླ་བ་བདུན་པ།",
|
||||||
@@ -1406,6 +1407,7 @@
|
|||||||
"Memory added successfully": "དྲན་ཤེས་ལེགས་པར་བསྣན་ཟིན།",
|
"Memory added successfully": "དྲན་ཤེས་ལེགས་པར་བསྣན་ཟིན།",
|
||||||
"Memory cleared successfully": "དྲན་ཤེས་ལེགས་པར་གཙང་སེལ་བྱས་ཟིན།",
|
"Memory cleared successfully": "དྲན་ཤེས་ལེགས་པར་གཙང་སེལ་བྱས་ཟིན།",
|
||||||
"Memory deleted successfully": "དྲན་ཤེས་ལེགས་པར་བསུབས་ཟིན།",
|
"Memory deleted successfully": "དྲན་ཤེས་ལེགས་པར་བསུབས་ཟིན།",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "དྲན་ཤེས་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
|
"Memory updated successfully": "དྲན་ཤེས་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "ལན་ཟླ་སྒྲིལ།",
|
"Merge Responses": "ལན་ཟླ་སྒྲིལ།",
|
||||||
@@ -1485,6 +1487,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1864,6 +1867,7 @@
|
|||||||
"Reply in Thread": "བརྗོད་གཞིའི་ནང་ལན་འདེབས།",
|
"Reply in Thread": "བརྗོད་གཞིའི་ནང་ལན་འདེབས།",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2367,7 +2371,6 @@
|
|||||||
"Upload Pipeline": "རྒྱུ་ལམ་སྤར་བ།",
|
"Upload Pipeline": "རྒྱུ་ལམ་སྤར་བ།",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "སྤར་བའི་འཕེལ་རིམ།",
|
"Upload Progress": "སྤར་བའི་འཕེལ་རིམ།",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "pridružite se našem Discordu za pomoć.",
|
"join our Discord for help.": "pridružite se našem Discordu za pomoć.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON pretpregled",
|
"JSON Preview": "JSON pretpregled",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Juli",
|
"July": "Juli",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Prijenos kanala",
|
"Upload Pipeline": "Prijenos kanala",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Napredak učitavanja",
|
"Upload Progress": "Napredak učitavanja",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "Clau API de Jina",
|
"Jina API Key": "Clau API de Jina",
|
||||||
"join our Discord for help.": "uneix-te al nostre Discord per obtenir ajuda.",
|
"join our Discord for help.": "uneix-te al nostre Discord per obtenir ajuda.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Vista prèvia del document JSON",
|
"JSON Preview": "Vista prèvia del document JSON",
|
||||||
"JSON Spec": "Especificacions del JSON",
|
"JSON Spec": "Especificacions del JSON",
|
||||||
"July": "Juliol",
|
"July": "Juliol",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "Memòria afegida correctament",
|
"Memory added successfully": "Memòria afegida correctament",
|
||||||
"Memory cleared successfully": "Memòria eliminada correctament",
|
"Memory cleared successfully": "Memòria eliminada correctament",
|
||||||
"Memory deleted successfully": "Memòria eliminada correctament",
|
"Memory deleted successfully": "Memòria eliminada correctament",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memòria actualitzada correctament",
|
"Memory updated successfully": "Memòria actualitzada correctament",
|
||||||
"Merge Accounts by Email": "Combina els comptes per correu electrònic",
|
"Merge Accounts by Email": "Combina els comptes per correu electrònic",
|
||||||
"Merge Responses": "Fusionar les respostes",
|
"Merge Responses": "Fusionar les respostes",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "Més opcions",
|
"More Options": "Més opcions",
|
||||||
"Move": "Moure",
|
"Move": "Moure",
|
||||||
"Moved {{name}}": "S'ha mogut {{name}}",
|
"Moved {{name}}": "S'ha mogut {{name}}",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Silencia",
|
"Mute": "Silencia",
|
||||||
"Muted": "Silenciat",
|
"Muted": "Silenciat",
|
||||||
"My Terminal": "El meu terminal",
|
"My Terminal": "El meu terminal",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "Respondre al fil",
|
"Reply in Thread": "Respondre al fil",
|
||||||
"Reply to thread...": "Respondre al fil...",
|
"Reply to thread...": "Respondre al fil...",
|
||||||
"Replying to {{NAME}}": "Responent a {{NAME}}",
|
"Replying to {{NAME}}": "Responent a {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "Demana als usuaris que confirmin abans d'utilitzar la cerca web.",
|
"Require users to confirm before using Web Search.": "Demana als usuaris que confirmin abans d'utilitzar la cerca web.",
|
||||||
"required": "necessari",
|
"required": "necessari",
|
||||||
"Reranking Batch Size": "Mida del lot de reclassificació",
|
"Reranking Batch Size": "Mida del lot de reclassificació",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Pujar una Pipeline",
|
"Upload Pipeline": "Pujar una Pipeline",
|
||||||
"Upload profile image": "Pujar imatge de perfil",
|
"Upload profile image": "Pujar imatge de perfil",
|
||||||
"Upload Progress": "Progrés de càrrega",
|
"Upload Progress": "Progrés de càrrega",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progrés de la pujada: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Arxius o imatges pujats",
|
"Uploaded files or images": "Arxius o imatges pujats",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "Pujant {{current}}/{{total}}: {{arxiu}}",
|
"Uploading {{current}}/{{total}}: {{file}}": "Pujant {{current}}/{{total}}: {{arxiu}}",
|
||||||
"Uploading...": "Pujant...",
|
"Uploading...": "Pujant...",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "Apil sa among Discord alang sa tabang.",
|
"join our Discord for help.": "Apil sa among Discord alang sa tabang.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "",
|
"JSON Preview": "",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "",
|
"July": "",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Pag-uswag sa Pag-upload",
|
"Upload Progress": "Pag-uswag sa Pag-upload",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1295,6 +1295,7 @@
|
|||||||
"Jina API Key": "API klíč pro Jina",
|
"Jina API Key": "API klíč pro Jina",
|
||||||
"join our Discord for help.": "připojte se na náš Discord pro pomoc.",
|
"join our Discord for help.": "připojte se na náš Discord pro pomoc.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Náhled JSON",
|
"JSON Preview": "Náhled JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Červenec",
|
"July": "Červenec",
|
||||||
@@ -1427,6 +1428,7 @@
|
|||||||
"Memory added successfully": "Vzpomínka byla úspěšně přidána.",
|
"Memory added successfully": "Vzpomínka byla úspěšně přidána.",
|
||||||
"Memory cleared successfully": "Paměť byla úspěšně vymazána.",
|
"Memory cleared successfully": "Paměť byla úspěšně vymazána.",
|
||||||
"Memory deleted successfully": "Vzpomínka byla úspěšně smazána",
|
"Memory deleted successfully": "Vzpomínka byla úspěšně smazána",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Vzpomínka byla úspěšně aktualizována",
|
"Memory updated successfully": "Vzpomínka byla úspěšně aktualizována",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Sloučit odpovědi",
|
"Merge Responses": "Sloučit odpovědi",
|
||||||
@@ -1506,6 +1508,7 @@
|
|||||||
"More Options": "Další možnosti",
|
"More Options": "Další možnosti",
|
||||||
"Move": "Přesunout",
|
"Move": "Přesunout",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1891,6 +1894,7 @@
|
|||||||
"Reply in Thread": "Odpovědět ve vlákně",
|
"Reply in Thread": "Odpovědět ve vlákně",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2400,7 +2404,6 @@
|
|||||||
"Upload Pipeline": "Nahrát pipeline",
|
"Upload Pipeline": "Nahrát pipeline",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Průběh nahrávání",
|
"Upload Progress": "Průběh nahrávání",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Průběh nahrávání: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API-nøgle",
|
"Jina API Key": "Jina API-nøgle",
|
||||||
"join our Discord for help.": "tilslut dig vores Discord for at få hjælp.",
|
"join our Discord for help.": "tilslut dig vores Discord for at få hjælp.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON-forhåndsvisning",
|
"JSON Preview": "JSON-forhåndsvisning",
|
||||||
"JSON Spec": "JSON spec",
|
"JSON Spec": "JSON spec",
|
||||||
"July": "Juli",
|
"July": "Juli",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Hukommelse tilføjet.",
|
"Memory added successfully": "Hukommelse tilføjet.",
|
||||||
"Memory cleared successfully": "Hukommelse ryddet.",
|
"Memory cleared successfully": "Hukommelse ryddet.",
|
||||||
"Memory deleted successfully": "Hukommelse slettet.",
|
"Memory deleted successfully": "Hukommelse slettet.",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Hukommelse opdateret.",
|
"Memory updated successfully": "Hukommelse opdateret.",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Flet svar",
|
"Merge Responses": "Flet svar",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "Flere muligheder",
|
"More Options": "Flere muligheder",
|
||||||
"Move": "Flyt",
|
"Move": "Flyt",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Svar i tråd",
|
"Reply in Thread": "Svar i tråd",
|
||||||
"Reply to thread...": "Svar på tråd...",
|
"Reply to thread...": "Svar på tråd...",
|
||||||
"Replying to {{NAME}}": "Svarer {{NAME}}",
|
"Replying to {{NAME}}": "Svarer {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "påkrævet",
|
"required": "påkrævet",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Upload pipeline",
|
"Upload Pipeline": "Upload pipeline",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Uploadfremdrift",
|
"Upload Progress": "Uploadfremdrift",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Uploadfremdrift: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina-API-Schlüssel",
|
"Jina API Key": "Jina-API-Schlüssel",
|
||||||
"join our Discord for help.": "Treten Sie unserem Discord bei, um Hilfe zu erhalten.",
|
"join our Discord for help.": "Treten Sie unserem Discord bei, um Hilfe zu erhalten.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON-Vorschau",
|
"JSON Preview": "JSON-Vorschau",
|
||||||
"JSON Spec": "JSON-Spezifikation",
|
"JSON Spec": "JSON-Spezifikation",
|
||||||
"July": "Juli",
|
"July": "Juli",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Erinnerung erfolgreich hinzugefügt",
|
"Memory added successfully": "Erinnerung erfolgreich hinzugefügt",
|
||||||
"Memory cleared successfully": "Erinnerungen erfolgreich gelöscht",
|
"Memory cleared successfully": "Erinnerungen erfolgreich gelöscht",
|
||||||
"Memory deleted successfully": "Erinnerung erfolgreich gelöscht",
|
"Memory deleted successfully": "Erinnerung erfolgreich gelöscht",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Erinnerung erfolgreich aktualisiert",
|
"Memory updated successfully": "Erinnerung erfolgreich aktualisiert",
|
||||||
"Merge Accounts by Email": "Konten anhand der E-Mail-Adresse zusammenführen",
|
"Merge Accounts by Email": "Konten anhand der E-Mail-Adresse zusammenführen",
|
||||||
"Merge Responses": "Antworten zusammenführen",
|
"Merge Responses": "Antworten zusammenführen",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "Mehr Optionen",
|
"More Options": "Mehr Optionen",
|
||||||
"Move": "Verschieben",
|
"Move": "Verschieben",
|
||||||
"Moved {{name}}": "{{name}} verschoben",
|
"Moved {{name}}": "{{name}} verschoben",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Stummschalten",
|
"Mute": "Stummschalten",
|
||||||
"Muted": "Stumm",
|
"Muted": "Stumm",
|
||||||
"My Terminal": "Meine Terminals",
|
"My Terminal": "Meine Terminals",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Im Thread antworten",
|
"Reply in Thread": "Im Thread antworten",
|
||||||
"Reply to thread...": "Im Thread antworten...",
|
"Reply to thread...": "Im Thread antworten...",
|
||||||
"Replying to {{NAME}}": "Antwort an {{NAME}}",
|
"Replying to {{NAME}}": "Antwort an {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "Benutzer müssen vor der Nutzung der Websuche bestätigen.",
|
"Require users to confirm before using Web Search.": "Benutzer müssen vor der Nutzung der Websuche bestätigen.",
|
||||||
"required": "erforderlich",
|
"required": "erforderlich",
|
||||||
"Reranking Batch Size": "Reranking-Batch-Größe",
|
"Reranking Batch Size": "Reranking-Batch-Größe",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Pipeline hochladen",
|
"Upload Pipeline": "Pipeline hochladen",
|
||||||
"Upload profile image": "Profilbild hochladen",
|
"Upload profile image": "Profilbild hochladen",
|
||||||
"Upload Progress": "Upload-Fortschritt",
|
"Upload Progress": "Upload-Fortschritt",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Fortschritt: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Hochgeladene Dateien oder Bilder",
|
"Uploaded files or images": "Hochgeladene Dateien oder Bilder",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "Wird hochgeladen {{current}}/{{total}}: {{file}}",
|
"Uploading {{current}}/{{total}}: {{file}}": "Wird hochgeladen {{current}}/{{total}}: {{file}}",
|
||||||
"Uploading...": "Lade hoch...",
|
"Uploading...": "Lade hoch...",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "join our Discord for help.",
|
"join our Discord for help.": "join our Discord for help.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "",
|
"JSON Preview": "",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "",
|
"July": "",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Upload Progress much progress",
|
"Upload Progress": "Upload Progress much progress",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Κλειδί API Jina",
|
"Jina API Key": "Κλειδί API Jina",
|
||||||
"join our Discord for help.": "συμμετέχετε στο Discord μας για βοήθεια.",
|
"join our Discord for help.": "συμμετέχετε στο Discord μας για βοήθεια.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Προεπισκόπηση JSON",
|
"JSON Preview": "Προεπισκόπηση JSON",
|
||||||
"JSON Spec": "Προδιαγραφή JSON",
|
"JSON Spec": "Προδιαγραφή JSON",
|
||||||
"July": "Ιούλιος",
|
"July": "Ιούλιος",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Η μνήμη προστέθηκε με επιτυχία",
|
"Memory added successfully": "Η μνήμη προστέθηκε με επιτυχία",
|
||||||
"Memory cleared successfully": "Η μνήμη καθαρίστηκε με επιτυχία",
|
"Memory cleared successfully": "Η μνήμη καθαρίστηκε με επιτυχία",
|
||||||
"Memory deleted successfully": "Η μνήμη διαγράφηκε με επιτυχία",
|
"Memory deleted successfully": "Η μνήμη διαγράφηκε με επιτυχία",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Η μνήμη ενημερώθηκε με επιτυχία",
|
"Memory updated successfully": "Η μνήμη ενημερώθηκε με επιτυχία",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Συγχώνευση Απαντήσεων",
|
"Merge Responses": "Συγχώνευση Απαντήσεων",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "Μετακίνηση",
|
"Move": "Μετακίνηση",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Απάντηση στο Νήμα Συζήτησης",
|
"Reply in Thread": "Απάντηση στο Νήμα Συζήτησης",
|
||||||
"Reply to thread...": "Απάντηση στο νήμα συζήτησης...",
|
"Reply to thread...": "Απάντηση στο νήμα συζήτησης...",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "απαιτείται",
|
"required": "απαιτείται",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Ανέβασμα Pipeline",
|
"Upload Pipeline": "Ανέβασμα Pipeline",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Πρόοδος Ανεβάσματος",
|
"Upload Progress": "Πρόοδος Ανεβάσματος",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "",
|
"join our Discord for help.": "",
|
||||||
"JSON": "",
|
"JSON": "",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "",
|
"JSON Preview": "",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "",
|
"July": "",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "",
|
"Upload Progress": "",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "",
|
"join our Discord for help.": "",
|
||||||
"JSON": "",
|
"JSON": "",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "",
|
"JSON Preview": "",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "",
|
"July": "",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "",
|
"Upload Progress": "",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "Clave API de Jina",
|
"Jina API Key": "Clave API de Jina",
|
||||||
"join our Discord for help.": "unete a nuestro Discord para ayuda.",
|
"join our Discord for help.": "unete a nuestro Discord para ayuda.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Prevista del JSON",
|
"JSON Preview": "Prevista del JSON",
|
||||||
"JSON Spec": "Especif. JSON",
|
"JSON Spec": "Especif. JSON",
|
||||||
"July": "Julio",
|
"July": "Julio",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "Memoria añadida correctamente",
|
"Memory added successfully": "Memoria añadida correctamente",
|
||||||
"Memory cleared successfully": "Memoria liberada correctamente",
|
"Memory cleared successfully": "Memoria liberada correctamente",
|
||||||
"Memory deleted successfully": "Memoria borrada correctamente",
|
"Memory deleted successfully": "Memoria borrada correctamente",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memoria actualizada correctamente",
|
"Memory updated successfully": "Memoria actualizada correctamente",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Fusionar Respuestas",
|
"Merge Responses": "Fusionar Respuestas",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "Más Opciones",
|
"More Options": "Más Opciones",
|
||||||
"Move": "Mover",
|
"Move": "Mover",
|
||||||
"Moved {{name}}": "Movido {{name}}:",
|
"Moved {{name}}": "Movido {{name}}:",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Silenciar",
|
"Mute": "Silenciar",
|
||||||
"Muted": "Silenciado",
|
"Muted": "Silenciado",
|
||||||
"My Terminal": "Mi Terminal",
|
"My Terminal": "Mi Terminal",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "Responder en Hilo",
|
"Reply in Thread": "Responder en Hilo",
|
||||||
"Reply to thread...": "Responder al hilo...",
|
"Reply to thread...": "Responder al hilo...",
|
||||||
"Replying to {{NAME}}": "Responder a {{NAME}}",
|
"Replying to {{NAME}}": "Responder a {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "requerido",
|
"required": "requerido",
|
||||||
"Reranking Batch Size": "Tamaño del lote de Reclasificación",
|
"Reranking Batch Size": "Tamaño del lote de Reclasificación",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Subir Tubería",
|
"Upload Pipeline": "Subir Tubería",
|
||||||
"Upload profile image": "Subir imagen del perfil",
|
"Upload profile image": "Subir imagen del perfil",
|
||||||
"Upload Progress": "Progreso de la Subida",
|
"Upload Progress": "Progreso de la Subida",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progreso de la Subida: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Archivos o imágenes subidos",
|
"Uploaded files or images": "Archivos o imágenes subidos",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "Subiendo {{current}}/{{total}}: {{file}}",
|
"Uploading {{current}}/{{total}}: {{file}}": "Subiendo {{current}}/{{total}}: {{file}}",
|
||||||
"Uploading...": "Subiendo...",
|
"Uploading...": "Subiendo...",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API võti",
|
"Jina API Key": "Jina API võti",
|
||||||
"join our Discord for help.": "liituge abi saamiseks meie Discordiga.",
|
"join our Discord for help.": "liituge abi saamiseks meie Discordiga.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON eelvaade",
|
"JSON Preview": "JSON eelvaade",
|
||||||
"JSON Spec": "JSON spetsifikatsioon",
|
"JSON Spec": "JSON spetsifikatsioon",
|
||||||
"July": "Juuli",
|
"July": "Juuli",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Mälu edukalt lisatud",
|
"Memory added successfully": "Mälu edukalt lisatud",
|
||||||
"Memory cleared successfully": "Mälu edukalt tühjendatud",
|
"Memory cleared successfully": "Mälu edukalt tühjendatud",
|
||||||
"Memory deleted successfully": "Mälu edukalt kustutatud",
|
"Memory deleted successfully": "Mälu edukalt kustutatud",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Mälu edukalt uuendatud",
|
"Memory updated successfully": "Mälu edukalt uuendatud",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Ühenda vastused",
|
"Merge Responses": "Ühenda vastused",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "Rohkem valikuid",
|
"More Options": "Rohkem valikuid",
|
||||||
"Move": "Teisalda",
|
"Move": "Teisalda",
|
||||||
"Moved {{name}}": "Teisaldatud {{name}}",
|
"Moved {{name}}": "Teisaldatud {{name}}",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "Minu terminal",
|
"My Terminal": "Minu terminal",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Vasta lõimes",
|
"Reply in Thread": "Vasta lõimes",
|
||||||
"Reply to thread...": "Vasta lõimele...",
|
"Reply to thread...": "Vasta lõimele...",
|
||||||
"Replying to {{NAME}}": "Vastamine kasutajale {{NAME}}",
|
"Replying to {{NAME}}": "Vastamine kasutajale {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "nõutav",
|
"required": "nõutav",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Laadi torustik üles",
|
"Upload Pipeline": "Laadi torustik üles",
|
||||||
"Upload profile image": "Laadi üles profiilipilt",
|
"Upload profile image": "Laadi üles profiilipilt",
|
||||||
"Upload Progress": "Üleslaadimise progress",
|
"Upload Progress": "Üleslaadimise progress",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Üleslaadimise edenemine: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Üleslaaditud failid või pildid",
|
"Uploaded files or images": "Üleslaaditud failid või pildid",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "Üleslaadimine...",
|
"Uploading...": "Üleslaadimine...",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API Gakoa",
|
"Jina API Key": "Jina API Gakoa",
|
||||||
"join our Discord for help.": "batu gure Discord-era laguntzarako.",
|
"join our Discord for help.": "batu gure Discord-era laguntzarako.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON Aurrebista",
|
"JSON Preview": "JSON Aurrebista",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Uztaila",
|
"July": "Uztaila",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Memoria ongi gehitu da",
|
"Memory added successfully": "Memoria ongi gehitu da",
|
||||||
"Memory cleared successfully": "Memoria ongi garbitu da",
|
"Memory cleared successfully": "Memoria ongi garbitu da",
|
||||||
"Memory deleted successfully": "Memoria ongi ezabatu da",
|
"Memory deleted successfully": "Memoria ongi ezabatu da",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memoria ongi eguneratu da",
|
"Memory updated successfully": "Memoria ongi eguneratu da",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Batu erantzunak",
|
"Merge Responses": "Batu erantzunak",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Kargatu Pipeline-a",
|
"Upload Pipeline": "Kargatu Pipeline-a",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Kargaren aurrerapena",
|
"Upload Progress": "Kargaren aurrerapena",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "کلید API جینا",
|
"Jina API Key": "کلید API جینا",
|
||||||
"join our Discord for help.": "برای کمک به دیسکورد ما بپیوندید.",
|
"join our Discord for help.": "برای کمک به دیسکورد ما بپیوندید.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "پیش نمایش JSON",
|
"JSON Preview": "پیش نمایش JSON",
|
||||||
"JSON Spec": "مشخصات JSON",
|
"JSON Spec": "مشخصات JSON",
|
||||||
"July": "ژوئن",
|
"July": "ژوئن",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "حافظه با موفقیت اضافه شد",
|
"Memory added successfully": "حافظه با موفقیت اضافه شد",
|
||||||
"Memory cleared successfully": "حافظه با موفقیت پاک شد",
|
"Memory cleared successfully": "حافظه با موفقیت پاک شد",
|
||||||
"Memory deleted successfully": "حافظه با موفقیت حذف شد",
|
"Memory deleted successfully": "حافظه با موفقیت حذف شد",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "حافظه با موفقیت به\u200cروز شد",
|
"Memory updated successfully": "حافظه با موفقیت به\u200cروز شد",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "ادغام پاسخ\u200cها",
|
"Merge Responses": "ادغام پاسخ\u200cها",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "گزینه\u200cهای بیشتر",
|
"More Options": "گزینه\u200cهای بیشتر",
|
||||||
"Move": "انتقال",
|
"Move": "انتقال",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "پاسخ در رشته",
|
"Reply in Thread": "پاسخ در رشته",
|
||||||
"Reply to thread...": "پاسخ به رشته...",
|
"Reply to thread...": "پاسخ به رشته...",
|
||||||
"Replying to {{NAME}}": "در حال پاسخ به {{NAME}}",
|
"Replying to {{NAME}}": "در حال پاسخ به {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "مورد نیاز",
|
"required": "مورد نیاز",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "خط تولید آپلود",
|
"Upload Pipeline": "خط تولید آپلود",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "پیشرفت آپلود",
|
"Upload Progress": "پیشرفت آپلود",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "پیشرفت آپلود: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}٪)",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API -avain",
|
"Jina API Key": "Jina API -avain",
|
||||||
"join our Discord for help.": "liity Discordiimme saadaksesi apua.",
|
"join our Discord for help.": "liity Discordiimme saadaksesi apua.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON-esikatselu",
|
"JSON Preview": "JSON-esikatselu",
|
||||||
"JSON Spec": "JSON Spec",
|
"JSON Spec": "JSON Spec",
|
||||||
"July": "heinäkuu",
|
"July": "heinäkuu",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Muisti lisätty onnistuneesti",
|
"Memory added successfully": "Muisti lisätty onnistuneesti",
|
||||||
"Memory cleared successfully": "Muisti tyhjennetty onnistuneesti",
|
"Memory cleared successfully": "Muisti tyhjennetty onnistuneesti",
|
||||||
"Memory deleted successfully": "Muisti poistettu onnistuneesti",
|
"Memory deleted successfully": "Muisti poistettu onnistuneesti",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Muisti päivitetty onnistuneesti",
|
"Memory updated successfully": "Muisti päivitetty onnistuneesti",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Yhdistä vastaukset",
|
"Merge Responses": "Yhdistä vastaukset",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "Lisää vaihtoehtoja",
|
"More Options": "Lisää vaihtoehtoja",
|
||||||
"Move": "Siirrä",
|
"Move": "Siirrä",
|
||||||
"Moved {{name}}": "Siirretty {{name}}",
|
"Moved {{name}}": "Siirretty {{name}}",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Mykistä",
|
"Mute": "Mykistä",
|
||||||
"Muted": "Mykistetty",
|
"Muted": "Mykistetty",
|
||||||
"My Terminal": "Minun pääte",
|
"My Terminal": "Minun pääte",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Vastaa ketjussa",
|
"Reply in Thread": "Vastaa ketjussa",
|
||||||
"Reply to thread...": "Vastaa ketjussa...",
|
"Reply to thread...": "Vastaa ketjussa...",
|
||||||
"Replying to {{NAME}}": "Vastaa {{NAME}}",
|
"Replying to {{NAME}}": "Vastaa {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "vaaditaan",
|
"required": "vaaditaan",
|
||||||
"Reranking Batch Size": "Uudelleenpisteytyksen eräkoko",
|
"Reranking Batch Size": "Uudelleenpisteytyksen eräkoko",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Lataa putki",
|
"Upload Pipeline": "Lataa putki",
|
||||||
"Upload profile image": "Lataa profiilikuva",
|
"Upload profile image": "Lataa profiilikuva",
|
||||||
"Upload Progress": "Latauksen edistyminen",
|
"Upload Progress": "Latauksen edistyminen",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Latauksen edistyminen: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Ladatut tiedostot tai kuvat",
|
"Uploaded files or images": "Ladatut tiedostot tai kuvat",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "Ladataan {{current}}/{{total}}: {{file}}",
|
"Uploading {{current}}/{{total}}: {{file}}": "Ladataan {{current}}/{{total}}: {{file}}",
|
||||||
"Uploading...": "Ladataan...",
|
"Uploading...": "Ladataan...",
|
||||||
|
|||||||
@@ -1282,6 +1282,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "",
|
"join our Discord for help.": "",
|
||||||
"JSON": "",
|
"JSON": "",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "",
|
"JSON Preview": "",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Hulyo",
|
"July": "Hulyo",
|
||||||
@@ -1414,6 +1415,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1493,6 +1495,7 @@
|
|||||||
"More Options": "Higit pang Mga Opsyon",
|
"More Options": "Higit pang Mga Opsyon",
|
||||||
"Move": "Ilipat",
|
"Move": "Ilipat",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1874,6 +1877,7 @@
|
|||||||
"Reply in Thread": "Sumagot sa Thread",
|
"Reply in Thread": "Sumagot sa Thread",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2381,7 +2385,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "",
|
"Upload Progress": "",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "Clé API Jina",
|
"Jina API Key": "Clé API Jina",
|
||||||
"join our Discord for help.": "Rejoignez notre Discord pour obtenir de l'aide.",
|
"join our Discord for help.": "Rejoignez notre Discord pour obtenir de l'aide.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Aperçu JSON",
|
"JSON Preview": "Aperçu JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Juillet",
|
"July": "Juillet",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "Souvenir ajoutée avec succès",
|
"Memory added successfully": "Souvenir ajoutée avec succès",
|
||||||
"Memory cleared successfully": "La mémoire a été effacée avec succès",
|
"Memory cleared successfully": "La mémoire a été effacée avec succès",
|
||||||
"Memory deleted successfully": "Le souvenir a été supprimé avec succès",
|
"Memory deleted successfully": "Le souvenir a été supprimé avec succès",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Le souvenir a été mis à jour avec succès",
|
"Memory updated successfully": "Le souvenir a été mis à jour avec succès",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Fusionner les réponses",
|
"Merge Responses": "Fusionner les réponses",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "Répondre dans le fil de discussion",
|
"Reply in Thread": "Répondre dans le fil de discussion",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Pipeline de téléchargement",
|
"Upload Pipeline": "Pipeline de téléchargement",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Progression de l'envoi",
|
"Upload Progress": "Progression de l'envoi",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "Clé API Jina",
|
"Jina API Key": "Clé API Jina",
|
||||||
"join our Discord for help.": "Rejoignez notre Discord pour obtenir de l'aide.",
|
"join our Discord for help.": "Rejoignez notre Discord pour obtenir de l'aide.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Aperçu JSON",
|
"JSON Preview": "Aperçu JSON",
|
||||||
"JSON Spec": "Spécification JSON",
|
"JSON Spec": "Spécification JSON",
|
||||||
"July": "Juillet",
|
"July": "Juillet",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "Souvenir ajouté avec succès",
|
"Memory added successfully": "Souvenir ajouté avec succès",
|
||||||
"Memory cleared successfully": "Souvenir effacé avec succès",
|
"Memory cleared successfully": "Souvenir effacé avec succès",
|
||||||
"Memory deleted successfully": "Souvenir supprimé avec succès",
|
"Memory deleted successfully": "Souvenir supprimé avec succès",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Souvenir mis à jour avec succès",
|
"Memory updated successfully": "Souvenir mis à jour avec succès",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Fusionner les réponses",
|
"Merge Responses": "Fusionner les réponses",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "Plus d'options",
|
"More Options": "Plus d'options",
|
||||||
"Move": "Déplacer",
|
"Move": "Déplacer",
|
||||||
"Moved {{name}}": "{{name}} déplacé",
|
"Moved {{name}}": "{{name}} déplacé",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Désactiver le son",
|
"Mute": "Désactiver le son",
|
||||||
"Muted": "Son désactivé",
|
"Muted": "Son désactivé",
|
||||||
"My Terminal": "Mon terminal",
|
"My Terminal": "Mon terminal",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "Répondre dans le fil de discussion",
|
"Reply in Thread": "Répondre dans le fil de discussion",
|
||||||
"Reply to thread...": "Répondre au fil de discussion...",
|
"Reply to thread...": "Répondre au fil de discussion...",
|
||||||
"Replying to {{NAME}}": "En réponse à {{NAME}}",
|
"Replying to {{NAME}}": "En réponse à {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "requis",
|
"required": "requis",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Pipeline de téléchargement",
|
"Upload Pipeline": "Pipeline de téléchargement",
|
||||||
"Upload profile image": "Téléverser une image de profil",
|
"Upload profile image": "Téléverser une image de profil",
|
||||||
"Upload Progress": "Progression de l'envoi",
|
"Upload Progress": "Progression de l'envoi",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progression du téléchargement\u00a0: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Les fichiers ou images téléversés",
|
"Uploaded files or images": "Les fichiers ou images téléversés",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "Téléversement en cours...",
|
"Uploading...": "Téléversement en cours...",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "chave API de Jina",
|
"Jina API Key": "chave API de Jina",
|
||||||
"join our Discord for help.": "Únase o noso Discord para obter axuda.",
|
"join our Discord for help.": "Únase o noso Discord para obter axuda.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Vista previa de JSON",
|
"JSON Preview": "Vista previa de JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Xullo",
|
"July": "Xullo",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Memoria añadida correctamente",
|
"Memory added successfully": "Memoria añadida correctamente",
|
||||||
"Memory cleared successfully": "Memoria liberada correctamente",
|
"Memory cleared successfully": "Memoria liberada correctamente",
|
||||||
"Memory deleted successfully": "Memoria borrada correctamente",
|
"Memory deleted successfully": "Memoria borrada correctamente",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memoria actualizada correctamente",
|
"Memory updated successfully": "Memoria actualizada correctamente",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Fusionar Respuestas",
|
"Merge Responses": "Fusionar Respuestas",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Responder no hilo",
|
"Reply in Thread": "Responder no hilo",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Subir Pipeline",
|
"Upload Pipeline": "Subir Pipeline",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Progreso de carga",
|
"Upload Progress": "Progreso de carga",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "הצטרף ל-Discord שלנו לעזרה.",
|
"join our Discord for help.": "הצטרף ל-Discord שלנו לעזרה.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "תצוגה מקדימה של JSON",
|
"JSON Preview": "תצוגה מקדימה של JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "יולי",
|
"July": "יולי",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "תקדמות העלאה",
|
"Upload Progress": "תקדמות העלאה",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "मदद के लिए हमारे डिस्कोर्ड में शामिल हों।",
|
"join our Discord for help.": "मदद के लिए हमारे डिस्कोर्ड में शामिल हों।",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON पूर्वावलोकन",
|
"JSON Preview": "JSON पूर्वावलोकन",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "जुलाई",
|
"July": "जुलाई",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "प्रगति अपलोड करें",
|
"Upload Progress": "प्रगति अपलोड करें",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "pridružite se našem Discordu za pomoć.",
|
"join our Discord for help.": "pridružite se našem Discordu za pomoć.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON pretpregled",
|
"JSON Preview": "JSON pretpregled",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Srpanj",
|
"July": "Srpanj",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Prijenos kanala",
|
"Upload Pipeline": "Prijenos kanala",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Napredak učitavanja",
|
"Upload Progress": "Napredak učitavanja",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API kulcs",
|
"Jina API Key": "Jina API kulcs",
|
||||||
"join our Discord for help.": "Csatlakozz a Discord szerverünkhöz segítségért.",
|
"join our Discord for help.": "Csatlakozz a Discord szerverünkhöz segítségért.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON előnézet",
|
"JSON Preview": "JSON előnézet",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Július",
|
"July": "Július",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Memória sikeresen hozzáadva",
|
"Memory added successfully": "Memória sikeresen hozzáadva",
|
||||||
"Memory cleared successfully": "Memória sikeresen törölve",
|
"Memory cleared successfully": "Memória sikeresen törölve",
|
||||||
"Memory deleted successfully": "Memória sikeresen törölve",
|
"Memory deleted successfully": "Memória sikeresen törölve",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memória sikeresen frissítve",
|
"Memory updated successfully": "Memória sikeresen frissítve",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Válaszok egyesítése",
|
"Merge Responses": "Válaszok egyesítése",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Válasz szálban",
|
"Reply in Thread": "Válasz szálban",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Folyamat feltöltése",
|
"Upload Pipeline": "Folyamat feltöltése",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Feltöltési folyamat",
|
"Upload Progress": "Feltöltési folyamat",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1274,6 +1274,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "bergabunglah dengan Discord kami untuk mendapatkan bantuan.",
|
"join our Discord for help.": "bergabunglah dengan Discord kami untuk mendapatkan bantuan.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Pratinjau JSON",
|
"JSON Preview": "Pratinjau JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Juli",
|
"July": "Juli",
|
||||||
@@ -1406,6 +1407,7 @@
|
|||||||
"Memory added successfully": "Memori berhasil ditambahkan",
|
"Memory added successfully": "Memori berhasil ditambahkan",
|
||||||
"Memory cleared successfully": "Memori berhasil dihapus",
|
"Memory cleared successfully": "Memori berhasil dihapus",
|
||||||
"Memory deleted successfully": "Memori berhasil dihapus",
|
"Memory deleted successfully": "Memori berhasil dihapus",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memori berhasil diperbarui",
|
"Memory updated successfully": "Memori berhasil diperbarui",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1485,6 +1487,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1864,6 +1867,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2367,7 +2371,6 @@
|
|||||||
"Upload Pipeline": "Unggah Pipeline",
|
"Upload Pipeline": "Unggah Pipeline",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Kemajuan Unggah",
|
"Upload Progress": "Kemajuan Unggah",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API Eochair",
|
"Jina API Key": "Jina API Eochair",
|
||||||
"join our Discord for help.": "bí inár Discord chun cabhair a fháil.",
|
"join our Discord for help.": "bí inár Discord chun cabhair a fháil.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Réamhamharc JSON",
|
"JSON Preview": "Réamhamharc JSON",
|
||||||
"JSON Spec": "Sonraíocht JSON",
|
"JSON Spec": "Sonraíocht JSON",
|
||||||
"July": "Iúil",
|
"July": "Iúil",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Cuireadh cuimhne leis go",
|
"Memory added successfully": "Cuireadh cuimhne leis go",
|
||||||
"Memory cleared successfully": "Cuimhne glanta go rathúil",
|
"Memory cleared successfully": "Cuimhne glanta go rathúil",
|
||||||
"Memory deleted successfully": "Cuimhne scriosta go rathúil",
|
"Memory deleted successfully": "Cuimhne scriosta go rathúil",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Cuimhne nuashonraithe",
|
"Memory updated successfully": "Cuimhne nuashonraithe",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Cumaisc Freagraí",
|
"Merge Responses": "Cumaisc Freagraí",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "Tuilleadh Roghanna",
|
"More Options": "Tuilleadh Roghanna",
|
||||||
"Move": "Bog",
|
"Move": "Bog",
|
||||||
"Moved {{name}}": "Bogadh {{name}}",
|
"Moved {{name}}": "Bogadh {{name}}",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Balbhaigh",
|
"Mute": "Balbhaigh",
|
||||||
"Muted": "Balbhaithe",
|
"Muted": "Balbhaithe",
|
||||||
"My Terminal": "Mo Teirminéal",
|
"My Terminal": "Mo Teirminéal",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Freagra i Snáithe",
|
"Reply in Thread": "Freagra i Snáithe",
|
||||||
"Reply to thread...": "Freagra ar an snáithe...",
|
"Reply to thread...": "Freagra ar an snáithe...",
|
||||||
"Replying to {{NAME}}": "Ag freagairt do {{NAME}}",
|
"Replying to {{NAME}}": "Ag freagairt do {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "riachtanach",
|
"required": "riachtanach",
|
||||||
"Reranking Batch Size": "Méid an Bhaisc Athrangaithe",
|
"Reranking Batch Size": "Méid an Bhaisc Athrangaithe",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Uaslódáil píblíne",
|
"Upload Pipeline": "Uaslódáil píblíne",
|
||||||
"Upload profile image": "Uaslódáil íomhá próifíle",
|
"Upload profile image": "Uaslódáil íomhá próifíle",
|
||||||
"Upload Progress": "Dul Chun Cinn an Uaslódála",
|
"Upload Progress": "Dul Chun Cinn an Uaslódála",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Dul Chun Cinn Uaslódála: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Comhaid nó íomhánna uaslódáilte",
|
"Uploaded files or images": "Comhaid nó íomhánna uaslódáilte",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "Ag uaslódáil {{current}}/{{total}}: {{file}}",
|
"Uploading {{current}}/{{total}}: {{file}}": "Ag uaslódáil {{current}}/{{total}}: {{file}}",
|
||||||
"Uploading...": "Ag uaslódáil...",
|
"Uploading...": "Ag uaslódáil...",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "Chiave API Jina",
|
"Jina API Key": "Chiave API Jina",
|
||||||
"join our Discord for help.": "unisciti al nostro Discord per ricevere aiuto.",
|
"join our Discord for help.": "unisciti al nostro Discord per ricevere aiuto.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Anteprima JSON",
|
"JSON Preview": "Anteprima JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Luglio",
|
"July": "Luglio",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "Memoria aggiunta con successo",
|
"Memory added successfully": "Memoria aggiunta con successo",
|
||||||
"Memory cleared successfully": "Memoria cancellata con successo",
|
"Memory cleared successfully": "Memoria cancellata con successo",
|
||||||
"Memory deleted successfully": "Memoria eliminata con successo",
|
"Memory deleted successfully": "Memoria eliminata con successo",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memoria aggiornata con successo",
|
"Memory updated successfully": "Memoria aggiornata con successo",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Unisci Risposte",
|
"Merge Responses": "Unisci Risposte",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "Rispondi nel thread",
|
"Reply in Thread": "Rispondi nel thread",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Carica Pipeline",
|
"Upload Pipeline": "Carica Pipeline",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Avanzamento Caricamento",
|
"Upload Progress": "Avanzamento Caricamento",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1274,6 +1274,7 @@
|
|||||||
"Jina API Key": "Jina APIキー",
|
"Jina API Key": "Jina APIキー",
|
||||||
"join our Discord for help.": "ヘルプについては、Discord に参加してください。",
|
"join our Discord for help.": "ヘルプについては、Discord に参加してください。",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON プレビュー",
|
"JSON Preview": "JSON プレビュー",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "7月",
|
"July": "7月",
|
||||||
@@ -1406,6 +1407,7 @@
|
|||||||
"Memory added successfully": "メモリに追加されました。",
|
"Memory added successfully": "メモリに追加されました。",
|
||||||
"Memory cleared successfully": "メモリをクリアしました。",
|
"Memory cleared successfully": "メモリをクリアしました。",
|
||||||
"Memory deleted successfully": "メモリを削除しました。",
|
"Memory deleted successfully": "メモリを削除しました。",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "メモリアップデート成功",
|
"Memory updated successfully": "メモリアップデート成功",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "応答を統合",
|
"Merge Responses": "応答を統合",
|
||||||
@@ -1485,6 +1487,7 @@
|
|||||||
"More Options": "詳細オプション",
|
"More Options": "詳細オプション",
|
||||||
"Move": "移動",
|
"Move": "移動",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1864,6 +1867,7 @@
|
|||||||
"Reply in Thread": "スレッドで返信",
|
"Reply in Thread": "スレッドで返信",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2367,7 +2371,6 @@
|
|||||||
"Upload Pipeline": "パイプラインをアップロード",
|
"Upload Pipeline": "パイプラインをアップロード",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "アップロードの進行状況",
|
"Upload Progress": "アップロードの進行状況",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "アップロード状況: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API-ის გასაღები",
|
"Jina API Key": "Jina API-ის გასაღები",
|
||||||
"join our Discord for help.": "დახმარებისთვის შემოდით ჩვენს Discord-ზე.",
|
"join our Discord for help.": "დახმარებისთვის შემოდით ჩვენს Discord-ზე.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON გადახედვა",
|
"JSON Preview": "JSON გადახედვა",
|
||||||
"JSON Spec": "JSON-ის სპეციფიკაცია",
|
"JSON Spec": "JSON-ის სპეციფიკაცია",
|
||||||
"July": "ივლისი",
|
"July": "ივლისი",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "მოგონება წარმატებით დაემატა",
|
"Memory added successfully": "მოგონება წარმატებით დაემატა",
|
||||||
"Memory cleared successfully": "მოგონება წარმატებით გასუფთავდა",
|
"Memory cleared successfully": "მოგონება წარმატებით გასუფთავდა",
|
||||||
"Memory deleted successfully": "მოგონება წარმატებით წაიშალა",
|
"Memory deleted successfully": "მოგონება წარმატებით წაიშალა",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "მოგონება წარმატებით განახლდა",
|
"Memory updated successfully": "მოგონება წარმატებით განახლდა",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "პასუხების შერწყმა",
|
"Merge Responses": "პასუხების შერწყმა",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "მეტი პარამეტრები",
|
"More Options": "მეტი პარამეტრები",
|
||||||
"Move": "გადატანა",
|
"Move": "გადატანა",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "ნაკადში პასუხი",
|
"Reply in Thread": "ნაკადში პასუხი",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "აუცილებელია",
|
"required": "აუცილებელია",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "ფაიფლაინის ატვირთვა",
|
"Upload Pipeline": "ფაიფლაინის ატვირთვა",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "ატვირთვის მიმდინარეობა",
|
"Upload Progress": "ატვირთვის მიმდინარეობა",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Tasarut API n Jina",
|
"Jina API Key": "Tasarut API n Jina",
|
||||||
"join our Discord for help.": "nadi-d ɣef tallalt-nneɣ.",
|
"join our Discord for help.": "nadi-d ɣef tallalt-nneɣ.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Taskant JSON",
|
"JSON Preview": "Taskant JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Yulyu",
|
"July": "Yulyu",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Asmekti yettwarna akken iwata",
|
"Memory added successfully": "Asmekti yettwarna akken iwata",
|
||||||
"Memory cleared successfully": "Tettwasfeḍ tkatut akken iwata",
|
"Memory cleared successfully": "Tettwasfeḍ tkatut akken iwata",
|
||||||
"Memory deleted successfully": "Asmekti yettwakkes akken iwata",
|
"Memory deleted successfully": "Asmekti yettwakkes akken iwata",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Takatut tettwaleqqem akken iwata",
|
"Memory updated successfully": "Takatut tettwaleqqem akken iwata",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Smezdi tiririyin",
|
"Merge Responses": "Smezdi tiririyin",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "Ugar n textiṛiyin",
|
"More Options": "Ugar n textiṛiyin",
|
||||||
"Move": "Senkez",
|
"Move": "Senkez",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Err deg udiwenni",
|
"Reply in Thread": "Err deg udiwenni",
|
||||||
"Reply to thread...": "Err i udiwenni…",
|
"Reply to thread...": "Err i udiwenni…",
|
||||||
"Replying to {{NAME}}": "Tiririt i {{NAME}}",
|
"Replying to {{NAME}}": "Tiririt i {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "yettwasra",
|
"required": "yettwasra",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Aselda n uɛebbi",
|
"Upload Pipeline": "Aselda n uɛebbi",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "",
|
"Upload Progress": "",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Tikli n uɛebbi: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1275,6 +1275,7 @@
|
|||||||
"Jina API Key": "Jina API 키",
|
"Jina API Key": "Jina API 키",
|
||||||
"join our Discord for help.": "도움말을 보려면 Discord에 가입하세요.",
|
"join our Discord for help.": "도움말을 보려면 Discord에 가입하세요.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON 미리 보기",
|
"JSON Preview": "JSON 미리 보기",
|
||||||
"JSON Spec": "JSON 스펙",
|
"JSON Spec": "JSON 스펙",
|
||||||
"July": "7월",
|
"July": "7월",
|
||||||
@@ -1407,6 +1408,7 @@
|
|||||||
"Memory added successfully": "성공적으로 메모리가 추가되었습니다",
|
"Memory added successfully": "성공적으로 메모리가 추가되었습니다",
|
||||||
"Memory cleared successfully": "성공적으로 메모리가 정리되었습니다",
|
"Memory cleared successfully": "성공적으로 메모리가 정리되었습니다",
|
||||||
"Memory deleted successfully": "성공적으로 메모리가 삭제되었습니다",
|
"Memory deleted successfully": "성공적으로 메모리가 삭제되었습니다",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "성공적으로 메모리가 업데이트되었습니다",
|
"Memory updated successfully": "성공적으로 메모리가 업데이트되었습니다",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "응답들 결합하기",
|
"Merge Responses": "응답들 결합하기",
|
||||||
@@ -1486,6 +1488,7 @@
|
|||||||
"More Options": "추가 설정",
|
"More Options": "추가 설정",
|
||||||
"Move": "이동",
|
"Move": "이동",
|
||||||
"Moved {{name}}": "{{name}} 이동됨",
|
"Moved {{name}}": "{{name}} 이동됨",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "내 터미널",
|
"My Terminal": "내 터미널",
|
||||||
@@ -1865,6 +1868,7 @@
|
|||||||
"Reply in Thread": "스레드로 답장하기",
|
"Reply in Thread": "스레드로 답장하기",
|
||||||
"Reply to thread...": "스레드로 답장하기...",
|
"Reply to thread...": "스레드로 답장하기...",
|
||||||
"Replying to {{NAME}}": "{{NAME}}에게 답장하는 중",
|
"Replying to {{NAME}}": "{{NAME}}에게 답장하는 중",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "필수",
|
"required": "필수",
|
||||||
"Reranking Batch Size": "리랭킹 배치 사이즈",
|
"Reranking Batch Size": "리랭킹 배치 사이즈",
|
||||||
@@ -2370,7 +2374,6 @@
|
|||||||
"Upload Pipeline": "업로드 파이프라인",
|
"Upload Pipeline": "업로드 파이프라인",
|
||||||
"Upload profile image": "프로필 이미지 업로드",
|
"Upload profile image": "프로필 이미지 업로드",
|
||||||
"Upload Progress": "업로드 진행 상황",
|
"Upload Progress": "업로드 진행 상황",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "업로드 진행 상황: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "업로드된 파일 또는 이미지",
|
"Uploaded files or images": "업로드된 파일 또는 이미지",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "업로드 중...",
|
"Uploading...": "업로드 중...",
|
||||||
|
|||||||
@@ -1295,6 +1295,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "prisijunkite prie mūsų Discord.",
|
"join our Discord for help.": "prisijunkite prie mūsų Discord.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON peržiūra",
|
"JSON Preview": "JSON peržiūra",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "liepa",
|
"July": "liepa",
|
||||||
@@ -1427,6 +1428,7 @@
|
|||||||
"Memory added successfully": "Atmintis pridėta sėkmingai",
|
"Memory added successfully": "Atmintis pridėta sėkmingai",
|
||||||
"Memory cleared successfully": "Atmintis ištrinta sėkmingai",
|
"Memory cleared successfully": "Atmintis ištrinta sėkmingai",
|
||||||
"Memory deleted successfully": "Atmintis ištrinta sėkmingai",
|
"Memory deleted successfully": "Atmintis ištrinta sėkmingai",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Atmintis atnaujinta sėkmingai",
|
"Memory updated successfully": "Atmintis atnaujinta sėkmingai",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1506,6 +1508,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1891,6 +1894,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2400,7 +2404,6 @@
|
|||||||
"Upload Pipeline": "Atnaujinti procesą",
|
"Upload Pipeline": "Atnaujinti procesą",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Įkėlimo progresas",
|
"Upload Progress": "Įkėlimo progresas",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "Jina API atslēga",
|
"Jina API Key": "Jina API atslēga",
|
||||||
"join our Discord for help.": "pievienojieties mūsu Discord, lai saņemtu palīdzību.",
|
"join our Discord for help.": "pievienojieties mūsu Discord, lai saņemtu palīdzību.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON priekšskatījums",
|
"JSON Preview": "JSON priekšskatījums",
|
||||||
"JSON Spec": "JSON specifikācija",
|
"JSON Spec": "JSON specifikācija",
|
||||||
"July": "Jūlijs",
|
"July": "Jūlijs",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "Atmiņa veiksmīgi pievienota",
|
"Memory added successfully": "Atmiņa veiksmīgi pievienota",
|
||||||
"Memory cleared successfully": "Atmiņa veiksmīgi notīrīta",
|
"Memory cleared successfully": "Atmiņa veiksmīgi notīrīta",
|
||||||
"Memory deleted successfully": "Atmiņa veiksmīgi dzēsta",
|
"Memory deleted successfully": "Atmiņa veiksmīgi dzēsta",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Atmiņa veiksmīgi atjaunināta",
|
"Memory updated successfully": "Atmiņa veiksmīgi atjaunināta",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Apvienot atbildes",
|
"Merge Responses": "Apvienot atbildes",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "Vairāk opciju",
|
"More Options": "Vairāk opciju",
|
||||||
"Move": "Pārvietot",
|
"Move": "Pārvietot",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "Atbildēt pavedienā",
|
"Reply in Thread": "Atbildēt pavedienā",
|
||||||
"Reply to thread...": "Atbildēt pavedienā...",
|
"Reply to thread...": "Atbildēt pavedienā...",
|
||||||
"Replying to {{NAME}}": "Atbild {{NAME}}",
|
"Replying to {{NAME}}": "Atbild {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "nepieciešams",
|
"required": "nepieciešams",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Augšupielādēt plūsmu",
|
"Upload Pipeline": "Augšupielādēt plūsmu",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Augšupielādes progress",
|
"Upload Progress": "Augšupielādes progress",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Augšupielādes progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Augšupielādēti faili vai attēli",
|
"Uploaded files or images": "Augšupielādēti faili vai attēli",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1274,6 +1274,7 @@
|
|||||||
"Jina API Key": "Kunci API Jina",
|
"Jina API Key": "Kunci API Jina",
|
||||||
"join our Discord for help.": "sertai Discord kami untuk mendapatkan bantuan.",
|
"join our Discord for help.": "sertai Discord kami untuk mendapatkan bantuan.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Pratonton JSON",
|
"JSON Preview": "Pratonton JSON",
|
||||||
"JSON Spec": "Spesifikasi JSON",
|
"JSON Spec": "Spesifikasi JSON",
|
||||||
"July": "Julai",
|
"July": "Julai",
|
||||||
@@ -1406,6 +1407,7 @@
|
|||||||
"Memory added successfully": "Ingatan berjaya ditambah",
|
"Memory added successfully": "Ingatan berjaya ditambah",
|
||||||
"Memory cleared successfully": "Ingatan berjaya dikosongkan",
|
"Memory cleared successfully": "Ingatan berjaya dikosongkan",
|
||||||
"Memory deleted successfully": "Ingatan berjaya dipadamkan",
|
"Memory deleted successfully": "Ingatan berjaya dipadamkan",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Ingatan berjaya dikemas kini",
|
"Memory updated successfully": "Ingatan berjaya dikemas kini",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Gabungkan Respons",
|
"Merge Responses": "Gabungkan Respons",
|
||||||
@@ -1485,6 +1487,7 @@
|
|||||||
"More Options": "Pilihan Lanjutan",
|
"More Options": "Pilihan Lanjutan",
|
||||||
"Move": "Pindah",
|
"Move": "Pindah",
|
||||||
"Moved {{name}}": "{{name}} telah dipindahkan",
|
"Moved {{name}}": "{{name}} telah dipindahkan",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Redam",
|
"Mute": "Redam",
|
||||||
"Muted": "Diredamkan",
|
"Muted": "Diredamkan",
|
||||||
"My Terminal": "Terminal Saya",
|
"My Terminal": "Terminal Saya",
|
||||||
@@ -1864,6 +1867,7 @@
|
|||||||
"Reply in Thread": "Balas dalam Benang",
|
"Reply in Thread": "Balas dalam Benang",
|
||||||
"Reply to thread...": "Balas ke benang...",
|
"Reply to thread...": "Balas ke benang...",
|
||||||
"Replying to {{NAME}}": "Membalas kepada {{NAME}}",
|
"Replying to {{NAME}}": "Membalas kepada {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "diperlukan",
|
"required": "diperlukan",
|
||||||
"Reranking Batch Size": "Saiz Kelompok Penyusunan Semula",
|
"Reranking Batch Size": "Saiz Kelompok Penyusunan Semula",
|
||||||
@@ -2367,7 +2371,6 @@
|
|||||||
"Upload Pipeline": "Muat Naik Pipeline",
|
"Upload Pipeline": "Muat Naik Pipeline",
|
||||||
"Upload profile image": "Muat Naik Imej Profil",
|
"Upload profile image": "Muat Naik Imej Profil",
|
||||||
"Upload Progress": "Kemajuan Muat Naik",
|
"Upload Progress": "Kemajuan Muat Naik",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Kemajuan Muat Naik: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Fail atau imej yang dimuat naik",
|
"Uploaded files or images": "Fail atau imej yang dimuat naik",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "Memuat naik...",
|
"Uploading...": "Memuat naik...",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "API-nøkkel for Jina",
|
"Jina API Key": "API-nøkkel for Jina",
|
||||||
"join our Discord for help.": "bli med i Discord-fellesskapet vårt for å få hjelp.",
|
"join our Discord for help.": "bli med i Discord-fellesskapet vårt for å få hjelp.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Forhåndsvisning av JSON",
|
"JSON Preview": "Forhåndsvisning av JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "juli",
|
"July": "juli",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Minne lagt til",
|
"Memory added successfully": "Minne lagt til",
|
||||||
"Memory cleared successfully": "Minne tømt",
|
"Memory cleared successfully": "Minne tømt",
|
||||||
"Memory deleted successfully": "Minne slettet",
|
"Memory deleted successfully": "Minne slettet",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Minne oppdatert",
|
"Memory updated successfully": "Minne oppdatert",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Flette svar",
|
"Merge Responses": "Flette svar",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Svar i tråd",
|
"Reply in Thread": "Svar i tråd",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Last opp pipeline",
|
"Upload Pipeline": "Last opp pipeline",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Opplastingsfremdrift",
|
"Upload Progress": "Opplastingsfremdrift",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API-sleutel",
|
"Jina API Key": "Jina API-sleutel",
|
||||||
"join our Discord for help.": "word lid van onze Discord voor hulp.",
|
"join our Discord for help.": "word lid van onze Discord voor hulp.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON-voorbeeld",
|
"JSON Preview": "JSON-voorbeeld",
|
||||||
"JSON Spec": "JSON-specificatie",
|
"JSON Spec": "JSON-specificatie",
|
||||||
"July": "juli",
|
"July": "juli",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Geheugen succesvol toegevoegd",
|
"Memory added successfully": "Geheugen succesvol toegevoegd",
|
||||||
"Memory cleared successfully": "Geheugen succesvol vrijgemaakt",
|
"Memory cleared successfully": "Geheugen succesvol vrijgemaakt",
|
||||||
"Memory deleted successfully": "Geheugen succesvol verwijderd",
|
"Memory deleted successfully": "Geheugen succesvol verwijderd",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Geheugen succesvol bijgewerkt",
|
"Memory updated successfully": "Geheugen succesvol bijgewerkt",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Voeg antwoorden samen",
|
"Merge Responses": "Voeg antwoorden samen",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "Meer opties",
|
"More Options": "Meer opties",
|
||||||
"Move": "Verplaatsen",
|
"Move": "Verplaatsen",
|
||||||
"Moved {{name}}": "{{name}} verplaatst",
|
"Moved {{name}}": "{{name}} verplaatst",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "Mijn terminal",
|
"My Terminal": "Mijn terminal",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Antwoord in draad",
|
"Reply in Thread": "Antwoord in draad",
|
||||||
"Reply to thread...": "Reageren op draad...",
|
"Reply to thread...": "Reageren op draad...",
|
||||||
"Replying to {{NAME}}": "Reageren op {{NAME}}",
|
"Replying to {{NAME}}": "Reageren op {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "vereist",
|
"required": "vereist",
|
||||||
"Reranking Batch Size": "Batchgrootte voor herordenen",
|
"Reranking Batch Size": "Batchgrootte voor herordenen",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Upload Pijpleiding",
|
"Upload Pipeline": "Upload Pijpleiding",
|
||||||
"Upload profile image": "Profielafbeelding uploaden",
|
"Upload profile image": "Profielafbeelding uploaden",
|
||||||
"Upload Progress": "Upload Voortgang",
|
"Upload Progress": "Upload Voortgang",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Uploadvoortgang: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Geüploade bestanden of afbeeldingen",
|
"Uploaded files or images": "Geüploade bestanden of afbeeldingen",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "Aan het uploaden...",
|
"Uploading...": "Aan het uploaden...",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "ਮਦਦ ਲਈ ਸਾਡੇ ਡਿਸਕੋਰਡ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਵੋ।",
|
"join our Discord for help.": "ਮਦਦ ਲਈ ਸਾਡੇ ਡਿਸਕੋਰਡ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਵੋ।",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON ਪੂਰਵ-ਦਰਸ਼ਨ",
|
"JSON Preview": "JSON ਪੂਰਵ-ਦਰਸ਼ਨ",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "ਜੁਲਾਈ",
|
"July": "ਜੁਲਾਈ",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "ਅਪਲੋਡ ਪ੍ਰਗਤੀ",
|
"Upload Progress": "ਅਪਲੋਡ ਪ੍ਰਗਤੀ",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1295,6 +1295,7 @@
|
|||||||
"Jina API Key": "Klucz API Jina",
|
"Jina API Key": "Klucz API Jina",
|
||||||
"join our Discord for help.": "dołącz do Discorda po pomoc.",
|
"join our Discord for help.": "dołącz do Discorda po pomoc.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Podgląd JSON",
|
"JSON Preview": "Podgląd JSON",
|
||||||
"JSON Spec": "Specyfikacja JSON",
|
"JSON Spec": "Specyfikacja JSON",
|
||||||
"July": "Lipiec",
|
"July": "Lipiec",
|
||||||
@@ -1427,6 +1428,7 @@
|
|||||||
"Memory added successfully": "Wpis pamięci dodany pomyślnie",
|
"Memory added successfully": "Wpis pamięci dodany pomyślnie",
|
||||||
"Memory cleared successfully": "Pamięć wyczyszczona pomyślnie",
|
"Memory cleared successfully": "Pamięć wyczyszczona pomyślnie",
|
||||||
"Memory deleted successfully": "Wpis pamięci usunięty pomyślnie",
|
"Memory deleted successfully": "Wpis pamięci usunięty pomyślnie",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Wpis pamięci zaktualizowany pomyślnie",
|
"Memory updated successfully": "Wpis pamięci zaktualizowany pomyślnie",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Połącz odpowiedzi",
|
"Merge Responses": "Połącz odpowiedzi",
|
||||||
@@ -1506,6 +1508,7 @@
|
|||||||
"More Options": "Więcej opcji",
|
"More Options": "Więcej opcji",
|
||||||
"Move": "Przenieś",
|
"Move": "Przenieś",
|
||||||
"Moved {{name}}": "Przeniesiono {{name}}",
|
"Moved {{name}}": "Przeniesiono {{name}}",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Wycisz",
|
"Mute": "Wycisz",
|
||||||
"Muted": "Wyciszony",
|
"Muted": "Wyciszony",
|
||||||
"My Terminal": "Mój terminal",
|
"My Terminal": "Mój terminal",
|
||||||
@@ -1891,6 +1894,7 @@
|
|||||||
"Reply in Thread": "Odpowiedz w wątku",
|
"Reply in Thread": "Odpowiedz w wątku",
|
||||||
"Reply to thread...": "Odpowiedz w wątku...",
|
"Reply to thread...": "Odpowiedz w wątku...",
|
||||||
"Replying to {{NAME}}": "Odpowiedź do {{NAME}}",
|
"Replying to {{NAME}}": "Odpowiedź do {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "wymagane",
|
"required": "wymagane",
|
||||||
"Reranking Batch Size": "Rozmiar partii reranking",
|
"Reranking Batch Size": "Rozmiar partii reranking",
|
||||||
@@ -2400,7 +2404,6 @@
|
|||||||
"Upload Pipeline": "Prześlij Pipeline",
|
"Upload Pipeline": "Prześlij Pipeline",
|
||||||
"Upload profile image": "Prześlij zdjęcie profilowe",
|
"Upload profile image": "Prześlij zdjęcie profilowe",
|
||||||
"Upload Progress": "Postęp przesyłania",
|
"Upload Progress": "Postęp przesyłania",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Postęp: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Przesłane pliki lub obrazy",
|
"Uploaded files or images": "Przesłane pliki lub obrazy",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "Przesyłanie...",
|
"Uploading...": "Przesyłanie...",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "Chave de API Jina",
|
"Jina API Key": "Chave de API Jina",
|
||||||
"join our Discord for help.": "junte-se ao nosso Discord para obter ajuda.",
|
"join our Discord for help.": "junte-se ao nosso Discord para obter ajuda.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Pré-visualização JSON",
|
"JSON Preview": "Pré-visualização JSON",
|
||||||
"JSON Spec": "Especificação JSON",
|
"JSON Spec": "Especificação JSON",
|
||||||
"July": "Julho",
|
"July": "Julho",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "Memória adicionada com sucesso",
|
"Memory added successfully": "Memória adicionada com sucesso",
|
||||||
"Memory cleared successfully": "Memória limpa com sucesso",
|
"Memory cleared successfully": "Memória limpa com sucesso",
|
||||||
"Memory deleted successfully": "Memória excluída com sucesso",
|
"Memory deleted successfully": "Memória excluída com sucesso",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memória atualizada com sucesso",
|
"Memory updated successfully": "Memória atualizada com sucesso",
|
||||||
"Merge Accounts by Email": "Mesclar Contas por Email",
|
"Merge Accounts by Email": "Mesclar Contas por Email",
|
||||||
"Merge Responses": "Mesclar respostas",
|
"Merge Responses": "Mesclar respostas",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "Mais opções",
|
"More Options": "Mais opções",
|
||||||
"Move": "Mover",
|
"Move": "Mover",
|
||||||
"Moved {{name}}": "{{name}} movido",
|
"Moved {{name}}": "{{name}} movido",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Silenciar",
|
"Mute": "Silenciar",
|
||||||
"Muted": "Silenciado",
|
"Muted": "Silenciado",
|
||||||
"My Terminal": "Meu Terminal",
|
"My Terminal": "Meu Terminal",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "Responder no tópico",
|
"Reply in Thread": "Responder no tópico",
|
||||||
"Reply to thread...": "Responder ao tópico...",
|
"Reply to thread...": "Responder ao tópico...",
|
||||||
"Replying to {{NAME}}": "Respondendo para {{NAME}}",
|
"Replying to {{NAME}}": "Respondendo para {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "Exigir que os usuários confirmem antes de usar a Pesquisa na Web.",
|
"Require users to confirm before using Web Search.": "Exigir que os usuários confirmem antes de usar a Pesquisa na Web.",
|
||||||
"required": "obrigatório",
|
"required": "obrigatório",
|
||||||
"Reranking Batch Size": "Tamanho do lote de reclassificação",
|
"Reranking Batch Size": "Tamanho do lote de reclassificação",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Fazer upload de Pipeline",
|
"Upload Pipeline": "Fazer upload de Pipeline",
|
||||||
"Upload profile image": "Enviar imagem de perfil",
|
"Upload profile image": "Enviar imagem de perfil",
|
||||||
"Upload Progress": "Progresso do Upload",
|
"Upload Progress": "Progresso do Upload",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progresso do upload: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Arquivos ou imagens carregados",
|
"Uploaded files or images": "Arquivos ou imagens carregados",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "Enviando {{current}}/{{total}}: {{file}}",
|
"Uploading {{current}}/{{total}}: {{file}}": "Enviando {{current}}/{{total}}: {{file}}",
|
||||||
"Uploading...": "Enviando...",
|
"Uploading...": "Enviando...",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "Chave da API do Jina",
|
"Jina API Key": "Chave da API do Jina",
|
||||||
"join our Discord for help.": "junte-se ao nosso Discord para obter ajuda.",
|
"join our Discord for help.": "junte-se ao nosso Discord para obter ajuda.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Pré-visualização JSON",
|
"JSON Preview": "Pré-visualização JSON",
|
||||||
"JSON Spec": "Especificação JSON",
|
"JSON Spec": "Especificação JSON",
|
||||||
"July": "Julho",
|
"July": "Julho",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "Memória adicionada com sucesso",
|
"Memory added successfully": "Memória adicionada com sucesso",
|
||||||
"Memory cleared successfully": "Memória limpa com sucesso",
|
"Memory cleared successfully": "Memória limpa com sucesso",
|
||||||
"Memory deleted successfully": "Memória eliminada com sucesso",
|
"Memory deleted successfully": "Memória eliminada com sucesso",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memória atualizada com sucesso",
|
"Memory updated successfully": "Memória atualizada com sucesso",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Fundir Respostas",
|
"Merge Responses": "Fundir Respostas",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "Mais Opções",
|
"More Options": "Mais Opções",
|
||||||
"Move": "Mover",
|
"Move": "Mover",
|
||||||
"Moved {{name}}": "Movido {{name}}",
|
"Moved {{name}}": "Movido {{name}}",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "Meu Terminal",
|
"My Terminal": "Meu Terminal",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "Responder no Tópico",
|
"Reply in Thread": "Responder no Tópico",
|
||||||
"Reply to thread...": "Responder ao tópico...",
|
"Reply to thread...": "Responder ao tópico...",
|
||||||
"Replying to {{NAME}}": "A responder a {{NAME}}",
|
"Replying to {{NAME}}": "A responder a {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "obrigatório",
|
"required": "obrigatório",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Carregar Pipeline",
|
"Upload Pipeline": "Carregar Pipeline",
|
||||||
"Upload profile image": "Carregar imagem de perfil",
|
"Upload profile image": "Carregar imagem de perfil",
|
||||||
"Upload Progress": "Progresso do Carregamento",
|
"Upload Progress": "Progresso do Carregamento",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progresso do Carregamento: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Ficheiros ou imagens carregados",
|
"Uploaded files or images": "Ficheiros ou imagens carregados",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "A carregar...",
|
"Uploading...": "A carregar...",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "alătură-te Discord-ului nostru pentru ajutor.",
|
"join our Discord for help.": "alătură-te Discord-ului nostru pentru ajutor.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Previzualizare JSON",
|
"JSON Preview": "Previzualizare JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Iulie",
|
"July": "Iulie",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "Memoria a fost adăugată cu succes",
|
"Memory added successfully": "Memoria a fost adăugată cu succes",
|
||||||
"Memory cleared successfully": "Memoria a fost ștearsă cu succes",
|
"Memory cleared successfully": "Memoria a fost ștearsă cu succes",
|
||||||
"Memory deleted successfully": "Memoria a fost ștearsă cu succes",
|
"Memory deleted successfully": "Memoria a fost ștearsă cu succes",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memoria a fost actualizată cu succes",
|
"Memory updated successfully": "Memoria a fost actualizată cu succes",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Combină răspunsurile",
|
"Merge Responses": "Combină răspunsurile",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Încarcă Conducta",
|
"Upload Pipeline": "Încarcă Conducta",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Progres Încărcare",
|
"Upload Progress": "Progres Încărcare",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1295,6 +1295,7 @@
|
|||||||
"Jina API Key": "Ключ API для Jina",
|
"Jina API Key": "Ключ API для Jina",
|
||||||
"join our Discord for help.": "присоединяйтесь к нашему Discord для помощи.",
|
"join our Discord for help.": "присоединяйтесь к нашему Discord для помощи.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Предварительный просмотр JSON",
|
"JSON Preview": "Предварительный просмотр JSON",
|
||||||
"JSON Spec": "JSON-спецификация",
|
"JSON Spec": "JSON-спецификация",
|
||||||
"July": "Июль",
|
"July": "Июль",
|
||||||
@@ -1427,6 +1428,7 @@
|
|||||||
"Memory added successfully": "Воспоминание успешно добавлено",
|
"Memory added successfully": "Воспоминание успешно добавлено",
|
||||||
"Memory cleared successfully": "Воспоминания успешно очищены",
|
"Memory cleared successfully": "Воспоминания успешно очищены",
|
||||||
"Memory deleted successfully": "Воспоминание успешно удалено",
|
"Memory deleted successfully": "Воспоминание успешно удалено",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Воспоминание успешно обновлено",
|
"Memory updated successfully": "Воспоминание успешно обновлено",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Объединить ответы",
|
"Merge Responses": "Объединить ответы",
|
||||||
@@ -1506,6 +1508,7 @@
|
|||||||
"More Options": "Больше опций",
|
"More Options": "Больше опций",
|
||||||
"Move": "Переместить",
|
"Move": "Переместить",
|
||||||
"Moved {{name}}": "Перемещено: {{name}}",
|
"Moved {{name}}": "Перемещено: {{name}}",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Выключить микрофон",
|
"Mute": "Выключить микрофон",
|
||||||
"Muted": "Микрофон выключен",
|
"Muted": "Микрофон выключен",
|
||||||
"My Terminal": "Мой терминал",
|
"My Terminal": "Мой терминал",
|
||||||
@@ -1891,6 +1894,7 @@
|
|||||||
"Reply in Thread": "Ответить в обсуждении",
|
"Reply in Thread": "Ответить в обсуждении",
|
||||||
"Reply to thread...": "Ответить в обсуждении...",
|
"Reply to thread...": "Ответить в обсуждении...",
|
||||||
"Replying to {{NAME}}": "Ответ для {{NAME}}",
|
"Replying to {{NAME}}": "Ответ для {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "обязательно",
|
"required": "обязательно",
|
||||||
"Reranking Batch Size": "Размер пакета реранжирования",
|
"Reranking Batch Size": "Размер пакета реранжирования",
|
||||||
@@ -2400,7 +2404,6 @@
|
|||||||
"Upload Pipeline": "Загрузить конвейер",
|
"Upload Pipeline": "Загрузить конвейер",
|
||||||
"Upload profile image": "Загрузить аватар",
|
"Upload profile image": "Загрузить аватар",
|
||||||
"Upload Progress": "Прогресс загрузки",
|
"Upload Progress": "Прогресс загрузки",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Прогресс загрузки: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Загруженные файлы или изображения",
|
"Uploaded files or images": "Загруженные файлы или изображения",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "Загрузка...",
|
"Uploading...": "Загрузка...",
|
||||||
|
|||||||
@@ -1295,6 +1295,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "pripojte sa k nášmu Discordu pre pomoc.",
|
"join our Discord for help.": "pripojte sa k nášmu Discordu pre pomoc.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Náhľad JSON",
|
"JSON Preview": "Náhľad JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Júl",
|
"July": "Júl",
|
||||||
@@ -1427,6 +1428,7 @@
|
|||||||
"Memory added successfully": "Pamäť bola úspešne pridaná.",
|
"Memory added successfully": "Pamäť bola úspešne pridaná.",
|
||||||
"Memory cleared successfully": "Pamäť bola úspešne vymazaná.",
|
"Memory cleared successfully": "Pamäť bola úspešne vymazaná.",
|
||||||
"Memory deleted successfully": "Pamäť bola úspešne vymazaná",
|
"Memory deleted successfully": "Pamäť bola úspešne vymazaná",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Pamäť úspešne aktualizovaná",
|
"Memory updated successfully": "Pamäť úspešne aktualizovaná",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Zlúčiť odpovede",
|
"Merge Responses": "Zlúčiť odpovede",
|
||||||
@@ -1506,6 +1508,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "Presunúť",
|
"Move": "Presunúť",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1891,6 +1894,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2400,7 +2404,6 @@
|
|||||||
"Upload Pipeline": "Nahrať pipeline",
|
"Upload Pipeline": "Nahrať pipeline",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Priebeh nahrávania",
|
"Upload Progress": "Priebeh nahrávania",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1288,6 +1288,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "придружите се нашем Дискорду за помоћ.",
|
"join our Discord for help.": "придружите се нашем Дискорду за помоћ.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "ЈСОН Преглед",
|
"JSON Preview": "ЈСОН Преглед",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Јул",
|
"July": "Јул",
|
||||||
@@ -1420,6 +1421,7 @@
|
|||||||
"Memory added successfully": "Сећање успешно додато",
|
"Memory added successfully": "Сећање успешно додато",
|
||||||
"Memory cleared successfully": "Сећање успешно очишћено",
|
"Memory cleared successfully": "Сећање успешно очишћено",
|
||||||
"Memory deleted successfully": "Сећање успешно обрисано",
|
"Memory deleted successfully": "Сећање успешно обрисано",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Сећање успешно измењено",
|
"Memory updated successfully": "Сећање успешно измењено",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Спој одговоре",
|
"Merge Responses": "Спој одговоре",
|
||||||
@@ -1499,6 +1501,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1882,6 +1885,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2389,7 +2393,6 @@
|
|||||||
"Upload Pipeline": "Цевовод отпремања",
|
"Upload Pipeline": "Цевовод отпремања",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Напредак отпремања",
|
"Upload Progress": "Напредак отпремања",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API-nyckel",
|
"Jina API Key": "Jina API-nyckel",
|
||||||
"join our Discord for help.": "gå med i vår Discord för hjälp.",
|
"join our Discord for help.": "gå med i vår Discord för hjälp.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Förhandsversion av JSON",
|
"JSON Preview": "Förhandsversion av JSON",
|
||||||
"JSON Spec": "JSON-specifikation",
|
"JSON Spec": "JSON-specifikation",
|
||||||
"July": "juli",
|
"July": "juli",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Minnet har lagts till",
|
"Memory added successfully": "Minnet har lagts till",
|
||||||
"Memory cleared successfully": "Minnet har rensats",
|
"Memory cleared successfully": "Minnet har rensats",
|
||||||
"Memory deleted successfully": "Minnet har tagits bort",
|
"Memory deleted successfully": "Minnet har tagits bort",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Minnet har uppdaterats",
|
"Memory updated successfully": "Minnet har uppdaterats",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Sammanslå svar (med AI)",
|
"Merge Responses": "Sammanslå svar (med AI)",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "Fler alternativ",
|
"More Options": "Fler alternativ",
|
||||||
"Move": "Flytta",
|
"Move": "Flytta",
|
||||||
"Moved {{name}}": "Flyttat {{name}}",
|
"Moved {{name}}": "Flyttat {{name}}",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Stäng av ljud",
|
"Mute": "Stäng av ljud",
|
||||||
"Muted": "Tystad",
|
"Muted": "Tystad",
|
||||||
"My Terminal": "Min terminal",
|
"My Terminal": "Min terminal",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Svara i tråd",
|
"Reply in Thread": "Svara i tråd",
|
||||||
"Reply to thread...": "Svara i tråd...",
|
"Reply to thread...": "Svara i tråd...",
|
||||||
"Replying to {{NAME}}": "Svarar {{NAME}}",
|
"Replying to {{NAME}}": "Svarar {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "obligatoriskt",
|
"required": "obligatoriskt",
|
||||||
"Reranking Batch Size": "Batchstorlek för omrankning",
|
"Reranking Batch Size": "Batchstorlek för omrankning",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Ladda upp rörledning",
|
"Upload Pipeline": "Ladda upp rörledning",
|
||||||
"Upload profile image": "Ladda upp profilbild",
|
"Upload profile image": "Ladda upp profilbild",
|
||||||
"Upload Progress": "Uppladdningsframsteg",
|
"Upload Progress": "Uppladdningsframsteg",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Uppladdningsstatus: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Uppladdade filer eller bilder",
|
"Uploaded files or images": "Uppladdade filer eller bilder",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "Uppladdning...",
|
"Uploading...": "Uppladdning...",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "ஜினா API கீ",
|
"Jina API Key": "ஜினா API கீ",
|
||||||
"join our Discord for help.": "உதவிக்கு எங்கள் டிஸ்கார்டில் சேரவும்.",
|
"join our Discord for help.": "உதவிக்கு எங்கள் டிஸ்கார்டில் சேரவும்.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON முன்னோட்டம்",
|
"JSON Preview": "JSON முன்னோட்டம்",
|
||||||
"JSON Spec": "JSON விவரக்குறிப்பு",
|
"JSON Spec": "JSON விவரக்குறிப்பு",
|
||||||
"July": "ஜூலை",
|
"July": "ஜூலை",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "நினைவகம் வெற்றிகரமாக சேர்க்கப்பட்டது",
|
"Memory added successfully": "நினைவகம் வெற்றிகரமாக சேர்க்கப்பட்டது",
|
||||||
"Memory cleared successfully": "நினைவகம் வெற்றிகரமாக அழிக்கப்பட்டது",
|
"Memory cleared successfully": "நினைவகம் வெற்றிகரமாக அழிக்கப்பட்டது",
|
||||||
"Memory deleted successfully": "நினைவகம் வெற்றிகரமாக நீக்கப்பட்டது",
|
"Memory deleted successfully": "நினைவகம் வெற்றிகரமாக நீக்கப்பட்டது",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "நினைவகம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது",
|
"Memory updated successfully": "நினைவகம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "பதில்களை ஒன்றிணைக்கவும்",
|
"Merge Responses": "பதில்களை ஒன்றிணைக்கவும்",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "மேலும் விருப்பங்கள்",
|
"More Options": "மேலும் விருப்பங்கள்",
|
||||||
"Move": "நகர்த்தவும்",
|
"Move": "நகர்த்தவும்",
|
||||||
"Moved {{name}}": "{{name}} நகர்த்தப்பட்டது",
|
"Moved {{name}}": "{{name}} நகர்த்தப்பட்டது",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "என் டெர்மினல்",
|
"My Terminal": "என் டெர்மினல்",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "த்ரெட்டில் பதிலளிக்கவும்",
|
"Reply in Thread": "த்ரெட்டில் பதிலளிக்கவும்",
|
||||||
"Reply to thread...": "திரிக்கு பதில்...",
|
"Reply to thread...": "திரிக்கு பதில்...",
|
||||||
"Replying to {{NAME}}": "{{NAME}} க்கு பதிலளிக்கிறது",
|
"Replying to {{NAME}}": "{{NAME}} க்கு பதிலளிக்கிறது",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "தேவை",
|
"required": "தேவை",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "பைப்லைனை பதிவேற்றவும்",
|
"Upload Pipeline": "பைப்லைனை பதிவேற்றவும்",
|
||||||
"Upload profile image": "சுயவிவரப் படத்தைப் பதிவேற்றவும்",
|
"Upload profile image": "சுயவிவரப் படத்தைப் பதிவேற்றவும்",
|
||||||
"Upload Progress": "பதிவேற்ற முன்னேற்றம்",
|
"Upload Progress": "பதிவேற்ற முன்னேற்றம்",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "பதிவேற்ற முன்னேற்றம்: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "பதிவேற்றப்பட்ட கோப்புகள் அல்லது படங்கள்",
|
"Uploaded files or images": "பதிவேற்றப்பட்ட கோப்புகள் அல்லது படங்கள்",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "பதிவேற்றுகிறது...",
|
"Uploading...": "பதிவேற்றுகிறது...",
|
||||||
|
|||||||
@@ -1274,6 +1274,7 @@
|
|||||||
"Jina API Key": "API Key ของ Jina",
|
"Jina API Key": "API Key ของ Jina",
|
||||||
"join our Discord for help.": "เข้าร่วม Discord ของเราเพื่อขอความช่วยเหลือ",
|
"join our Discord for help.": "เข้าร่วม Discord ของเราเพื่อขอความช่วยเหลือ",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "ดูตัวอย่าง JSON",
|
"JSON Preview": "ดูตัวอย่าง JSON",
|
||||||
"JSON Spec": "สเปก JSON",
|
"JSON Spec": "สเปก JSON",
|
||||||
"July": "กรกฎาคม",
|
"July": "กรกฎาคม",
|
||||||
@@ -1406,6 +1407,7 @@
|
|||||||
"Memory added successfully": "เพิ่มความจำสำเร็จ",
|
"Memory added successfully": "เพิ่มความจำสำเร็จ",
|
||||||
"Memory cleared successfully": "ล้างความจำสำเร็จแล้ว",
|
"Memory cleared successfully": "ล้างความจำสำเร็จแล้ว",
|
||||||
"Memory deleted successfully": "ลบความจำสำเร็จ",
|
"Memory deleted successfully": "ลบความจำสำเร็จ",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "อัปเดตความจำสำเร็จแล้ว",
|
"Memory updated successfully": "อัปเดตความจำสำเร็จแล้ว",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "รวมคำตอบ",
|
"Merge Responses": "รวมคำตอบ",
|
||||||
@@ -1485,6 +1487,7 @@
|
|||||||
"More Options": "ตัวเลือกเพิ่มเติม",
|
"More Options": "ตัวเลือกเพิ่มเติม",
|
||||||
"Move": "ย้าย",
|
"Move": "ย้าย",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1864,6 +1867,7 @@
|
|||||||
"Reply in Thread": "ตอบกลับในเธรด",
|
"Reply in Thread": "ตอบกลับในเธรด",
|
||||||
"Reply to thread...": "ตอบกลับเธรด...",
|
"Reply to thread...": "ตอบกลับเธรด...",
|
||||||
"Replying to {{NAME}}": "กำลังตอบกลับ {{NAME}}",
|
"Replying to {{NAME}}": "กำลังตอบกลับ {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "จำเป็น",
|
"required": "จำเป็น",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2367,7 +2371,6 @@
|
|||||||
"Upload Pipeline": "อัปโหลด Pipeline",
|
"Upload Pipeline": "อัปโหลด Pipeline",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "ความคืบหน้าการอัปโหลด",
|
"Upload Progress": "ความคืบหน้าการอัปโหลด",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "ความคืบหน้าการอัปโหลด: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "",
|
"join our Discord for help.": "",
|
||||||
"JSON": "",
|
"JSON": "",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "",
|
"JSON Preview": "",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Iýul",
|
"July": "Iýul",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "",
|
"Memory added successfully": "",
|
||||||
"Memory cleared successfully": "",
|
"Memory cleared successfully": "",
|
||||||
"Memory deleted successfully": "",
|
"Memory deleted successfully": "",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "",
|
"Upload Pipeline": "",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "",
|
"Upload Progress": "",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API Anahtarı",
|
"Jina API Key": "Jina API Anahtarı",
|
||||||
"join our Discord for help.": "yardım için Discord'umuza katılın.",
|
"join our Discord for help.": "yardım için Discord'umuza katılın.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON Önizlemesi",
|
"JSON Preview": "JSON Önizlemesi",
|
||||||
"JSON Spec": "JSON Belirtimi",
|
"JSON Spec": "JSON Belirtimi",
|
||||||
"July": "Temmuz",
|
"July": "Temmuz",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Bellek başarıyla eklendi",
|
"Memory added successfully": "Bellek başarıyla eklendi",
|
||||||
"Memory cleared successfully": "Bellek başarıyla temizlendi",
|
"Memory cleared successfully": "Bellek başarıyla temizlendi",
|
||||||
"Memory deleted successfully": "Bellek başarıyla silindi",
|
"Memory deleted successfully": "Bellek başarıyla silindi",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Bellek başarıyla güncellendi",
|
"Memory updated successfully": "Bellek başarıyla güncellendi",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Yanıtları Birleştir",
|
"Merge Responses": "Yanıtları Birleştir",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "Diğer Seçenekler",
|
"More Options": "Diğer Seçenekler",
|
||||||
"Move": "Taşı",
|
"Move": "Taşı",
|
||||||
"Moved {{name}}": "{{name}} taşındı",
|
"Moved {{name}}": "{{name}} taşındı",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "Sessize Al",
|
"Mute": "Sessize Al",
|
||||||
"Muted": "Sessize Alındı",
|
"Muted": "Sessize Alındı",
|
||||||
"My Terminal": "Terminalim",
|
"My Terminal": "Terminalim",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Konuya Yanıtla",
|
"Reply in Thread": "Konuya Yanıtla",
|
||||||
"Reply to thread...": "Konuya yanıt ver...",
|
"Reply to thread...": "Konuya yanıt ver...",
|
||||||
"Replying to {{NAME}}": "{{NAME}} kullanıcısına yanıt veriliyor",
|
"Replying to {{NAME}}": "{{NAME}} kullanıcısına yanıt veriliyor",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "gerekli",
|
"required": "gerekli",
|
||||||
"Reranking Batch Size": "Yeniden Sıralama Toplu İş Boyutu",
|
"Reranking Batch Size": "Yeniden Sıralama Toplu İş Boyutu",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Pipeline Yükle",
|
"Upload Pipeline": "Pipeline Yükle",
|
||||||
"Upload profile image": "Profil resmi yükle",
|
"Upload profile image": "Profil resmi yükle",
|
||||||
"Upload Progress": "Yükleme İlerlemesi",
|
"Upload Progress": "Yükleme İlerlemesi",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Yükleme İlerlemesi: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "Yüklenen dosyalar veya görüntüler",
|
"Uploaded files or images": "Yüklenen dosyalar veya görüntüler",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "Yükleniyor...",
|
"Uploading...": "Yükleniyor...",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API ئاچقۇچى",
|
"Jina API Key": "Jina API ئاچقۇچى",
|
||||||
"join our Discord for help.": "ياردەم ئۈچۈن Discord غا قوشۇلىڭ.",
|
"join our Discord for help.": "ياردەم ئۈچۈن Discord غا قوشۇلىڭ.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON ئالدىن كۆرۈش",
|
"JSON Preview": "JSON ئالدىن كۆرۈش",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "ئىيۇل",
|
"July": "ئىيۇل",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك قوشۇلدى",
|
"Memory added successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك قوشۇلدى",
|
||||||
"Memory cleared successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك تازىلاندى",
|
"Memory cleared successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك تازىلاندى",
|
||||||
"Memory deleted successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
|
"Memory deleted successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك يېڭىلاندى",
|
"Memory updated successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك يېڭىلاندى",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "ئىنكاسلارنى بىرلەشتۈرۈش",
|
"Merge Responses": "ئىنكاسلارنى بىرلەشتۈرۈش",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "تارماقتا ئىنكاس قايتۇرۇش",
|
"Reply in Thread": "تارماقتا ئىنكاس قايتۇرۇش",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "جەريان چىقىرىش",
|
"Upload Pipeline": "جەريان چىقىرىش",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "چىقىرىش جەريانى",
|
"Upload Progress": "چىقىرىش جەريانى",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1295,6 +1295,7 @@
|
|||||||
"Jina API Key": "Ключ API для Jina",
|
"Jina API Key": "Ключ API для Jina",
|
||||||
"join our Discord for help.": "приєднуйтеся до нашого Discord для допомоги.",
|
"join our Discord for help.": "приєднуйтеся до нашого Discord для допомоги.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Перегляд JSON",
|
"JSON Preview": "Перегляд JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Липень",
|
"July": "Липень",
|
||||||
@@ -1427,6 +1428,7 @@
|
|||||||
"Memory added successfully": "Пам'ять додано успішно",
|
"Memory added successfully": "Пам'ять додано успішно",
|
||||||
"Memory cleared successfully": "Пам'ять успішно очищено",
|
"Memory cleared successfully": "Пам'ять успішно очищено",
|
||||||
"Memory deleted successfully": "Пам'ять успішно видалено",
|
"Memory deleted successfully": "Пам'ять успішно видалено",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Пам'ять успішно оновлено",
|
"Memory updated successfully": "Пам'ять успішно оновлено",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Об'єднати відповіді",
|
"Merge Responses": "Об'єднати відповіді",
|
||||||
@@ -1506,6 +1508,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1891,6 +1894,7 @@
|
|||||||
"Reply in Thread": "Відповісти в потоці",
|
"Reply in Thread": "Відповісти в потоці",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2400,7 +2404,6 @@
|
|||||||
"Upload Pipeline": "Завантажити конвеєр",
|
"Upload Pipeline": "Завантажити конвеєр",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Прогрес завантаження",
|
"Upload Progress": "Прогрес завантаження",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "",
|
"Jina API Key": "",
|
||||||
"join our Discord for help.": "مدد کے لئے ہمارے ڈسکارڈ میں شامل ہوں",
|
"join our Discord for help.": "مدد کے لئے ہمارے ڈسکارڈ میں شامل ہوں",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON پیش منظر",
|
"JSON Preview": "JSON پیش منظر",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "جولائی",
|
"July": "جولائی",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "میموری کامیابی سے شامل کر دی گئی",
|
"Memory added successfully": "میموری کامیابی سے شامل کر دی گئی",
|
||||||
"Memory cleared successfully": "یادداشت کامیابی سے صاف ہوگئی",
|
"Memory cleared successfully": "یادداشت کامیابی سے صاف ہوگئی",
|
||||||
"Memory deleted successfully": "میموری کامیابی سے حذف ہوگئی",
|
"Memory deleted successfully": "میموری کامیابی سے حذف ہوگئی",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "حافظہ کامیابی سے اپ ڈیٹ کر دیا گیا",
|
"Memory updated successfully": "حافظہ کامیابی سے اپ ڈیٹ کر دیا گیا",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "جوابات کو یکجا کریں",
|
"Merge Responses": "جوابات کو یکجا کریں",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "",
|
"Reply in Thread": "",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "اپ لوڈ پائپ لائن",
|
"Upload Pipeline": "اپ لوڈ پائپ لائن",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "اپ لوڈ کی پیش رفت",
|
"Upload Progress": "اپ لوڈ کی پیش رفت",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Жина АПИ калити",
|
"Jina API Key": "Жина АПИ калити",
|
||||||
"join our Discord for help.": "ёрдам учун Дисcордимизга қўшилинг.",
|
"join our Discord for help.": "ёрдам учун Дисcордимизга қўшилинг.",
|
||||||
"JSON": "ЖСОН",
|
"JSON": "ЖСОН",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "ЖСОН кўриб чиқиш",
|
"JSON Preview": "ЖСОН кўриб чиқиш",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "июл",
|
"July": "июл",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Хотира муваффақиятли қўшилди",
|
"Memory added successfully": "Хотира муваффақиятли қўшилди",
|
||||||
"Memory cleared successfully": "Хотира муваффақиятли тозаланди",
|
"Memory cleared successfully": "Хотира муваффақиятли тозаланди",
|
||||||
"Memory deleted successfully": "Хотира муваффақиятли ўчирилди",
|
"Memory deleted successfully": "Хотира муваффақиятли ўчирилди",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Хотира муваффақиятли янгиланди",
|
"Memory updated successfully": "Хотира муваффақиятли янгиланди",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Жавобларни бирлаштириш",
|
"Merge Responses": "Жавобларни бирлаштириш",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Мавзуда жавоб беринг",
|
"Reply in Thread": "Мавзуда жавоб беринг",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Қувур линиясини юклаш",
|
"Upload Pipeline": "Қувур линиясини юклаш",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Юклаш жараёни",
|
"Upload Progress": "Юклаш жараёни",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1281,6 +1281,7 @@
|
|||||||
"Jina API Key": "Jina API kaliti",
|
"Jina API Key": "Jina API kaliti",
|
||||||
"join our Discord for help.": "yordam uchun Discordimizga qo'shiling.",
|
"join our Discord for help.": "yordam uchun Discordimizga qo'shiling.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON ko'rib chiqish",
|
"JSON Preview": "JSON ko'rib chiqish",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "iyul",
|
"July": "iyul",
|
||||||
@@ -1413,6 +1414,7 @@
|
|||||||
"Memory added successfully": "Xotira muvaffaqiyatli qo'shildi",
|
"Memory added successfully": "Xotira muvaffaqiyatli qo'shildi",
|
||||||
"Memory cleared successfully": "Xotira muvaffaqiyatli tozalandi",
|
"Memory cleared successfully": "Xotira muvaffaqiyatli tozalandi",
|
||||||
"Memory deleted successfully": "Xotira muvaffaqiyatli oʻchirildi",
|
"Memory deleted successfully": "Xotira muvaffaqiyatli oʻchirildi",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Xotira muvaffaqiyatli yangilandi",
|
"Memory updated successfully": "Xotira muvaffaqiyatli yangilandi",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Javoblarni birlashtirish",
|
"Merge Responses": "Javoblarni birlashtirish",
|
||||||
@@ -1492,6 +1494,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1873,6 +1876,7 @@
|
|||||||
"Reply in Thread": "Mavzuda javob bering",
|
"Reply in Thread": "Mavzuda javob bering",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2378,7 +2382,6 @@
|
|||||||
"Upload Pipeline": "Quvur liniyasini yuklash",
|
"Upload Pipeline": "Quvur liniyasini yuklash",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Yuklash jarayoni",
|
"Upload Progress": "Yuklash jarayoni",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1274,6 +1274,7 @@
|
|||||||
"Jina API Key": "Khóa API Jina",
|
"Jina API Key": "Khóa API Jina",
|
||||||
"join our Discord for help.": "tham gia Discord của chúng tôi để được trợ giúp.",
|
"join our Discord for help.": "tham gia Discord của chúng tôi để được trợ giúp.",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "Xem trước JSON",
|
"JSON Preview": "Xem trước JSON",
|
||||||
"JSON Spec": "",
|
"JSON Spec": "",
|
||||||
"July": "Tháng 7",
|
"July": "Tháng 7",
|
||||||
@@ -1406,6 +1407,7 @@
|
|||||||
"Memory added successfully": "Memory đã được thêm thành công",
|
"Memory added successfully": "Memory đã được thêm thành công",
|
||||||
"Memory cleared successfully": "Memory đã bị xóa",
|
"Memory cleared successfully": "Memory đã bị xóa",
|
||||||
"Memory deleted successfully": "Memory đã bị loại bỏ",
|
"Memory deleted successfully": "Memory đã bị loại bỏ",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "Memory đã cập nhật thành công",
|
"Memory updated successfully": "Memory đã cập nhật thành công",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "Hợp nhất các phản hồi",
|
"Merge Responses": "Hợp nhất các phản hồi",
|
||||||
@@ -1485,6 +1487,7 @@
|
|||||||
"More Options": "",
|
"More Options": "",
|
||||||
"Move": "",
|
"Move": "",
|
||||||
"Moved {{name}}": "",
|
"Moved {{name}}": "",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "",
|
"Mute": "",
|
||||||
"Muted": "",
|
"Muted": "",
|
||||||
"My Terminal": "",
|
"My Terminal": "",
|
||||||
@@ -1864,6 +1867,7 @@
|
|||||||
"Reply in Thread": "Trả lời trong Luồng",
|
"Reply in Thread": "Trả lời trong Luồng",
|
||||||
"Reply to thread...": "",
|
"Reply to thread...": "",
|
||||||
"Replying to {{NAME}}": "",
|
"Replying to {{NAME}}": "",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "",
|
"required": "",
|
||||||
"Reranking Batch Size": "",
|
"Reranking Batch Size": "",
|
||||||
@@ -2367,7 +2371,6 @@
|
|||||||
"Upload Pipeline": "Tải lên Pipeline",
|
"Upload Pipeline": "Tải lên Pipeline",
|
||||||
"Upload profile image": "",
|
"Upload profile image": "",
|
||||||
"Upload Progress": "Tiến trình tải tệp lên hệ thống",
|
"Upload Progress": "Tiến trình tải tệp lên hệ thống",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
|
||||||
"Uploaded files or images": "",
|
"Uploaded files or images": "",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "",
|
"Uploading {{current}}/{{total}}: {{file}}": "",
|
||||||
"Uploading...": "",
|
"Uploading...": "",
|
||||||
|
|||||||
@@ -1274,6 +1274,7 @@
|
|||||||
"Jina API Key": "Jina 接口密钥",
|
"Jina API Key": "Jina 接口密钥",
|
||||||
"join our Discord for help.": "加入我们的 Discord 寻求帮助",
|
"join our Discord for help.": "加入我们的 Discord 寻求帮助",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON 预览",
|
"JSON Preview": "JSON 预览",
|
||||||
"JSON Spec": "以 JSON 格式定义的接口规范",
|
"JSON Spec": "以 JSON 格式定义的接口规范",
|
||||||
"July": "七月",
|
"July": "七月",
|
||||||
@@ -1406,6 +1407,7 @@
|
|||||||
"Memory added successfully": "记忆添加成功",
|
"Memory added successfully": "记忆添加成功",
|
||||||
"Memory cleared successfully": "记忆清除成功",
|
"Memory cleared successfully": "记忆清除成功",
|
||||||
"Memory deleted successfully": "记忆删除成功",
|
"Memory deleted successfully": "记忆删除成功",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "记忆更新成功",
|
"Memory updated successfully": "记忆更新成功",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "合并回答",
|
"Merge Responses": "合并回答",
|
||||||
@@ -1485,6 +1487,7 @@
|
|||||||
"More Options": "更多选项",
|
"More Options": "更多选项",
|
||||||
"Move": "移动",
|
"Move": "移动",
|
||||||
"Moved {{name}}": "移动“{{name}}”成功",
|
"Moved {{name}}": "移动“{{name}}”成功",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "静音",
|
"Mute": "静音",
|
||||||
"Muted": "已静音",
|
"Muted": "已静音",
|
||||||
"My Terminal": "我的终端",
|
"My Terminal": "我的终端",
|
||||||
@@ -1864,6 +1867,7 @@
|
|||||||
"Reply in Thread": "回复主题",
|
"Reply in Thread": "回复主题",
|
||||||
"Reply to thread...": "回复主题...",
|
"Reply to thread...": "回复主题...",
|
||||||
"Replying to {{NAME}}": "回复 {{NAME}}",
|
"Replying to {{NAME}}": "回复 {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "必填",
|
"required": "必填",
|
||||||
"Reranking Batch Size": "重排序批次大小",
|
"Reranking Batch Size": "重排序批次大小",
|
||||||
@@ -2367,7 +2371,6 @@
|
|||||||
"Upload Pipeline": "上传 Pipeline",
|
"Upload Pipeline": "上传 Pipeline",
|
||||||
"Upload profile image": "上传头像",
|
"Upload profile image": "上传头像",
|
||||||
"Upload Progress": "上传进度",
|
"Upload Progress": "上传进度",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "上传进度:{{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "上传的文件或图片",
|
"Uploaded files or images": "上传的文件或图片",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "正在上传 {{current}}/{{total}}:{{file}}",
|
"Uploading {{current}}/{{total}}: {{file}}": "正在上传 {{current}}/{{total}}:{{file}}",
|
||||||
"Uploading...": "正在上传中…",
|
"Uploading...": "正在上传中…",
|
||||||
|
|||||||
@@ -1274,6 +1274,7 @@
|
|||||||
"Jina API Key": "Jina API 金鑰",
|
"Jina API Key": "Jina API 金鑰",
|
||||||
"join our Discord for help.": "加入我們的 Discord 以取得協助。",
|
"join our Discord for help.": "加入我們的 Discord 以取得協助。",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
|
"JSON Base64": "",
|
||||||
"JSON Preview": "JSON 預覽",
|
"JSON Preview": "JSON 預覽",
|
||||||
"JSON Spec": "以 JSON 格式定義的介面規範",
|
"JSON Spec": "以 JSON 格式定義的介面規範",
|
||||||
"July": "7 月",
|
"July": "7 月",
|
||||||
@@ -1406,6 +1407,7 @@
|
|||||||
"Memory added successfully": "成功新增記憶",
|
"Memory added successfully": "成功新增記憶",
|
||||||
"Memory cleared successfully": "成功清除記憶",
|
"Memory cleared successfully": "成功清除記憶",
|
||||||
"Memory deleted successfully": "成功刪除記憶",
|
"Memory deleted successfully": "成功刪除記憶",
|
||||||
|
"Memory System Context": "",
|
||||||
"Memory updated successfully": "成功更新記憶",
|
"Memory updated successfully": "成功更新記憶",
|
||||||
"Merge Accounts by Email": "",
|
"Merge Accounts by Email": "",
|
||||||
"Merge Responses": "合併回應",
|
"Merge Responses": "合併回應",
|
||||||
@@ -1485,6 +1487,7 @@
|
|||||||
"More Options": "更多選項",
|
"More Options": "更多選項",
|
||||||
"Move": "移動",
|
"Move": "移動",
|
||||||
"Moved {{name}}": "已移動 {{name}}",
|
"Moved {{name}}": "已移動 {{name}}",
|
||||||
|
"Multipart Upload": "",
|
||||||
"Mute": "靜音",
|
"Mute": "靜音",
|
||||||
"Muted": "已靜音",
|
"Muted": "已靜音",
|
||||||
"My Terminal": "我的終端",
|
"My Terminal": "我的終端",
|
||||||
@@ -1864,6 +1867,7 @@
|
|||||||
"Reply in Thread": "在討論串中回覆",
|
"Reply in Thread": "在討論串中回覆",
|
||||||
"Reply to thread...": "回覆討論串...",
|
"Reply to thread...": "回覆討論串...",
|
||||||
"Replying to {{NAME}}": "回覆 {{NAME}}",
|
"Replying to {{NAME}}": "回覆 {{NAME}}",
|
||||||
|
"Request Format": "",
|
||||||
"Require users to confirm before using Web Search.": "",
|
"Require users to confirm before using Web Search.": "",
|
||||||
"required": "必填",
|
"required": "必填",
|
||||||
"Reranking Batch Size": "重排序批次大小",
|
"Reranking Batch Size": "重排序批次大小",
|
||||||
@@ -2367,7 +2371,6 @@
|
|||||||
"Upload Pipeline": "上傳管線",
|
"Upload Pipeline": "上傳管線",
|
||||||
"Upload profile image": "上傳頭像",
|
"Upload profile image": "上傳頭像",
|
||||||
"Upload Progress": "上傳進度",
|
"Upload Progress": "上傳進度",
|
||||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "上傳進度:{{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
|
|
||||||
"Uploaded files or images": "上傳的檔案或圖片",
|
"Uploaded files or images": "上傳的檔案或圖片",
|
||||||
"Uploading {{current}}/{{total}}: {{file}}": "正在上傳 {{current}}/{{total}}:{{file}}",
|
"Uploading {{current}}/{{total}}: {{file}}": "正在上傳 {{current}}/{{total}}:{{file}}",
|
||||||
"Uploading...": "上傳中…",
|
"Uploading...": "上傳中…",
|
||||||
|
|||||||
Reference in New Issue
Block a user