mirror of
https://github.com/open-webui/open-webui.git
synced 2025-04-03 09:28:38 +02:00
chore: format
This commit is contained in:
parent
f05dbb895e
commit
51e0ed454c
@ -5,7 +5,7 @@ type ChannelForm = {
|
||||
data?: object;
|
||||
meta?: object;
|
||||
access_control?: object;
|
||||
}
|
||||
};
|
||||
|
||||
export const createNewChannel = async (token: string = '', channel: ChannelForm) => {
|
||||
let error = null;
|
||||
@ -70,7 +70,6 @@ export const getChannels = async (token: string = '') => {
|
||||
return res;
|
||||
};
|
||||
|
||||
|
||||
export const getChannelById = async (token: string = '', channel_id: string) => {
|
||||
let error = null;
|
||||
|
||||
@ -100,9 +99,13 @@ export const getChannelById = async (token: string = '', channel_id: string) =>
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
};
|
||||
|
||||
export const updateChannelById = async (token: string = '', channel_id: string, channel: ChannelForm) => {
|
||||
export const updateChannelById = async (
|
||||
token: string = '',
|
||||
channel_id: string,
|
||||
channel: ChannelForm
|
||||
) => {
|
||||
let error = null;
|
||||
|
||||
const res = await fetch(`${WEBUI_API_BASE_URL}/channels/${channel_id}/update`, {
|
||||
@ -132,7 +135,7 @@ export const updateChannelById = async (token: string = '', channel_id: string,
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
};
|
||||
|
||||
export const deleteChannelById = async (token: string = '', channel_id: string) => {
|
||||
let error = null;
|
||||
@ -163,20 +166,27 @@ export const deleteChannelById = async (token: string = '', channel_id: string)
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
export const getChannelMessages = async (token: string = '', channel_id: string, skip: number = 0, limit: number = 50) => {
|
||||
export const getChannelMessages = async (
|
||||
token: string = '',
|
||||
channel_id: string,
|
||||
skip: number = 0,
|
||||
limit: number = 50
|
||||
) => {
|
||||
let error = null;
|
||||
|
||||
const res = await fetch(`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages?skip=${skip}&limit=${limit}`, {
|
||||
method: 'GET',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
authorization: `Bearer ${token}`
|
||||
const res = await fetch(
|
||||
`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages?skip=${skip}&limit=${limit}`,
|
||||
{
|
||||
method: 'GET',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
authorization: `Bearer ${token}`
|
||||
}
|
||||
}
|
||||
})
|
||||
)
|
||||
.then(async (res) => {
|
||||
if (!res.ok) throw await res.json();
|
||||
return res.json();
|
||||
@ -195,14 +205,13 @@ export const getChannelMessages = async (token: string = '', channel_id: string,
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
};
|
||||
|
||||
type MessageForm = {
|
||||
content: string;
|
||||
data?: object;
|
||||
meta?: object;
|
||||
|
||||
}
|
||||
meta?: object;
|
||||
};
|
||||
|
||||
export const sendMessage = async (token: string = '', channel_id: string, message: MessageForm) => {
|
||||
let error = null;
|
||||
@ -234,20 +243,28 @@ export const sendMessage = async (token: string = '', channel_id: string, messag
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
};
|
||||
|
||||
export const updateMessage = async (token: string = '', channel_id: string, message_id: string, message: MessageForm) => {
|
||||
export const updateMessage = async (
|
||||
token: string = '',
|
||||
channel_id: string,
|
||||
message_id: string,
|
||||
message: MessageForm
|
||||
) => {
|
||||
let error = null;
|
||||
|
||||
const res = await fetch(`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages/${message_id}/update`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
authorization: `Bearer ${token}`
|
||||
},
|
||||
body: JSON.stringify({ ...message })
|
||||
})
|
||||
const res = await fetch(
|
||||
`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages/${message_id}/update`,
|
||||
{
|
||||
method: 'POST',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
authorization: `Bearer ${token}`
|
||||
},
|
||||
body: JSON.stringify({ ...message })
|
||||
}
|
||||
)
|
||||
.then(async (res) => {
|
||||
if (!res.ok) throw await res.json();
|
||||
return res.json();
|
||||
@ -266,19 +283,22 @@ export const updateMessage = async (token: string = '', channel_id: string, mess
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
};
|
||||
|
||||
export const deleteMessage = async (token: string = '', channel_id: string, message_id: string) => {
|
||||
let error = null;
|
||||
|
||||
const res = await fetch(`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages/${message_id}/delete`, {
|
||||
method: 'DELETE',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
authorization: `Bearer ${token}`
|
||||
const res = await fetch(
|
||||
`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages/${message_id}/delete`,
|
||||
{
|
||||
method: 'DELETE',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
authorization: `Bearer ${token}`
|
||||
}
|
||||
}
|
||||
})
|
||||
)
|
||||
.then(async (res) => {
|
||||
if (!res.ok) throw await res.json();
|
||||
return res.json();
|
||||
@ -297,4 +317,4 @@ export const deleteMessage = async (token: string = '', channel_id: string, mess
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
};
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "التعليمات المتقدمة",
|
||||
"Advanced Params": "المعلمات المتقدمة",
|
||||
"All chats": "",
|
||||
"All Documents": "جميع الملفات",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "أرشفة جميع الدردشات",
|
||||
"Archived Chats": "الأرشيف المحادثات",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "هل أنت متأكد ؟",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "قبل",
|
||||
"Being lazy": "كون كسول",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "تغير الباسورد",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "إنشاء نموذج",
|
||||
"Create Account": "إنشاء حساب",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "عمل مفتاح جديد",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "أحذف هذا الرابط",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "تعديل",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "الأسم",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "دردشة جديدة",
|
||||
"New folder": "",
|
||||
"New Password": "كلمة المرور الجديدة",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "Разширени Параметри",
|
||||
"Advanced Params": "Разширени параметри",
|
||||
"All chats": "",
|
||||
"All Documents": "Всички Документи",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Архив Всички чатове",
|
||||
"Archived Chats": "Архивирани Чатове",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Сигурни ли сте?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "преди",
|
||||
"Being lazy": "Да бъдеш мързелив",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Смел ключ за API за търсене",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Промяна на Парола",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Създаване на модел",
|
||||
"Create Account": "Създаване на Акаунт",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Създаване на нов ключ",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "Изтриване на този линк",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Редактиране",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Име",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Нов чат",
|
||||
"New folder": "",
|
||||
"New Password": "Нова парола",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "এডভান্সড প্যারামিটার্স",
|
||||
"Advanced Params": "অ্যাডভান্সড প্যারাম",
|
||||
"All chats": "",
|
||||
"All Documents": "সব ডকুমেন্ট",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "আর্কাইভ করুন সকল চ্যাট",
|
||||
"Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "আপনি নিশ্চিত?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "পূর্ববর্তী",
|
||||
"Being lazy": "অলস হওয়া",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "পাসওয়ার্ড পরিবর্তন করুন",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "একটি মডেল তৈরি করুন",
|
||||
"Create Account": "একাউন্ট তৈরি করুন",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "একটি নতুন কী তৈরি করুন",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "এই লিংক মুছে ফেলুন",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "এডিট করুন",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "নাম",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "নতুন চ্যাট",
|
||||
"New folder": "",
|
||||
"New Password": "নতুন পাসওয়ার্ড",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Els administradors tenen accés a totes les eines en tot moment; els usuaris necessiten eines assignades per model a l'espai de treball.",
|
||||
"Advanced Parameters": "Paràmetres avançats",
|
||||
"Advanced Params": "Paràmetres avançats",
|
||||
"All chats": "Tots els xats",
|
||||
"All Documents": "Tots els documents",
|
||||
"All models deleted successfully": "Tots els models s'han eliminat correctament",
|
||||
"Allow Chat Delete": "Permetre eliminar el xat",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arxiva tots els xats",
|
||||
"Archived Chats": "Xats arxivats",
|
||||
"archived-chat-export": "archived-chat-export",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Estàs segur que vols desarxivar tots els xats arxivats?",
|
||||
"Are you sure?": "Estàs segur?",
|
||||
"Arena Models": "Models de l'Arena",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Mida del lot (num_batch)",
|
||||
"before": "abans",
|
||||
"Being lazy": "Essent mandrós",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Punt de connexió a Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clau de subscripció a Bing Search V7",
|
||||
"Brave Search API Key": "Clau API de Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "Captura",
|
||||
"Certificate Path": "Camí del certificat",
|
||||
"Change Password": "Canviar la contrasenya",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Personatge",
|
||||
"Character limit for autocomplete generation input": "Límit de caràcters per a l'entrada de generació automàtica",
|
||||
"Chart new frontiers": "Traça noves fronteres",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Crear un model",
|
||||
"Create Account": "Crear un compte",
|
||||
"Create Admin Account": "Crear un compte d'Administrador",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Crear grup",
|
||||
"Create Knowledge": "Crear Coneixement",
|
||||
"Create new key": "Crear una nova clau",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Eliminar el xat?",
|
||||
"Delete folder?": "Eliminar la carpeta?",
|
||||
"Delete function?": "Eliminar funció?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Eliminar indicació?",
|
||||
"delete this link": "Eliminar aquest enllaç",
|
||||
"Delete tool?": "Eliminar eina?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions",
|
||||
"Edit": "Editar",
|
||||
"Edit Arena Model": "Editar model de l'Arena",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Editar la connexió",
|
||||
"Edit Default Permissions": "Editar el permisos per defecte",
|
||||
"Edit Memory": "Editar la memòria",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nom",
|
||||
"Name your knowledge base": "Anomena la teva base de coneixement",
|
||||
"New Chat": "Nou xat",
|
||||
"New folder": "Nova carpeta",
|
||||
"New Password": "Nova contrasenya",
|
||||
"new-channel": "",
|
||||
"No content found": "No s'ha trobat contingut",
|
||||
"No content to speak": "No hi ha contingut per parlar",
|
||||
"No distance available": "No hi ha distància disponible",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "advanced settings",
|
||||
"Advanced Params": "",
|
||||
"All chats": "",
|
||||
"All Documents": "",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "pagrekord sa chat",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Sigurado ka ?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "",
|
||||
"Being lazy": "",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Usba ang password",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "",
|
||||
"Create Account": "Paghimo og account",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Ngalan",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Bag-ong diskusyon",
|
||||
"New folder": "",
|
||||
"New Password": "Bag-ong Password",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administrátoři mají přístup ke všem nástrojům kdykoliv; uživatelé potřebují mít nástroje přiřazené podle modelu ve workspace.",
|
||||
"Advanced Parameters": "Pokročilé parametry",
|
||||
"Advanced Params": "Pokročilé parametry",
|
||||
"All chats": "Všechny chaty",
|
||||
"All Documents": "Všechny dokumenty",
|
||||
"All models deleted successfully": "Všechny modely úspěšně odstráněny",
|
||||
"Allow Chat Delete": "Povolit odstranění chatu",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Archivovat všechny chaty",
|
||||
"Archived Chats": "Archivované chaty",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Jste si jistý?",
|
||||
"Arena Models": "Arena modely",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Batch size (num_batch)",
|
||||
"before": "před",
|
||||
"Being lazy": "",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Klíč API pro Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Změnit heslo",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Znak",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Vytvořte model",
|
||||
"Create Account": "Vytvořit účet",
|
||||
"Create Admin Account": "Vytvořit admin účet",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Vytvořit skupinu",
|
||||
"Create Knowledge": "Vytvořit knowledge",
|
||||
"Create new key": "Vytvořit nový klíč",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Smazat konverzaci?",
|
||||
"Delete folder?": "Smazat složku?",
|
||||
"Delete function?": "Funkce pro odstranění?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Smazat prompt?",
|
||||
"delete this link": "smazat tento odkaz",
|
||||
"Delete tool?": "Odstranit nástroj?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Upravit",
|
||||
"Edit Arena Model": "Upravit Arena Model",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Upravit paměť",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Jméno",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Nový chat",
|
||||
"New folder": "Nová složka",
|
||||
"New Password": "Nové heslo",
|
||||
"new-channel": "",
|
||||
"No content found": "Nebyly nalezeny žádné obsahové informace.",
|
||||
"No content to speak": "Žádný obsah k diskusi.",
|
||||
"No distance available": "Není dostupná žádná vzdálenost",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorer har adgang til alle værktøjer altid; brugere skal tilføjes værktøjer pr. model i hvert workspace.",
|
||||
"Advanced Parameters": "Advancerede indstillinger",
|
||||
"Advanced Params": "Advancerede indstillinger",
|
||||
"All chats": "",
|
||||
"All Documents": "Alle dokumenter",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arkiver alle chats",
|
||||
"Archived Chats": "Arkiverede chats",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Er du sikker?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Batch størrelse (num_batch)",
|
||||
"before": "før",
|
||||
"Being lazy": "At være doven",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Brave Search API nøgle",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Skift password",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Lav en model",
|
||||
"Create Account": "Opret profil",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "Opret Viden",
|
||||
"Create new key": "Opret en ny nøgle",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Slet chat?",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "Slet funktion?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Slet prompt?",
|
||||
"delete this link": "slet dette link",
|
||||
"Delete tool?": "Slet værktøj?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Rediger",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Rediger hukommelse",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Navn",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Ny chat",
|
||||
"New folder": "",
|
||||
"New Password": "Ny adgangskode",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "Intet indhold at tale",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratoren haben jederzeit Zugriff auf alle Werkzeuge. Benutzer können im Arbeitsbereich zugewiesen.",
|
||||
"Advanced Parameters": "Erweiterte Parameter",
|
||||
"Advanced Params": "Erweiterte Parameter",
|
||||
"All chats": "Alle Unterhaltungen",
|
||||
"All Documents": "Alle Dokumente",
|
||||
"All models deleted successfully": "Alle Modelle erfolgreich gelöscht",
|
||||
"Allow Chat Delete": "Löschen von Unterhaltungen erlauben",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Alle Unterhaltungen archivieren",
|
||||
"Archived Chats": "Archivierte Unterhaltungen",
|
||||
"archived-chat-export": "archivierter-chat-export",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Sind Sie sicher, dass Sie alle archivierten Unterhaltungen wiederherstellen möchten?",
|
||||
"Are you sure?": "Sind Sie sicher?",
|
||||
"Arena Models": "Arena-Modelle",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Stapelgröße (num_batch)",
|
||||
"before": "bereits geteilt",
|
||||
"Being lazy": "Faulheit",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7-Endpunkt",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7-Abonnement-Schlüssel",
|
||||
"Brave Search API Key": "Brave Search API-Schlüssel",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "Zertifikatpfad",
|
||||
"Change Password": "Passwort ändern",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Zeichen",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "Neue Wege beschreiten",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Modell erstellen",
|
||||
"Create Account": "Konto erstellen",
|
||||
"Create Admin Account": "Administrator-Account erstellen",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Gruppe erstellen",
|
||||
"Create Knowledge": "Wissen erstellen",
|
||||
"Create new key": "Neuen Schlüssel erstellen",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Unterhaltung löschen?",
|
||||
"Delete folder?": "Ordner löschen?",
|
||||
"Delete function?": "Funktion löschen?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Prompt löschen?",
|
||||
"delete this link": "diesen Link löschen",
|
||||
"Delete tool?": "Werkzeug löschen?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen",
|
||||
"Edit": "Bearbeiten",
|
||||
"Edit Arena Model": "Arena-Modell bearbeiten",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Verbindung bearbeiten",
|
||||
"Edit Default Permissions": "Standardberechtigungen bearbeiten",
|
||||
"Edit Memory": "Erinnerungen bearbeiten",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Name",
|
||||
"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
|
||||
"New Chat": "Neue Unterhaltung",
|
||||
"New folder": "Neuer Ordner",
|
||||
"New Password": "Neues Passwort",
|
||||
"new-channel": "",
|
||||
"No content found": "Kein Inhalt gefunden",
|
||||
"No content to speak": "Kein Inhalt zum Vorlesen",
|
||||
"No distance available": "Keine Distanz verfügbar",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "Advanced Parameters",
|
||||
"Advanced Params": "",
|
||||
"All chats": "",
|
||||
"All Documents": "",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Such certainty?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "",
|
||||
"Being lazy": "",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Change Password",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "",
|
||||
"Create Account": "Create Account",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Name",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "New Bark",
|
||||
"New folder": "",
|
||||
"New Password": "New Barkword",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Οι διαχειριστές έχουν πρόσβαση σε όλα τα εργαλεία ανά πάσα στιγμή· οι χρήστες χρειάζονται εργαλεία ανά μοντέλο στον χώρο εργασίας.",
|
||||
"Advanced Parameters": "Προηγμένοι Παράμετροι",
|
||||
"Advanced Params": "Προηγμένα Παράμετροι",
|
||||
"All chats": "Όλες οι συνομιλίες",
|
||||
"All Documents": "Όλα τα Έγγραφα",
|
||||
"All models deleted successfully": "Όλα τα μοντέλα διαγράφηκαν με επιτυχία",
|
||||
"Allow Chat Delete": "Επιτρέπεται η διαγραφή συνομιλίας",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Αρχειοθέτηση Όλων των Συνομιλιών",
|
||||
"Archived Chats": "Αρχειοθετημένες Συνομιλίες",
|
||||
"archived-chat-export": "εξαγωγή-αρχείου-συνομιλίας",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Είστε σίγουροι ότι θέλετε να απο-αρχειοθετήσετε όλες τις αρχειοθετημένες συνομιλίες;",
|
||||
"Are you sure?": "Είστε σίγουροι;",
|
||||
"Arena Models": "Μοντέλα Arena",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Μέγεθος Παρτίδας (num_batch)",
|
||||
"before": "πριν",
|
||||
"Being lazy": "Τρώλακας",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Τέλος Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Κλειδί Συνδρομής Bing Search V7",
|
||||
"Brave Search API Key": "Κλειδί API Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "Διαδρομή Πιστοποιητικού",
|
||||
"Change Password": "Αλλαγή Κωδικού",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Χαρακτήρας",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "Σχεδιάστε νέους ορίζοντες",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Δημιουργία μοντέλου",
|
||||
"Create Account": "Δημιουργία Λογαριασμού",
|
||||
"Create Admin Account": "Δημιουργία Λογαριασμού Διαχειριστή",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Δημιουργία Ομάδας",
|
||||
"Create Knowledge": "Δημιουργία Γνώσης",
|
||||
"Create new key": "Δημιουργία νέου κλειδιού",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Διαγραφή συνομιλίας;",
|
||||
"Delete folder?": "Διαγραφή φακέλου;",
|
||||
"Delete function?": "Διαγραφή λειτουργίας;",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Διαγραφή προτροπής;",
|
||||
"delete this link": "διαγραφή αυτού του συνδέσμου",
|
||||
"Delete tool?": "Διαγραφή εργαλείου;",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών",
|
||||
"Edit": "Επεξεργασία",
|
||||
"Edit Arena Model": "Επεξεργασία Μοντέλου Arena",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Επεξεργασία Σύνδεσης",
|
||||
"Edit Default Permissions": "Επεξεργασία Προεπιλεγμένων Δικαιωμάτων",
|
||||
"Edit Memory": "Επεξεργασία Μνήμης",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Όνομα",
|
||||
"Name your knowledge base": "Ονομάστε τη βάση γνώσης σας",
|
||||
"New Chat": "Νέα Συνομιλία",
|
||||
"New folder": "Νέος φάκελος",
|
||||
"New Password": "Νέος Κωδικός",
|
||||
"new-channel": "",
|
||||
"No content found": "Δεν βρέθηκε περιεχόμενο",
|
||||
"No content to speak": "Δεν υπάρχει περιεχόμενο για ανάγνωση",
|
||||
"No distance available": "Δεν υπάρχει διαθέσιμη απόσταση",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "",
|
||||
"Advanced Params": "",
|
||||
"All chats": "",
|
||||
"All Documents": "",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "",
|
||||
"Being lazy": "",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "",
|
||||
"Create Account": "",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "",
|
||||
"New folder": "",
|
||||
"New Password": "",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "",
|
||||
"Advanced Params": "",
|
||||
"All chats": "",
|
||||
"All Documents": "",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "",
|
||||
"Being lazy": "",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "",
|
||||
"Create Account": "",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "",
|
||||
"New folder": "",
|
||||
"New Password": "",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Admins tienen acceso a todas las herramientas en todo momento; los usuarios necesitan herramientas asignadas por modelo en el espacio de trabajo.",
|
||||
"Advanced Parameters": "Parámetros Avanzados",
|
||||
"Advanced Params": "Parámetros avanzados",
|
||||
"All chats": "",
|
||||
"All Documents": "Todos los Documentos",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Archivar todos los chats",
|
||||
"Archived Chats": "Chats archivados",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "¿Está seguro?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Tamaño del Batch (num_batch)",
|
||||
"before": "antes",
|
||||
"Being lazy": "Ser perezoso",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Clave de API de Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Cambia la Contraseña",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Crear un modelo",
|
||||
"Create Account": "Crear una cuenta",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "Crear Conocimiento",
|
||||
"Create new key": "Crear una nueva clave",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Borrar el chat?",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "Borrar la función?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Borrar el prompt?",
|
||||
"delete this link": "Borrar este enlace",
|
||||
"Delete tool?": "Borrar la herramienta",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Editar",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Editar Memoria",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nombre",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Nuevo Chat",
|
||||
"New folder": "",
|
||||
"New Password": "Nueva Contraseña",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "No hay contenido para hablar",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratzaileek tresna guztietarako sarbidea dute beti; erabiltzaileek lan-eremuan eredu bakoitzeko esleituak behar dituzte tresnak.",
|
||||
"Advanced Parameters": "Parametro Aurreratuak",
|
||||
"Advanced Params": "Parametro Aurreratuak",
|
||||
"All chats": "Txat guztiak",
|
||||
"All Documents": "Dokumentu Guztiak",
|
||||
"All models deleted successfully": "Eredu guztiak ongi ezabatu dira",
|
||||
"Allow Chat Delete": "Baimendu Txata Ezabatzea",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Artxibatu Txat Guztiak",
|
||||
"Archived Chats": "Artxibatutako Txatak",
|
||||
"archived-chat-export": "artxibatutako-txat-esportazioa",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Ziur zaude artxibatutako txat guztiak desartxibatu nahi dituzula?",
|
||||
"Are you sure?": "Ziur zaude?",
|
||||
"Arena Models": "Arena Ereduak",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Batch Tamaina (num_batch)",
|
||||
"before": "aurretik",
|
||||
"Being lazy": "Alferra izatea",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing Bilaketa V7 Endpointua",
|
||||
"Bing Search V7 Subscription Key": "Bing Bilaketa V7 Harpidetza Gakoa",
|
||||
"Brave Search API Key": "Brave Bilaketa API Gakoa",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "Ziurtagiriaren Bidea",
|
||||
"Change Password": "Aldatu Pasahitza",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Karakterea",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "Esploratu muga berriak",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Sortu eredu bat",
|
||||
"Create Account": "Sortu Kontua",
|
||||
"Create Admin Account": "Sortu Administratzaile Kontua",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Sortu Taldea",
|
||||
"Create Knowledge": "Sortu Ezagutza",
|
||||
"Create new key": "Sortu gako berria",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Ezabatu txata?",
|
||||
"Delete folder?": "Ezabatu karpeta?",
|
||||
"Delete function?": "Ezabatu funtzioa?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Ezabatu prompta?",
|
||||
"delete this link": "ezabatu esteka hau",
|
||||
"Delete tool?": "Ezabatu tresna?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak",
|
||||
"Edit": "Editatu",
|
||||
"Edit Arena Model": "Editatu Arena Eredua",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Editatu Konexioa",
|
||||
"Edit Default Permissions": "Editatu Baimen Lehenetsiak",
|
||||
"Edit Memory": "Editatu Memoria",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Izena",
|
||||
"Name your knowledge base": "Izendatu zure ezagutza-basea",
|
||||
"New Chat": "Txat berria",
|
||||
"New folder": "Karpeta berria",
|
||||
"New Password": "Pasahitz berria",
|
||||
"new-channel": "",
|
||||
"No content found": "Ez da edukirik aurkitu",
|
||||
"No content to speak": "Ez dago hitz egiteko edukirik",
|
||||
"No distance available": "Ez dago distantziarik eskuragarri",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "پارامترهای پیشرفته",
|
||||
"Advanced Params": "پارام\u200cهای پیشرفته",
|
||||
"All chats": "همهٔ گفتگوها",
|
||||
"All Documents": "همهٔ سند\u200cها",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "بایگانی همه گفتگوها",
|
||||
"Archived Chats": "گفتگوهای بایگانی\u200cشده",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "مطمئنید؟",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "قبل",
|
||||
"Being lazy": "حالت سازنده",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "کلید API جستجوی شجاع",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "تغییر رمز عبور",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "ایجاد یک مدل",
|
||||
"Create Account": "ساخت حساب کاربری",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "ساخت کلید جدید",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "حذف این لینک",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "ویرایش",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "نام",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "گپ جدید",
|
||||
"New folder": "",
|
||||
"New Password": "رمز عبور جدید",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Ylläpitäjillä on pääsy kaikkiin työkaluihin koko ajan; käyttäjät tarvitsevat työkaluja mallille määritettynä työtilassa.",
|
||||
"Advanced Parameters": "Edistyneet parametrit",
|
||||
"Advanced Params": "Edistyneet parametrit",
|
||||
"All chats": "Kaikki keskustelut",
|
||||
"All Documents": "Kaikki asiakirjat",
|
||||
"All models deleted successfully": "Kaikki mallit poistettu onnistuneesti",
|
||||
"Allow Chat Delete": "Salli keskustelujen poisto",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arkistoi kaikki keskustelut",
|
||||
"Archived Chats": "Arkistoidut keskustelut",
|
||||
"archived-chat-export": "arkistoitu-keskustelu-vienti",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Haluatko varmasti purkaa kaikkien arkistoitujen keskustelujen arkistoinnin?",
|
||||
"Are you sure?": "Oletko varma?",
|
||||
"Arena Models": "Arena-mallit",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Erän koko (num_batch)",
|
||||
"before": "ennen",
|
||||
"Being lazy": "Oli laiska",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 -päätepisteen osoite",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 -tilauskäyttäjäavain",
|
||||
"Brave Search API Key": "Brave Search API -avain",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "Varmennepolku",
|
||||
"Change Password": "Vaihda salasana",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Hahmo",
|
||||
"Character limit for autocomplete generation input": "Automaattisen täydennyksen syötteen merkkiraja",
|
||||
"Chart new frontiers": "Kartoita uusia rajapintoja",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Luo malli",
|
||||
"Create Account": "Luo tili",
|
||||
"Create Admin Account": "Luo ylläpitäjätili",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Luo ryhmä",
|
||||
"Create Knowledge": "Luo tietoa",
|
||||
"Create new key": "Luo uusi avain",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Haluatko varmasti poistaa tämän keskustelun?",
|
||||
"Delete folder?": "Haluatko varmasti poistaa tämän kansion?",
|
||||
"Delete function?": "Haluatko varmasti poistaa tämän toiminnon?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Haluatko varmasti poistaa tämän kehotteen?",
|
||||
"delete this link": "poista tämä linkki",
|
||||
"Delete tool?": "Haluatko varmasti poistaa tämän työkalun?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen",
|
||||
"Edit": "Muokkaa",
|
||||
"Edit Arena Model": "Muokkaa Arena-mallia",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Muokkaa yhteyttä",
|
||||
"Edit Default Permissions": "Muokkaa oletuskäyttöoikeuksia",
|
||||
"Edit Memory": "Muokkaa muistia",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nimi",
|
||||
"Name your knowledge base": "Anna tietokannalle nimi",
|
||||
"New Chat": "Uusi keskustelu",
|
||||
"New folder": "Uusi kansio",
|
||||
"New Password": "Uusi salasana",
|
||||
"new-channel": "",
|
||||
"No content found": "Sisältöä ei löytynyt",
|
||||
"No content to speak": "Ei puhuttavaa sisältöä",
|
||||
"No distance available": "Etäisyyttä ei saatavilla",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Les administrateurs ont accès à tous les outils en tout temps ; les utilisateurs ont besoin d'outils affectés par modèle dans l'espace de travail.",
|
||||
"Advanced Parameters": "Paramètres avancés",
|
||||
"Advanced Params": "Paramètres avancés",
|
||||
"All chats": "",
|
||||
"All Documents": "Tous les documents",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Archiver toutes les conversations",
|
||||
"Archived Chats": "Conversations archivées",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Êtes-vous certain ?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Taille du lot (num_batch)",
|
||||
"before": "avant",
|
||||
"Being lazy": "Être fainéant",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Clé API Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Changer le mot de passe",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Créer un modèle",
|
||||
"Create Account": "Créer un compte",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Créer une nouvelle clé principale",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Supprimer la conversation ?",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "Supprimer la fonction ?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Supprimer la prompt ?",
|
||||
"delete this link": "supprimer ce lien",
|
||||
"Delete tool?": "Effacer l'outil ?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Modifier",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Modifier la mémoire",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nom",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Nouvelle conversation",
|
||||
"New folder": "",
|
||||
"New Password": "Nouveau mot de passe",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "Rien à signaler",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Les administrateurs ont accès à tous les outils en permanence ; les utilisateurs doivent se voir attribuer des outils pour chaque modèle dans l’espace de travail.",
|
||||
"Advanced Parameters": "Paramètres avancés",
|
||||
"Advanced Params": "Paramètres avancés",
|
||||
"All chats": "Toutes les conversations",
|
||||
"All Documents": "Tous les documents",
|
||||
"All models deleted successfully": "Tous les modèles ont été supprimés avec succès",
|
||||
"Allow Chat Delete": "Autoriser la suppression de la conversation",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Archiver toutes les conversations",
|
||||
"Archived Chats": "Conversations archivées",
|
||||
"archived-chat-export": "exportation de conversation archivée",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Êtes-vous sûr de vouloir désarchiver toutes les conversations archivées?",
|
||||
"Are you sure?": "Êtes-vous certain ?",
|
||||
"Arena Models": "Modèles d'arène",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Batch Size (num_batch)",
|
||||
"before": "avant",
|
||||
"Being lazy": "Être fainéant",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Point de terminaison Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clé d'abonnement Bing Search V7",
|
||||
"Brave Search API Key": "Clé API Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "Chemin du certificat",
|
||||
"Change Password": "Changer le mot de passe",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Caractère",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "Tracer de nouvelles frontières",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Créer un modèle",
|
||||
"Create Account": "Créer un compte",
|
||||
"Create Admin Account": "Créer un compte administrateur",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Créer un groupe",
|
||||
"Create Knowledge": "Créer une connaissance",
|
||||
"Create new key": "Créer une nouvelle clé",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Supprimer la conversation ?",
|
||||
"Delete folder?": "Supprimer le dossier ?",
|
||||
"Delete function?": "Supprimer la fonction ?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Supprimer le prompt ?",
|
||||
"delete this link": "supprimer ce lien",
|
||||
"Delete tool?": "Effacer l'outil ?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
|
||||
"Edit": "Modifier",
|
||||
"Edit Arena Model": "Modifier le modèle d'arène",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Modifier la connexion",
|
||||
"Edit Default Permissions": "Modifier les autorisations par défaut",
|
||||
"Edit Memory": "Modifier la mémoire",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nom d'utilisateur",
|
||||
"Name your knowledge base": "Nommez votre base de connaissances",
|
||||
"New Chat": "Nouvelle conversation",
|
||||
"New folder": "Nouveau dossier",
|
||||
"New Password": "Nouveau mot de passe",
|
||||
"new-channel": "",
|
||||
"No content found": "Aucun contenu trouvé",
|
||||
"No content to speak": "Rien à signaler",
|
||||
"No distance available": "Aucune distance disponible",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "פרמטרים מתקדמים",
|
||||
"Advanced Params": "פרמטרים מתקדמים",
|
||||
"All chats": "",
|
||||
"All Documents": "כל המסמכים",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "אחסן בארכיון את כל הצ'אטים",
|
||||
"Archived Chats": "צ'אטים מאורכבים",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "האם אתה בטוח?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "לפני",
|
||||
"Being lazy": "להיות עצלן",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "מפתח API של חיפוש אמיץ",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "שנה סיסמה",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "יצירת מודל",
|
||||
"Create Account": "צור חשבון",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "צור מפתח חדש",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "מחק את הקישור הזה",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "ערוך",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "שם",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "צ'אט חדש",
|
||||
"New folder": "",
|
||||
"New Password": "סיסמה חדשה",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "उन्नत पैरामीटर",
|
||||
"Advanced Params": "उन्नत परम",
|
||||
"All chats": "",
|
||||
"All Documents": "सभी डॉक्यूमेंट्स",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "सभी चैट संग्रहीत करें",
|
||||
"Archived Chats": "संग्रहीत चैट",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "क्या आपको यकीन है?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "पहले",
|
||||
"Being lazy": "आलसी होना",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "पासवर्ड बदलें",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "एक मॉडल बनाएं",
|
||||
"Create Account": "खाता बनाएं",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "नया क्रिप्टोग्राफिक क्षेत्र बनाएं",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "इस लिंक को हटाएं",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "संपादित करें",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "नाम",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "नई चैट",
|
||||
"New folder": "",
|
||||
"New Password": "नया पासवर्ड",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "Napredni parametri",
|
||||
"Advanced Params": "Napredni parametri",
|
||||
"All chats": "",
|
||||
"All Documents": "Svi dokumenti",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arhivirajte sve razgovore",
|
||||
"Archived Chats": "Arhivirani razgovori",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Jeste li sigurni?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "prije",
|
||||
"Being lazy": "Biti lijen",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Brave tražilica - API ključ",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Promijeni lozinku",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Izradite model",
|
||||
"Create Account": "Stvori račun",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Stvori novi ključ",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "izbriši ovu vezu",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Uredi",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Ime",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Novi razgovor",
|
||||
"New folder": "",
|
||||
"New Password": "Nova lozinka",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Az adminok mindig hozzáférnek minden eszközhöz; a felhasználóknak modellenként kell eszközöket hozzárendelni a munkaterületen.",
|
||||
"Advanced Parameters": "Haladó paraméterek",
|
||||
"Advanced Params": "Haladó paraméterek",
|
||||
"All chats": "Minden beszélgetés",
|
||||
"All Documents": "Minden dokumentum",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Minden beszélgetés archiválása",
|
||||
"Archived Chats": "Archivált beszélgetések",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Biztos vagy benne?",
|
||||
"Arena Models": "Arena modellek",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Köteg méret (num_batch)",
|
||||
"before": "előtt",
|
||||
"Being lazy": "Lustaság",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Brave Search API kulcs",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Jelszó módosítása",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Karakter",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Modell létrehozása",
|
||||
"Create Account": "Fiók létrehozása",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "Tudás létrehozása",
|
||||
"Create new key": "Új kulcs létrehozása",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Törli a beszélgetést?",
|
||||
"Delete folder?": "Törli a mappát?",
|
||||
"Delete function?": "Törli a funkciót?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Törli a promptot?",
|
||||
"delete this link": "link törlése",
|
||||
"Delete tool?": "Törli az eszközt?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Szerkesztés",
|
||||
"Edit Arena Model": "Arena modell szerkesztése",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Memória szerkesztése",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Név",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Új beszélgetés",
|
||||
"New folder": "Új mappa",
|
||||
"New Password": "Új jelszó",
|
||||
"new-channel": "",
|
||||
"No content found": "Nem található tartalom",
|
||||
"No content to speak": "Nincs felolvasható tartalom",
|
||||
"No distance available": "Nincs elérhető távolság",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Admin memiliki akses ke semua alat setiap saat; pengguna memerlukan alat yang ditetapkan per model di ruang kerja.",
|
||||
"Advanced Parameters": "Parameter Lanjutan",
|
||||
"Advanced Params": "Parameter Lanjutan",
|
||||
"All chats": "",
|
||||
"All Documents": "Semua Dokumen",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arsipkan Semua Obrolan",
|
||||
"Archived Chats": "Obrolan yang Diarsipkan",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Apakah Anda yakin?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Ukuran Batch (num_batch)",
|
||||
"before": "sebelum",
|
||||
"Being lazy": "Menjadi malas",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Kunci API Pencarian Berani",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Ubah Kata Sandi",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Buat model",
|
||||
"Create Account": "Buat Akun",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Buat kunci baru",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Menghapus obrolan?",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "Fungsi hapus?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Perintah hapus?",
|
||||
"delete this link": "hapus tautan ini",
|
||||
"Delete tool?": "Hapus alat?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Edit",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Edit Memori",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nama",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Obrolan Baru",
|
||||
"New folder": "",
|
||||
"New Password": "Kata Sandi Baru",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "Tidak ada konten untuk dibicarakan",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Tá rochtain ag riarthóirí ar gach uirlis i gcónaí; teastaíonn uirlisí sannta in aghaidh an tsamhail sa spás oibre ó úsáideoirí.",
|
||||
"Advanced Parameters": "Paraiméadair Casta",
|
||||
"Advanced Params": "Paraiméid Casta",
|
||||
"All chats": "Gach comhrá",
|
||||
"All Documents": "Gach Doiciméad",
|
||||
"All models deleted successfully": "Scriosadh na samhlacha go léir go rathúil",
|
||||
"Allow Chat Delete": "Ceadaigh Comhrá a Scriosadh",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Cartlann Gach Comhrá",
|
||||
"Archived Chats": "Comhráite Cartlann",
|
||||
"archived-chat-export": "gcartlann-comhrá-onnmhairiú",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "An bhfuil tú cinnte gur mhaith leat gach comhrá cartlainne a dhíchartlannú?",
|
||||
"Are you sure?": "An bhfuil tú cinnte?",
|
||||
"Arena Models": "Múnlaí Airéine",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Méid Baisc (num_batch)",
|
||||
"before": "roimh",
|
||||
"Being lazy": "A bheith leisciúil",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Cuardach Bing V7 Críochphointe",
|
||||
"Bing Search V7 Subscription Key": "Eochair Síntiúis Bing Cuardach V7",
|
||||
"Brave Search API Key": "Eochair API Cuardaigh Brave",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "Cosán Teastais",
|
||||
"Change Password": "Athraigh Pasfhocal",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Carachtar",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "Cairt teorainneacha nua",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Cruthaigh samhail",
|
||||
"Create Account": "Cruthaigh Cuntas",
|
||||
"Create Admin Account": "Cruthaigh Cuntas Riaracháin",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Cruthaigh Grúpa",
|
||||
"Create Knowledge": "Cruthaigh Eolais",
|
||||
"Create new key": "Cruthaigh eochair nua",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Scrios comhrá?",
|
||||
"Delete folder?": "Scrios fillteán?",
|
||||
"Delete function?": "Scrios feidhm?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Scrios pras?",
|
||||
"delete this link": "scrios an nasc seo",
|
||||
"Delete tool?": "Uirlis a scriosadh?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh",
|
||||
"Edit": "Cuir in eagar",
|
||||
"Edit Arena Model": "Cuir Samhail Airéine in Eagar",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Cuir Ceangal in Eagar",
|
||||
"Edit Default Permissions": "Cuir Ceadanna Réamhshocraithe in Eagar",
|
||||
"Edit Memory": "Cuir Cuimhne in eagar",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Ainm",
|
||||
"Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
|
||||
"New Chat": "Comhrá Nua",
|
||||
"New folder": "Fillteán nua",
|
||||
"New Password": "Pasfhocal Nua",
|
||||
"new-channel": "",
|
||||
"No content found": "Níor aimsíodh aon ábhar",
|
||||
"No content to speak": "Níl aon ábhar le labhairt",
|
||||
"No distance available": "Níl achar ar fáil",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "Parametri avanzati",
|
||||
"Advanced Params": "Parametri avanzati",
|
||||
"All chats": "",
|
||||
"All Documents": "Tutti i documenti",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Archivia tutte le chat",
|
||||
"Archived Chats": "Chat archiviate",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Sei sicuro?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "prima",
|
||||
"Being lazy": "Essere pigri",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Chiave API di ricerca Brave",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Cambia password",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Creare un modello",
|
||||
"Create Account": "Crea account",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Crea nuova chiave",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "elimina questo link",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Modifica",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nome",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Nuova chat",
|
||||
"New folder": "",
|
||||
"New Password": "Nuova password",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理者は全てのツールにアクセス出来ます。ユーザーはワークスペースのモデル毎に割り当てて下さい。",
|
||||
"Advanced Parameters": "詳細パラメーター",
|
||||
"Advanced Params": "高度なパラメータ",
|
||||
"All chats": "",
|
||||
"All Documents": "全てのドキュメント",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "すべてのチャットをアーカイブする",
|
||||
"Archived Chats": "チャット記録",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "よろしいですか?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "バッチサイズ (num_batch)",
|
||||
"before": "より前",
|
||||
"Being lazy": "怠惰な",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Brave Search APIキー",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "パスワードを変更",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "モデルを作成する",
|
||||
"Create Account": "アカウントを作成",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "知識データ作成",
|
||||
"Create new key": "新しいキーを作成",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "チャットを削除しますか?",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "Functionを削除しますか?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "プロンプトを削除しますか?",
|
||||
"delete this link": "このリンクを削除します",
|
||||
"Delete tool?": "ツールを削除しますか?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "編集",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "メモリを編集",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "名前",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "新しいチャット",
|
||||
"New folder": "",
|
||||
"New Password": "新しいパスワード",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "დამატებითი პარამეტრები",
|
||||
"Advanced Params": "მოწინავე პარამები",
|
||||
"All chats": "",
|
||||
"All Documents": "ყველა დოკუმენტი",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "არქივი ყველა ჩატი",
|
||||
"Archived Chats": "ჩატის ისტორიის არქივი",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "დარწმუნებული ხარ?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "ადგილზე",
|
||||
"Being lazy": "ჩაიტყვევა",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Brave Search API გასაღები",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "პაროლის შეცვლა",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "შექმენით მოდელი",
|
||||
"Create Account": "ანგარიშის შექმნა",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "პირადი ღირებულბრის შექმნა",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "ბმულის წაშლა",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "რედაქტირება",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "სახელი",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "ახალი მიმოწერა",
|
||||
"New folder": "",
|
||||
"New Password": "ახალი პაროლი",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "관리자는 항상 모든 도구에 접근할 수 있지만, 사용자는 워크스페이스에서 모델마다 도구를 할당받아야 합니다.",
|
||||
"Advanced Parameters": "고급 매개변수",
|
||||
"Advanced Params": "고급 매개변수",
|
||||
"All chats": "모든 채팅",
|
||||
"All Documents": "모든 문서",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "모든 채팅 보관",
|
||||
"Archived Chats": "보관된 채팅",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "확실합니까?",
|
||||
"Arena Models": "아레나 모델",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "배치 크기 (num_batch)",
|
||||
"before": "이전",
|
||||
"Being lazy": "게으름 피우기",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Brave Search API 키",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "비밀번호 변경",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "캐릭터",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "모델 만들기",
|
||||
"Create Account": "계정 만들기",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "지식 만들기",
|
||||
"Create new key": "새 키 만들기",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "채팅을 삭제하겠습니까?",
|
||||
"Delete folder?": "폴더를 삭제하시겠습니까?",
|
||||
"Delete function?": "함수를 삭제하시겠습니까?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "프롬포트를 삭제하시겠습니까?",
|
||||
"delete this link": "이 링크를 삭제합니다.",
|
||||
"Delete tool?": "도구를 삭제하시겠습니까?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "편집",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "메모리 편집",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "이름",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "새 채팅",
|
||||
"New folder": "새 폴더",
|
||||
"New Password": "새 비밀번호",
|
||||
"new-channel": "",
|
||||
"No content found": "내용을 찾을 수 없음",
|
||||
"No content to speak": "음성 출력할 내용을 찾을 수 없음",
|
||||
"No distance available": "거리 불가능",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratoriai visada turi visus įrankius. Naudotojai turi tuėti prieigą prie dokumentų per modelių nuostatas",
|
||||
"Advanced Parameters": "Pažengę nustatymai",
|
||||
"Advanced Params": "Pažengę nustatymai",
|
||||
"All chats": "",
|
||||
"All Documents": "Visi dokumentai",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Archyvuoti visus pokalbius",
|
||||
"Archived Chats": "Archyvuoti pokalbiai",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Are esate tikri?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Batch dydis",
|
||||
"before": "prieš",
|
||||
"Being lazy": "Būvimas tingiu",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Brave Search API raktas",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Keisti slaptažodį",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Sukurti modelį",
|
||||
"Create Account": "Créer un compte",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Sukurti naują raktą",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Ištrinti pokalbį?",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "Ištrinti funkciją",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Ištrinti užklausą?",
|
||||
"delete this link": "Ištrinti nuorodą",
|
||||
"Delete tool?": "Ištrinti įrankį?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Redaguoti",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Koreguoti atminį",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Pavadinimas",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Naujas pokalbis",
|
||||
"New folder": "",
|
||||
"New Password": "Naujas slaptažodis",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "Nėra turinio kalbėjimui",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Pentadbir mempunyai akses kepada semua alat pada setiap masa; pengguna memerlukan alat yang ditetapkan mengikut model dalam ruang kerja.",
|
||||
"Advanced Parameters": "Parameter Lanjutan",
|
||||
"Advanced Params": "Parameter Lanjutan",
|
||||
"All chats": "",
|
||||
"All Documents": "Semua Dokumen",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arkibkan Semua Perbualan",
|
||||
"Archived Chats": "Perbualan yang diarkibkan",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Adakah anda pasti",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Saiz Kumpulan (num_batch)",
|
||||
"before": "sebelum,",
|
||||
"Being lazy": "Menjadi Malas",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Kunci API Carian Brave",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Tukar Kata Laluan",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Cipta model",
|
||||
"Create Account": "Cipta Akaun",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Cipta kekunci baharu",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Padam perbualan?",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "Padam fungsi?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Padam Gesaan?",
|
||||
"delete this link": "Padam pautan ini?",
|
||||
"Delete tool?": "Padam alat?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Edit",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Edit Memori",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nama",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Perbualan Baru",
|
||||
"New folder": "",
|
||||
"New Password": "Kata Laluan Baru",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "Tiada kandungan untuk bercakap",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorer har alltid tilgang til alle verktøy. Brukere må få tildelt verktøy per modell i arbeidsområdet.",
|
||||
"Advanced Parameters": "Avanserte parametere",
|
||||
"Advanced Params": "Avanserte parametere",
|
||||
"All chats": "Alle chatter",
|
||||
"All Documents": "Alle dokumenter",
|
||||
"All models deleted successfully": "Alle modeller er slettet",
|
||||
"Allow Chat Delete": "Tillat sletting av chatter",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arkiver alle chatter",
|
||||
"Archived Chats": "Arkiverte chatter",
|
||||
"archived-chat-export": "archived-chat-export",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Er du sikker på at du vil oppheve arkiveringen av alle arkiverte chatter?",
|
||||
"Are you sure?": "Er du sikker?",
|
||||
"Arena Models": "Arena-modeller",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Batchstørrelse (num_batch)",
|
||||
"before": "før",
|
||||
"Being lazy": "Er lat",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Endepunkt for Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Abonnementsnøkkel for Bing Search V7",
|
||||
"Brave Search API Key": "API-nøkkel for Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "Sertifikatbane",
|
||||
"Change Password": "Endre passord",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Karakter",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "Kartlegg ny områder",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Opprett en modell",
|
||||
"Create Account": "Opprett konto",
|
||||
"Create Admin Account": "Opprett administratorkonto",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Opprett gruppe",
|
||||
"Create Knowledge": "Opprett kunnskap",
|
||||
"Create new key": "Lag ny nøkkel",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Slette chat?",
|
||||
"Delete folder?": "Slette mappe?",
|
||||
"Delete function?": "Slette funksjon?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Slette ledetekst?",
|
||||
"delete this link": "slett denne lenken",
|
||||
"Delete tool?": "Slette verktøy?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "f.eks. Verktøy for å gjøre ulike handlinger",
|
||||
"Edit": "Rediger",
|
||||
"Edit Arena Model": "Rediger Arena-modell",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Rediger tilkobling",
|
||||
"Edit Default Permissions": "Rediger standard tillatelser",
|
||||
"Edit Memory": "Rediger minne",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Navn",
|
||||
"Name your knowledge base": "Gi kunnskapsbasen et navn",
|
||||
"New Chat": "Ny chat",
|
||||
"New folder": "Ny mappe",
|
||||
"New Password": "Nytt passord",
|
||||
"new-channel": "",
|
||||
"No content found": "Finner ikke noe innhold",
|
||||
"No content to speak": "Mangler innhold for tale",
|
||||
"No distance available": "Ingen avstand tilgjengelig",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Beheerders hebben altijd toegang tot alle gereedschappen; gebruikers moeten gereedschap toegewezen krijgen per model in de werkruimte.",
|
||||
"Advanced Parameters": "Geavanceerde parameters",
|
||||
"Advanced Params": "Geavanceerde params",
|
||||
"All chats": "Alle chats",
|
||||
"All Documents": "Alle documenten",
|
||||
"All models deleted successfully": "Alle modellen zijn succesvol verwijderd",
|
||||
"Allow Chat Delete": "Sta chatverwijdering toe",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Archiveer alle chats",
|
||||
"Archived Chats": "Chatrecord",
|
||||
"archived-chat-export": "gearchiveerde-chat-export",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Weet je zeker dat je alle gearchiveerde chats wil onarchiveren?",
|
||||
"Are you sure?": "Weet je het zeker?",
|
||||
"Arena Models": "Arenamodellen",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Batchgrootte (num_batch)",
|
||||
"before": "voor",
|
||||
"Being lazy": "Lui zijn",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key",
|
||||
"Brave Search API Key": "Brave Search API-sleutel",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "Certificaatpad",
|
||||
"Change Password": "Wijzig Wachtwoord",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Karakter",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "Verken nieuwe grenzen",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Een model maken",
|
||||
"Create Account": "Maak account",
|
||||
"Create Admin Account": "Maak admin-account",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Maak groep",
|
||||
"Create Knowledge": "Creër kennis",
|
||||
"Create new key": "Maak nieuwe sleutel",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Verwijder chat?",
|
||||
"Delete folder?": "Verwijder map?",
|
||||
"Delete function?": "Verwijder functie?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Verwijder prompt?",
|
||||
"delete this link": "verwijder deze link",
|
||||
"Delete tool?": "Verwijder tool?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren",
|
||||
"Edit": "Wijzig",
|
||||
"Edit Arena Model": "Bewerk arenamodel",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Bewerk connectie",
|
||||
"Edit Default Permissions": "Standaardrechten bewerken",
|
||||
"Edit Memory": "Bewerk geheugen",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Naam",
|
||||
"Name your knowledge base": "Geef je kennisbasis een naam",
|
||||
"New Chat": "Nieuwe Chat",
|
||||
"New folder": "Nieuwe map",
|
||||
"New Password": "Nieuw Wachtwoord",
|
||||
"new-channel": "",
|
||||
"No content found": "Geen content gevonden",
|
||||
"No content to speak": "Geen inhoud om over te spreken",
|
||||
"No distance available": "Geen afstand beschikbaar",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "ਉੱਚ ਸਤਰ ਦੇ ਪੈਰਾਮੀਟਰ",
|
||||
"Advanced Params": "ਐਡਵਾਂਸਡ ਪਰਮਜ਼",
|
||||
"All chats": "",
|
||||
"All Documents": "ਸਾਰੇ ਡਾਕੂਮੈਂਟ",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਆਰਕਾਈਵ ਕਰੋ",
|
||||
"Archived Chats": "ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਹੋ?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "ਪਹਿਲਾਂ",
|
||||
"Being lazy": "ਆਲਸੀ ਹੋਣਾ",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "ਪਾਸਵਰਡ ਬਦਲੋ",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "ਇੱਕ ਮਾਡਲ ਬਣਾਓ",
|
||||
"Create Account": "ਖਾਤਾ ਬਣਾਓ",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "ਨਵੀਂ ਕੁੰਜੀ ਬਣਾਓ",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "ਇਸ ਲਿੰਕ ਨੂੰ ਮਿਟਾਓ",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "ਸੰਪਾਦਨ ਕਰੋ",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "ਨਾਮ",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ",
|
||||
"New folder": "",
|
||||
"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "Zaawansowane parametry",
|
||||
"Advanced Params": "Zaawansowane parametry",
|
||||
"All chats": "",
|
||||
"All Documents": "Wszystkie dokumenty",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Archiwizuj wszystkie czaty",
|
||||
"Archived Chats": "Zarchiwizowane czaty",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Jesteś pewien?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "przed",
|
||||
"Being lazy": "Jest leniwy",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Klucz API wyszukiwania Brave",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Zmień hasło",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Tworzenie modelu",
|
||||
"Create Account": "Utwórz konto",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Utwórz nowy klucz",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "usuń ten link",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Edytuj",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nazwa",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Nowy czat",
|
||||
"New folder": "",
|
||||
"New Password": "Nowe hasło",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os admins têm acesso a todas as ferramentas o tempo todo; os usuários precisam de ferramentas atribuídas, por modelo, no workspace.",
|
||||
"Advanced Parameters": "Parâmetros Avançados",
|
||||
"Advanced Params": "Parâmetros Avançados",
|
||||
"All chats": "Todos os chats",
|
||||
"All Documents": "Todos os Documentos",
|
||||
"All models deleted successfully": "Todos os modelos foram excluídos com sucesso",
|
||||
"Allow Chat Delete": "Permitir Exclusão de Chats",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arquivar Todos os Chats",
|
||||
"Archived Chats": "Chats Arquivados",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Você tem certeza que deseja desarquivar todos os chats arquivados?",
|
||||
"Are you sure?": "Você tem certeza?",
|
||||
"Arena Models": "Arena de Modelos",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Tamanho do Lote (num_batch)",
|
||||
"before": "antes",
|
||||
"Being lazy": "Sendo preguiçoso",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Chave API do Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "Caminho do Certificado",
|
||||
"Change Password": "Mudar Senha",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Caracter",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "Trace novas fronteiras",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Criar um modelo",
|
||||
"Create Account": "Criar Conta",
|
||||
"Create Admin Account": "Criar Conta de Admin",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Criar Grupo",
|
||||
"Create Knowledge": "Criar Conhecimento",
|
||||
"Create new key": "Criar nova chave",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Excluir chat?",
|
||||
"Delete folder?": "Excluir pasta?",
|
||||
"Delete function?": "Excluir função?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Excluir prompt?",
|
||||
"delete this link": "Excluir este link",
|
||||
"Delete tool?": "Excluir ferramenta?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas",
|
||||
"Edit": "Editar",
|
||||
"Edit Arena Model": "Editar Arena de Modelos",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Editar Conexão",
|
||||
"Edit Default Permissions": "Editar Permissões Padrão",
|
||||
"Edit Memory": "Editar Memória",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nome",
|
||||
"Name your knowledge base": "Nome da sua base de conhecimento",
|
||||
"New Chat": "Novo Chat",
|
||||
"New folder": "Nova pasta",
|
||||
"New Password": "Nova Senha",
|
||||
"new-channel": "",
|
||||
"No content found": "Nenhum conteúdo encontrado",
|
||||
"No content to speak": "Sem conteúdo para falar",
|
||||
"No distance available": "Sem distância disponível",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "Parâmetros Avançados",
|
||||
"Advanced Params": "Params Avançados",
|
||||
"All chats": "",
|
||||
"All Documents": "Todos os Documentos",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arquivar todos os chats",
|
||||
"Archived Chats": "Conversas arquivadas",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Tem a certeza?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "antes",
|
||||
"Being lazy": "Ser preguiçoso",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Chave da API de Pesquisa Brave",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Alterar Senha",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Criar um modelo",
|
||||
"Create Account": "Criar Conta",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Criar nova chave",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "apagar este link",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Editar",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nome",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Nova Conversa",
|
||||
"New folder": "",
|
||||
"New Password": "Nova Senha",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorii au acces la toate instrumentele în orice moment; utilizatorii au nevoie de instrumente asignate pe model în spațiul de lucru.",
|
||||
"Advanced Parameters": "Parametri Avansați",
|
||||
"Advanced Params": "Parametri Avansați",
|
||||
"All chats": "Toate conversațiile",
|
||||
"All Documents": "Toate Documentele",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arhivează Toate Conversațiile",
|
||||
"Archived Chats": "Conversații Arhivate",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Ești sigur?",
|
||||
"Arena Models": "Arena Models",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Dimensiune Lot (num_batch)",
|
||||
"before": "înainte",
|
||||
"Being lazy": "Fiind leneș",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Cheie API Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Schimbă Parola",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Caracter",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Creează un model",
|
||||
"Create Account": "Creează Cont",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "Creează cunoștințe",
|
||||
"Create new key": "Creează cheie nouă",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Șterge conversația?",
|
||||
"Delete folder?": "Ștergeți folderul?",
|
||||
"Delete function?": "Șterge funcția?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Șterge promptul?",
|
||||
"delete this link": "șterge acest link",
|
||||
"Delete tool?": "Șterge instrumentul?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Editează",
|
||||
"Edit Arena Model": "Editați Modelul Arena",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Editează Memorie",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Nume",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Conversație Nouă",
|
||||
"New folder": "Folder nou",
|
||||
"New Password": "Parolă Nouă",
|
||||
"new-channel": "",
|
||||
"No content found": "Nu a fost găsit niciun conținut",
|
||||
"No content to speak": "Nu există conținut de vorbit",
|
||||
"No distance available": "Nicio distanță disponibilă",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Администраторы всегда имеют доступ ко всем инструментам; пользователям нужны инструменты, назначенные для каждой модели в рабочем пространстве.",
|
||||
"Advanced Parameters": "Расширенные Параметры",
|
||||
"Advanced Params": "Расширенные параметры",
|
||||
"All chats": "Все чаты",
|
||||
"All Documents": "Все документы",
|
||||
"All models deleted successfully": "Все модели успешно удалены",
|
||||
"Allow Chat Delete": "Разрешить удаление чата",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Архивировать все чаты",
|
||||
"Archived Chats": "Архив чатов",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Вы уверены, что хотите разархивировать все заархивированные чаты?",
|
||||
"Are you sure?": "Вы уверены?",
|
||||
"Arena Models": "Модели арены",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Размер партии (num_batch)",
|
||||
"before": "до",
|
||||
"Being lazy": "Лениво",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Конечная точка поиска Bing V7",
|
||||
"Bing Search V7 Subscription Key": "Ключ API Bing Search V7",
|
||||
"Brave Search API Key": "Ключ API поиска Brave",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Изменить пароль",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "Ограничение количества символов для ввода при генерации автозаполнения",
|
||||
"Chart new frontiers": "Наметьте новые границы",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Создание модели",
|
||||
"Create Account": "Создать аккаунт",
|
||||
"Create Admin Account": "Создать Аккаунт Администратора",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Создать Группу",
|
||||
"Create Knowledge": "Создать Знания",
|
||||
"Create new key": "Создать новый ключ",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Удалить чат?",
|
||||
"Delete folder?": "Удалить папку?",
|
||||
"Delete function?": "Удалить функцию?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Удалить промпт?",
|
||||
"delete this link": "удалить эту ссылку",
|
||||
"Delete tool?": "Удалить этот инструмент?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Редактировать",
|
||||
"Edit Arena Model": "Изменить модель арены",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Изменить соединение",
|
||||
"Edit Default Permissions": "Изменить разрешения по умолчанию",
|
||||
"Edit Memory": "Редактировать воспоминание",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Имя",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Новый чат",
|
||||
"New folder": "",
|
||||
"New Password": "Новый пароль",
|
||||
"new-channel": "",
|
||||
"No content found": "Контент не найден",
|
||||
"No content to speak": "Нечего говорить",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administrátori majú prístup ku všetkým nástrojom kedykoľvek; užívatelia potrebujú mať nástroje priradené podľa modelu v workspace.",
|
||||
"Advanced Parameters": "Pokročilé parametre",
|
||||
"Advanced Params": "Pokročilé parametre",
|
||||
"All chats": "Všetky konverzácie",
|
||||
"All Documents": "Všetky dokumenty",
|
||||
"All models deleted successfully": "Všetky modely úspešne odstránené",
|
||||
"Allow Chat Delete": "Povoliť odstránenie chatu",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Archivovať všetky konverzácie",
|
||||
"Archived Chats": "Archivované konverzácie",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Ste si istý?",
|
||||
"Arena Models": "Arena modely",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Veľkosť batchu (num_batch)",
|
||||
"before": "pred",
|
||||
"Being lazy": "",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "API kľúč pre Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Zmeniť heslo",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Znak",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Vytvoriť model",
|
||||
"Create Account": "Vytvoriť účet",
|
||||
"Create Admin Account": "Vytvoriť admin účet",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Vytvoriť skupinu",
|
||||
"Create Knowledge": "Vytvoriť knowledge",
|
||||
"Create new key": "Vytvoriť nový kľúč",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Odstrániť konverzáciu?",
|
||||
"Delete folder?": "Odstrániť priečinok?",
|
||||
"Delete function?": "Funkcia na odstránenie?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Odstrániť prompt?",
|
||||
"delete this link": "odstrániť tento odkaz",
|
||||
"Delete tool?": "Odstrániť nástroj?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Upraviť",
|
||||
"Edit Arena Model": "Upraviť Arena Model",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Upraviť pamäť",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Meno",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Nový chat",
|
||||
"New folder": "Nový priečinok",
|
||||
"New Password": "Nové heslo",
|
||||
"new-channel": "",
|
||||
"No content found": "Nebol nájdený žiadny obsah.",
|
||||
"No content to speak": "Žiadny obsah na diskusiu.",
|
||||
"No distance available": "Nie je dostupná žiadna vzdialenosť",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Админи имају приступ свим алатима у сваком тренутку, корисницима је потребно доделити алате по моделу у радном простору",
|
||||
"Advanced Parameters": "Напредни параметри",
|
||||
"Advanced Params": "Напредни парамови",
|
||||
"All chats": "Сва ћаскања",
|
||||
"All Documents": "Сви документи",
|
||||
"All models deleted successfully": "Сви модели су успешно обрисани",
|
||||
"Allow Chat Delete": "Дозволи брисање ћаскања",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Архивирај сва ћаскања",
|
||||
"Archived Chats": "Архиве",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Да ли сте сигурни?",
|
||||
"Arena Models": "Модели са Арене",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "пре",
|
||||
"Being lazy": "Бити лењ",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Апи кључ за храбру претрагу",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Промени лозинку",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Знак",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Креирање модела",
|
||||
"Create Account": "Направи налог",
|
||||
"Create Admin Account": "Направи админ налог",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Направи групу",
|
||||
"Create Knowledge": "Направи знање",
|
||||
"Create new key": "Направи нови кључ",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "обриши ову везу",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Уреди",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Име",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Ново ћаскање",
|
||||
"New folder": "",
|
||||
"New Password": "Нова лозинка",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratörer har tillgång till alla verktyg hela tiden, medan användare behöver verktyg som tilldelas per modell i arbetsytan.",
|
||||
"Advanced Parameters": "Avancerade parametrar",
|
||||
"Advanced Params": "Avancerade parametrar",
|
||||
"All chats": "",
|
||||
"All Documents": "Alla dokument",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Arkivera alla chattar",
|
||||
"Archived Chats": "Arkiverade chattar",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Är du säker?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Batchstorlek (num_batch)",
|
||||
"before": "för",
|
||||
"Being lazy": "Lägg till",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "API-nyckel för Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Ändra lösenord",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Skapa en modell",
|
||||
"Create Account": "Skapa konto",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Skapa ny nyckel",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "radera denna länk",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Redigera",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Namn",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Ny chatt",
|
||||
"New folder": "",
|
||||
"New Password": "Nytt lösenord",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ผู้ดูแลระบบสามารถเข้าถึงเครื่องมือทั้งหมดได้ตลอดเวลา; ผู้ใช้ต้องการเครื่องมือที่กำหนดต่อโมเดลในพื้นที่ทำงาน",
|
||||
"Advanced Parameters": "พารามิเตอร์ขั้นสูง",
|
||||
"Advanced Params": "พารามิเตอร์ขั้นสูง",
|
||||
"All chats": "",
|
||||
"All Documents": "เอกสารทั้งหมด",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "เก็บถาวรการสนทนาทั้งหมด",
|
||||
"Archived Chats": "การสนทนาที่เก็บถาวร",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "คุณแน่ใจหรือ?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "ขนาดชุด (num_batch)",
|
||||
"before": "ก่อน",
|
||||
"Being lazy": "ขี้เกียจ",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "คีย์ API ของ Brave Search",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "เปลี่ยนรหัสผ่าน",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "สร้างโมเดล",
|
||||
"Create Account": "สร้างบัญชี",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "สร้างคีย์ใหม่",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "ลบแชท?",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "ลบฟังก์ชัน?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "ลบพรอมต์?",
|
||||
"delete this link": "ลบลิงก์นี้",
|
||||
"Delete tool?": "ลบเครื่องมือ?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "แก้ไข",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "แก้ไขความจำ",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "ชื่อ",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "แชทใหม่",
|
||||
"New folder": "",
|
||||
"New Password": "รหัสผ่านใหม่",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "ไม่มีเนื้อหาที่จะพูด",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "",
|
||||
"Advanced Params": "",
|
||||
"All chats": "",
|
||||
"All Documents": "",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "",
|
||||
"Being lazy": "",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "",
|
||||
"Create Account": "",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "",
|
||||
"delete this link": "",
|
||||
"Delete tool?": "",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "",
|
||||
"New folder": "",
|
||||
"New Password": "",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Yöneticiler her zaman tüm araçlara erişebilir; kullanıcıların çalışma alanındaki model başına atanmış araçlara ihtiyacı vardır.",
|
||||
"Advanced Parameters": "Gelişmiş Parametreler",
|
||||
"Advanced Params": "Gelişmiş Parametreler",
|
||||
"All chats": "Tüm sohbetler",
|
||||
"All Documents": "Tüm Belgeler",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Tüm Sohbetleri Arşivle",
|
||||
"Archived Chats": "Arşivlenmiş Sohbetler",
|
||||
"archived-chat-export": "arşivlenmiş-sohbet-aktarımı",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Emin misiniz?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Yığın Boyutu (num_batch)",
|
||||
"before": "önce",
|
||||
"Being lazy": "Tembelleşiyor",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Brave Search API Anahtarı",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Parola Değiştir",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Karakter",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Bir model oluştur",
|
||||
"Create Account": "Hesap Oluştur",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Yeni anahtar oluştur",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Sohbeti sil?",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "Fonksiyonu sil?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Promptu sil?",
|
||||
"delete this link": "bu bağlantıyı sil",
|
||||
"Delete tool?": "Aracı sil?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Düzenle",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Belleği Düzenle",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Ad",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Yeni Sohbet",
|
||||
"New folder": "Yeni Dosya",
|
||||
"New Password": "Yeni Parola",
|
||||
"new-channel": "",
|
||||
"No content found": "İçerik bulunamadı",
|
||||
"No content to speak": "Konuşacak içerik yok",
|
||||
"No distance available": "Mesafe mevcut değil",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Адміністратори мають доступ до всіх інструментів у будь-який час; користувачам потрібні інструменти, призначені для кожної моделі в робочій області.",
|
||||
"Advanced Parameters": "Розширені параметри",
|
||||
"Advanced Params": "Розширені параметри",
|
||||
"All chats": "Усі чати",
|
||||
"All Documents": "Усі документи",
|
||||
"All models deleted successfully": "Всі моделі видалені успішно",
|
||||
"Allow Chat Delete": "Дозволити видалення чату",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Архівувати всі чати",
|
||||
"Archived Chats": "Архівовані чати",
|
||||
"archived-chat-export": "експорт-архівованих-чатів",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Ви впевнені, що хочете розархівувати всі архівовані чати?",
|
||||
"Are you sure?": "Ви впевнені?",
|
||||
"Arena Models": "Моделі Arena",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "Розмір партії (num_batch)",
|
||||
"before": "до того, як",
|
||||
"Being lazy": "Не поспішати",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Точка доступу Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Ключ підписки Bing Search V7",
|
||||
"Brave Search API Key": "Ключ API пошуку Brave",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "Захоплення",
|
||||
"Certificate Path": "Шлях до сертифіката",
|
||||
"Change Password": "Змінити пароль",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "Персонаж",
|
||||
"Character limit for autocomplete generation input": "Ліміт символів для введення при генерації автозаповнення",
|
||||
"Chart new frontiers": "Відкривати нові горизонти",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Створити модель",
|
||||
"Create Account": "Створити обліковий запис",
|
||||
"Create Admin Account": "Створити обліковий запис адміністратора",
|
||||
"Create Channel": "",
|
||||
"Create Group": "Створити групу",
|
||||
"Create Knowledge": "Створити знання",
|
||||
"Create new key": "Створити новий ключ",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Видалити чат?",
|
||||
"Delete folder?": "Видалити папку?",
|
||||
"Delete function?": "Видалити функцію?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Видалити промт?",
|
||||
"delete this link": "видалити це посилання",
|
||||
"Delete tool?": "Видалити інструмент?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "напр., Інструменти для виконання різних операцій",
|
||||
"Edit": "Редагувати",
|
||||
"Edit Arena Model": "Редагувати модель Arena",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "Редагувати з'єднання",
|
||||
"Edit Default Permissions": "Редагувати дозволи за замовчуванням",
|
||||
"Edit Memory": "Редагувати пам'ять",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Ім'я",
|
||||
"Name your knowledge base": "Назвіть вашу базу знань",
|
||||
"New Chat": "Новий чат",
|
||||
"New folder": "Нова папка",
|
||||
"New Password": "Новий пароль",
|
||||
"new-channel": "",
|
||||
"No content found": "Контент не знайдено.",
|
||||
"No content to speak": "Нема чого говорити",
|
||||
"No distance available": "Відстань недоступна",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ایڈمنز کو ہر وقت تمام ٹولز تک رسائی حاصل ہوتی ہے؛ صارفین کو ورک سپیس میں ماڈل کے حساب سے ٹولز تفویض کرنے کی ضرورت ہوتی ہے",
|
||||
"Advanced Parameters": "پیشرفتہ پیرا میٹرز",
|
||||
"Advanced Params": "ترقی یافتہ پیرامیٹرز",
|
||||
"All chats": "تمام چیٹس",
|
||||
"All Documents": "تمام دستاویزات",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "تمام چیٹس محفوظ کریں",
|
||||
"Archived Chats": "محفوظ شدہ بات چیت",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "کیا آپ کو یقین ہے؟",
|
||||
"Arena Models": "ارینا ماڈلز",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "بیچ سائز (num_batch)",
|
||||
"before": "پہلے",
|
||||
"Being lazy": "سستی کر رہا ہے",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "بریو سرچ API کلید",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "پاس ورڈ تبدیل کریں",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "کردار",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "ماڈل بنائیں",
|
||||
"Create Account": "اکاؤنٹ بنائیں",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "علم بنائیں",
|
||||
"Create new key": "نیا کلید بنائیں",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "چیٹ حذف کریں؟",
|
||||
"Delete folder?": "کیا فولڈر حذف کریں؟",
|
||||
"Delete function?": "حذف کریں؟",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "پرومپٹ کو حذف کریں؟",
|
||||
"delete this link": "اس لنک کو حذف کریں",
|
||||
"Delete tool?": "کیا آپ حذف کرنا چاہتے ہیں؟",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "ترمیم کریں",
|
||||
"Edit Arena Model": "ایرینا ماڈل میں ترمیم کریں",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "یادداشت میں ترمیم کریں",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "نام",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "نئی بات چیت",
|
||||
"New folder": "نیا فولڈر",
|
||||
"New Password": "نیا پاس ورڈ",
|
||||
"new-channel": "",
|
||||
"No content found": "کوئی مواد نہیں ملا",
|
||||
"No content to speak": "بولنے کے لیے کوئی مواد نہیں",
|
||||
"No distance available": "فاصلہ دستیاب نہیں ہے",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Quản trị viên luôn có quyền truy cập vào tất cả các tool; người dùng cần các tools được chỉ định cho mỗi mô hình trong workspace.",
|
||||
"Advanced Parameters": "Các tham số Nâng cao",
|
||||
"Advanced Params": "Các tham số Nâng cao",
|
||||
"All chats": "",
|
||||
"All Documents": "Tất cả tài liệu",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "Lưu tất cả các cuộc Chat",
|
||||
"Archived Chats": "Lưu các cuộc Chat",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Are you sure?": "Bạn có chắc chắn không?",
|
||||
"Arena Models": "",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "",
|
||||
"before": "trước",
|
||||
"Being lazy": "Lười biếng",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "",
|
||||
"Certificate Path": "",
|
||||
"Change Password": "Đổi Mật khẩu",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
"Chart new frontiers": "",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "Tạo model",
|
||||
"Create Account": "Tạo Tài khoản",
|
||||
"Create Admin Account": "",
|
||||
"Create Channel": "",
|
||||
"Create Group": "",
|
||||
"Create Knowledge": "",
|
||||
"Create new key": "Tạo key mới",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "Xóa chat?",
|
||||
"Delete folder?": "",
|
||||
"Delete function?": "Xóa function?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "Xóa prompt?",
|
||||
"delete this link": "Xóa link này",
|
||||
"Delete tool?": "Xóa tool?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"Edit": "Chỉnh sửa",
|
||||
"Edit Arena Model": "",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Memory": "Sửa Memory",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "Tên",
|
||||
"Name your knowledge base": "",
|
||||
"New Chat": "Tạo chat mới",
|
||||
"New folder": "",
|
||||
"New Password": "Mật khẩu mới",
|
||||
"new-channel": "",
|
||||
"No content found": "",
|
||||
"No content to speak": "Không có nội dung để nói",
|
||||
"No distance available": "",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理员拥有所有工具的访问权限;用户则需在工作空间中为每个模型单独分配工具。",
|
||||
"Advanced Parameters": "高级参数",
|
||||
"Advanced Params": "高级参数",
|
||||
"All chats": "所有对话",
|
||||
"All Documents": "所有文档",
|
||||
"All models deleted successfully": "所有模型删除成功",
|
||||
"Allow Chat Delete": "允许删除对话记录",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "归档所有对话记录",
|
||||
"Archived Chats": "已归档对话",
|
||||
"archived-chat-export": "导出已归档对话",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "是否确认取消所有已归档的对话?",
|
||||
"Are you sure?": "是否确定?",
|
||||
"Arena Models": "启用竞技场匿名评价模型",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "批大小 (num_batch)",
|
||||
"before": "对话",
|
||||
"Being lazy": "懒惰",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing 搜索 V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing 搜索 V7 订阅密钥",
|
||||
"Brave Search API Key": "Brave Search API 密钥",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "捕获",
|
||||
"Certificate Path": "证书路径",
|
||||
"Change Password": "更改密码",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "字符",
|
||||
"Character limit for autocomplete generation input": "自动完成生成输入的字符限制",
|
||||
"Chart new frontiers": "开拓新领域",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "创建一个模型",
|
||||
"Create Account": "创建账号",
|
||||
"Create Admin Account": "创建管理员账号",
|
||||
"Create Channel": "",
|
||||
"Create Group": "创建权限组",
|
||||
"Create Knowledge": "创建知识",
|
||||
"Create new key": "创建新密钥",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "删除对话记录?",
|
||||
"Delete folder?": "删除分组?",
|
||||
"Delete function?": "删除函数?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "删除提示词?",
|
||||
"delete this link": "此处删除这个链接",
|
||||
"Delete tool?": "删除工具?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "例如:用于执行各种操作的工具",
|
||||
"Edit": "编辑",
|
||||
"Edit Arena Model": "编辑竞技场模型",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "编辑连接",
|
||||
"Edit Default Permissions": "编辑默认权限",
|
||||
"Edit Memory": "编辑记忆",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "名称",
|
||||
"Name your knowledge base": "为您的知识库命名",
|
||||
"New Chat": "新对话",
|
||||
"New folder": "新建分组",
|
||||
"New Password": "新密码",
|
||||
"new-channel": "",
|
||||
"No content found": "未发现内容",
|
||||
"No content to speak": "没有内容可朗读",
|
||||
"No distance available": "没有可用距离",
|
||||
|
@ -47,7 +47,6 @@
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理員可以隨時使用所有工具;使用者則需在工作區中為每個模型分配工具。",
|
||||
"Advanced Parameters": "進階參數",
|
||||
"Advanced Params": "進階參數",
|
||||
"All chats": "所有對話",
|
||||
"All Documents": "所有文件",
|
||||
"All models deleted successfully": "成功刪除所有模型",
|
||||
"Allow Chat Delete": "允許刪除對話",
|
||||
@ -77,6 +76,8 @@
|
||||
"Archive All Chats": "封存所有對話紀錄",
|
||||
"Archived Chats": "封存的對話紀錄",
|
||||
"archived-chat-export": "archived-chat-export",
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "您確定要解除封存所有封存的對話記錄嗎?",
|
||||
"Are you sure?": "您確定嗎?",
|
||||
"Arena Models": "競技模型",
|
||||
@ -109,6 +110,7 @@
|
||||
"Batch Size (num_batch)": "批次大小(num_batch)",
|
||||
"before": "之前",
|
||||
"Being lazy": "懶惰模式",
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing 搜尋 V7 端點",
|
||||
"Bing Search V7 Subscription Key": "Bing 搜尋 V7 訂閱金鑰",
|
||||
"Brave Search API Key": "Brave 搜尋 API 金鑰",
|
||||
@ -122,6 +124,8 @@
|
||||
"Capture": "擷取",
|
||||
"Certificate Path": "憑證路徑",
|
||||
"Change Password": "修改密碼",
|
||||
"Channel Name": "",
|
||||
"Channels": "",
|
||||
"Character": "角色",
|
||||
"Character limit for autocomplete generation input": "自動完成產生輸入的字元限制",
|
||||
"Chart new frontiers": "探索新領域",
|
||||
@ -204,6 +208,7 @@
|
||||
"Create a model": "建立模型",
|
||||
"Create Account": "建立帳號",
|
||||
"Create Admin Account": "建立管理員賬號",
|
||||
"Create Channel": "",
|
||||
"Create Group": "建立群組",
|
||||
"Create Knowledge": "建立知識",
|
||||
"Create new key": "建立新的金鑰",
|
||||
@ -239,6 +244,7 @@
|
||||
"Delete chat?": "刪除對話紀錄?",
|
||||
"Delete folder?": "刪除資料夾?",
|
||||
"Delete function?": "刪除函式?",
|
||||
"Delete Message": "",
|
||||
"Delete prompt?": "刪除提示詞?",
|
||||
"delete this link": "刪除此連結",
|
||||
"Delete tool?": "刪除工具?",
|
||||
@ -291,6 +297,7 @@
|
||||
"e.g. Tools for performing various operations": "例如:用於執行各種操作的工具",
|
||||
"Edit": "編輯",
|
||||
"Edit Arena Model": "編輯競技模型",
|
||||
"Edit Channel": "",
|
||||
"Edit Connection": "編輯連線",
|
||||
"Edit Default Permissions": "編輯預設權限",
|
||||
"Edit Memory": "編輯記憶",
|
||||
@ -595,8 +602,8 @@
|
||||
"Name": "名稱",
|
||||
"Name your knowledge base": "命名您的知識庫",
|
||||
"New Chat": "新增對話",
|
||||
"New folder": "新增資料夾",
|
||||
"New Password": "新密碼",
|
||||
"new-channel": "",
|
||||
"No content found": "找不到內容",
|
||||
"No content to speak": "無可朗讀的內容",
|
||||
"No distance available": "無可用距離",
|
||||
|
@ -23,7 +23,6 @@ export const theme = writable('system');
|
||||
export const chatId = writable('');
|
||||
export const chatTitle = writable('');
|
||||
|
||||
|
||||
export const channels = writable([]);
|
||||
export const chats = writable([]);
|
||||
export const pinnedChats = writable([]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user