mirror of
https://git.mirrors.martin98.com/https://github.com/open-webui/open-webui
synced 2025-08-18 21:45:59 +08:00
chore: format
This commit is contained in:
parent
3be626bef3
commit
2cee5a4a03
@ -2,6 +2,8 @@ import { WEBUI_API_BASE_URL, WEBUI_BASE_URL } from '$lib/constants';
|
|||||||
import { convertOpenApiToToolPayload } from '$lib/utils';
|
import { convertOpenApiToToolPayload } from '$lib/utils';
|
||||||
import { getOpenAIModelsDirect } from './openai';
|
import { getOpenAIModelsDirect } from './openai';
|
||||||
|
|
||||||
|
import { toast } from 'svelte-sonner';
|
||||||
|
|
||||||
export const getModels = async (
|
export const getModels = async (
|
||||||
token: string = '',
|
token: string = '',
|
||||||
connections: object | null = null,
|
connections: object | null = null,
|
||||||
@ -296,27 +298,33 @@ export const getToolServerData = async (token: string, url: string) => {
|
|||||||
return data;
|
return data;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getToolServersData = async (servers: object[]) => {
|
export const getToolServersData = async (i18n, servers: object[]) => {
|
||||||
return await Promise.all(
|
return (
|
||||||
servers
|
await Promise.all(
|
||||||
.filter((server) => server?.config?.enable)
|
servers
|
||||||
.map(async (server) => {
|
.filter((server) => server?.config?.enable)
|
||||||
const data = await getToolServerData(server?.key, server?.url).catch((err) => {
|
.map(async (server) => {
|
||||||
console.error(err);
|
const data = await getToolServerData(server?.key, server?.url).catch((err) => {
|
||||||
return null;
|
toast.error(
|
||||||
});
|
i18n.t(`Failed to connect to {{URL}} OpenAPI tool server`, {
|
||||||
|
URL: server?.url
|
||||||
|
})
|
||||||
|
);
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
|
||||||
if (data) {
|
if (data) {
|
||||||
const { openapi, info, specs } = data;
|
const { openapi, info, specs } = data;
|
||||||
return {
|
return {
|
||||||
url: server?.url,
|
url: server?.url,
|
||||||
openapi: openapi,
|
openapi: openapi,
|
||||||
info: info,
|
info: info,
|
||||||
specs: specs
|
specs: specs
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
);
|
)
|
||||||
|
).filter((server) => server);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const executeToolServer = async (
|
export const executeToolServer = async (
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
toolServers: servers
|
toolServers: servers
|
||||||
});
|
});
|
||||||
|
|
||||||
toolServers.set(await getToolServersData($settings?.toolServers ?? []));
|
toolServers.set(await getToolServersData($i18n, $settings?.toolServers ?? []));
|
||||||
};
|
};
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
@ -51,6 +51,9 @@
|
|||||||
{#if servers !== null}
|
{#if servers !== null}
|
||||||
<div class="">
|
<div class="">
|
||||||
<div class="pr-1.5">
|
<div class="pr-1.5">
|
||||||
|
<!-- {$i18n.t(`Failed to connect to {{URL}} OpenAPI tool server`, {
|
||||||
|
URL: 'server?.url'
|
||||||
|
})} -->
|
||||||
<div class="">
|
<div class="">
|
||||||
<div class="flex justify-between items-center mb-0.5">
|
<div class="flex justify-between items-center mb-0.5">
|
||||||
<div class="font-medium">{$i18n.t('Manage Tool Servers')}</div>
|
<div class="font-medium">{$i18n.t('Manage Tool Servers')}</div>
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 الرابط الرئيسي",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 الرابط الرئيسي",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "متاح",
|
"available!": "متاح",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "أسقط أية ملفات هنا لإضافتها إلى المحادثة",
|
"Drop any files here to add to the conversation": "أسقط أية ملفات هنا لإضافتها إلى المحادثة",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "تجريبي",
|
"Experimental": "تجريبي",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "فشل في إنشاء مفتاح API.",
|
"Failed to create API Key.": "فشل في إنشاء مفتاح API.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
|
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "واجهه المستخدم",
|
"Interface": "واجهه المستخدم",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "تاق غير صالحة",
|
"Invalid Tag": "تاق غير صالحة",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "يناير",
|
"January": "يناير",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "إصدار",
|
"Version": "إصدار",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Базов URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Базов URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.",
|
||||||
"Available list": "Наличен списък",
|
"Available list": "Наличен списък",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "наличен!",
|
"available!": "наличен!",
|
||||||
"Awful": "Ужасно",
|
"Awful": "Ужасно",
|
||||||
"Azure AI Speech": "Azure AI Реч",
|
"Azure AI Speech": "Azure AI Реч",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Рисуване",
|
"Draw": "Рисуване",
|
||||||
"Drop any files here to add to the conversation": "Пускане на файлове тук, за да ги добавите в чата",
|
"Drop any files here to add to the conversation": "Пускане на файлове тук, за да ги добавите в чата",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "напр. Филтър за премахване на нецензурни думи от текста",
|
"e.g. A filter to remove profanity from text": "напр. Филтър за премахване на нецензурни думи от текста",
|
||||||
"e.g. My Filter": "напр. Моят филтър",
|
"e.g. My Filter": "напр. Моят филтър",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Изключи",
|
"Exclude": "Изключи",
|
||||||
"Execute code for analysis": "Изпълнете код за анализ",
|
"Execute code for analysis": "Изпълнете код за анализ",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Експериментално",
|
"Experimental": "Експериментално",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Външни модели",
|
"External Models": "Външни модели",
|
||||||
"Failed to add file.": "Неуспешно добавяне на файл.",
|
"Failed to add file.": "Неуспешно добавяне на файл.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Неуспешно създаване на API ключ.",
|
"Failed to create API Key.": "Неуспешно създаване на API ключ.",
|
||||||
"Failed to fetch models": "Неуспешно извличане на модели",
|
"Failed to fetch models": "Неуспешно извличане на модели",
|
||||||
"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
|
"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Интерфейс",
|
"Interface": "Интерфейс",
|
||||||
"Invalid file format.": "Невалиден формат на файла.",
|
"Invalid file format.": "Невалиден формат на файла.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Невалиден таг",
|
"Invalid Tag": "Невалиден таг",
|
||||||
"is typing...": "пише...",
|
"is typing...": "пише...",
|
||||||
"January": "Януари",
|
"January": "Януари",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Версия",
|
"Version": "Версия",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Версия {{selectedVersion}} от {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Версия {{selectedVersion}} от {{totalVersions}}",
|
||||||
"View Replies": "Преглед на отговорите",
|
"View Replies": "Преглед на отговорите",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Видимост",
|
"Visibility": "Видимост",
|
||||||
"Voice": "Глас",
|
"Voice": "Глас",
|
||||||
"Voice Input": "Гласов вход",
|
"Voice Input": "Гласов вход",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 বেজ ইউআরএল",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 বেজ ইউআরএল",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "উপলব্ধ!",
|
"available!": "উপলব্ধ!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "আলোচনায় যুক্ত করার জন্য যে কোন ফাইল এখানে ড্রপ করুন",
|
"Drop any files here to add to the conversation": "আলোচনায় যুক্ত করার জন্য যে কোন ফাইল এখানে ড্রপ করুন",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "পরিক্ষামূলক",
|
"Experimental": "পরিক্ষামূলক",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "API Key তৈরি করা যায়নি।",
|
"Failed to create API Key.": "API Key তৈরি করা যায়নি।",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
|
"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "ইন্টারফেস",
|
"Interface": "ইন্টারফেস",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "অবৈধ ট্যাগ",
|
"Invalid Tag": "অবৈধ ট্যাগ",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "জানুয়ারী",
|
"January": "জানুয়ারী",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "ভার্সন",
|
"Version": "ভার্সন",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL Base d'AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL Base d'AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Es requereix l'URL Base d'AUTOMATIC1111.",
|
"AUTOMATIC1111 Base URL is required.": "Es requereix l'URL Base d'AUTOMATIC1111.",
|
||||||
"Available list": "Llista de disponibles",
|
"Available list": "Llista de disponibles",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "disponible!",
|
"available!": "disponible!",
|
||||||
"Awful": "Terrible",
|
"Awful": "Terrible",
|
||||||
"Azure AI Speech": "Azure AI Speech",
|
"Azure AI Speech": "Azure AI Speech",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Dibuixar",
|
"Draw": "Dibuixar",
|
||||||
"Drop any files here to add to the conversation": "Deixa qualsevol arxiu aquí per afegir-lo a la conversa",
|
"Drop any files here to add to the conversation": "Deixa qualsevol arxiu aquí per afegir-lo a la conversa",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "p. ex. 60",
|
"e.g. 60": "p. ex. 60",
|
||||||
"e.g. A filter to remove profanity from text": "p. ex. Un filtre per eliminar paraules malsonants del text",
|
"e.g. A filter to remove profanity from text": "p. ex. Un filtre per eliminar paraules malsonants del text",
|
||||||
"e.g. My Filter": "p. ex. El meu filtre",
|
"e.g. My Filter": "p. ex. El meu filtre",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "S'ha superat el nombre de places a la vostra llicència. Poseu-vos en contacte amb el servei d'assistència per augmentar el nombre de places.",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "S'ha superat el nombre de places a la vostra llicència. Poseu-vos en contacte amb el servei d'assistència per augmentar el nombre de places.",
|
||||||
"Exclude": "Excloure",
|
"Exclude": "Excloure",
|
||||||
"Execute code for analysis": "Executar el codi per analitzar-lo",
|
"Execute code for analysis": "Executar el codi per analitzar-lo",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "Expandir",
|
"Expand": "Expandir",
|
||||||
"Experimental": "Experimental",
|
"Experimental": "Experimental",
|
||||||
"Explain": "Explicar",
|
"Explain": "Explicar",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "Extern",
|
"External": "Extern",
|
||||||
"External Models": "Models externs",
|
"External Models": "Models externs",
|
||||||
"Failed to add file.": "No s'ha pogut afegir l'arxiu.",
|
"Failed to add file.": "No s'ha pogut afegir l'arxiu.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "No s'ha pogut crear la clau API.",
|
"Failed to create API Key.": "No s'ha pogut crear la clau API.",
|
||||||
"Failed to fetch models": "No s'han pogut obtenir els models",
|
"Failed to fetch models": "No s'han pogut obtenir els models",
|
||||||
"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
|
"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "Integració",
|
"Integration": "Integració",
|
||||||
"Interface": "Interfície",
|
"Interface": "Interfície",
|
||||||
"Invalid file format.": "Format d'arxiu no vàlid.",
|
"Invalid file format.": "Format d'arxiu no vàlid.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Etiqueta no vàlida",
|
"Invalid Tag": "Etiqueta no vàlida",
|
||||||
"is typing...": "està escrivint...",
|
"is typing...": "està escrivint...",
|
||||||
"January": "Gener",
|
"January": "Gener",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versió",
|
"Version": "Versió",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Versió {{selectedVersion}} de {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Versió {{selectedVersion}} de {{totalVersions}}",
|
||||||
"View Replies": "Veure les respostes",
|
"View Replies": "Veure les respostes",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Visibilitat",
|
"Visibility": "Visibilitat",
|
||||||
"Voice": "Veu",
|
"Voice": "Veu",
|
||||||
"Voice Input": "Entrada de veu",
|
"Voice Input": "Entrada de veu",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "Base URL AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "Base URL AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Ang AUTOMATIC1111 base URL gikinahanglan.",
|
"AUTOMATIC1111 Base URL is required.": "Ang AUTOMATIC1111 base URL gikinahanglan.",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "magamit!",
|
"available!": "magamit!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Ihulog ang bisan unsang file dinhi aron idugang kini sa panag-istoryahanay",
|
"Drop any files here to add to the conversation": "Ihulog ang bisan unsang file dinhi aron idugang kini sa panag-istoryahanay",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Eksperimento",
|
"Experimental": "Eksperimento",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "",
|
"Failed to create API Key.": "",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
|
"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interface",
|
"Interface": "Interface",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "",
|
"Invalid Tag": "",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "",
|
"January": "",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Bersyon",
|
"Version": "Bersyon",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "Výchozí URL pro AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "Výchozí URL pro AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Vyžaduje se základní URL pro AUTOMATIC1111.",
|
"AUTOMATIC1111 Base URL is required.": "Vyžaduje se základní URL pro AUTOMATIC1111.",
|
||||||
"Available list": "Dostupný seznam",
|
"Available list": "Dostupný seznam",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "k dispozici!",
|
"available!": "k dispozici!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "Azure AI syntéza řeči",
|
"Azure AI Speech": "Azure AI syntéza řeči",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Namalovat",
|
"Draw": "Namalovat",
|
||||||
"Drop any files here to add to the conversation": "Sem přetáhněte libovolné soubory, které chcete přidat do konverzace",
|
"Drop any files here to add to the conversation": "Sem přetáhněte libovolné soubory, které chcete přidat do konverzace",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "např. '30s','10m'. Platné časové jednotky jsou 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "např. '30s','10m'. Platné časové jednotky jsou 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Vyloučit",
|
"Exclude": "Vyloučit",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Experimentální",
|
"Experimental": "Experimentální",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Externí modely",
|
"External Models": "Externí modely",
|
||||||
"Failed to add file.": "Nepodařilo se přidat soubor.",
|
"Failed to add file.": "Nepodařilo se přidat soubor.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Nepodařilo se vytvořit API klíč.",
|
"Failed to create API Key.": "Nepodařilo se vytvořit API klíč.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky",
|
"Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Rozhraní",
|
"Interface": "Rozhraní",
|
||||||
"Invalid file format.": "Neplatný formát souboru.",
|
"Invalid file format.": "Neplatný formát souboru.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Neplatný tag",
|
"Invalid Tag": "Neplatný tag",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Leden",
|
"January": "Leden",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Verze",
|
"Version": "Verze",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Verze {{selectedVersion}} z {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Verze {{selectedVersion}} z {{totalVersions}}",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Viditelnost",
|
"Visibility": "Viditelnost",
|
||||||
"Voice": "Hlas",
|
"Voice": "Hlas",
|
||||||
"Voice Input": "Hlasový vstup",
|
"Voice Input": "Hlasový vstup",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL er påkrævet.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL er påkrævet.",
|
||||||
"Available list": "Tilgængelige lister",
|
"Available list": "Tilgængelige lister",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "tilgængelig!",
|
"available!": "tilgængelig!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "Azure AI Speech",
|
"Azure AI Speech": "Azure AI Speech",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Upload filer her for at tilføje til samtalen",
|
"Drop any files here to add to the conversation": "Upload filer her for at tilføje til samtalen",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s', '10m'. Tilladte værdier er 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s', '10m'. Tilladte værdier er 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Eksperimentel",
|
"Experimental": "Eksperimentel",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Eksterne modeller",
|
"External Models": "Eksterne modeller",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Kunne ikke oprette API-nøgle.",
|
"Failed to create API Key.": "Kunne ikke oprette API-nøgle.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen",
|
"Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Grænseflade",
|
"Interface": "Grænseflade",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Ugyldigt tag",
|
"Invalid Tag": "Ugyldigt tag",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Januar",
|
"January": "Januar",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Version",
|
"Version": "Version",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} af {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} af {{totalVersions}}",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "Stemme",
|
"Voice": "Stemme",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111-Basis-URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111-Basis-URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-Basis-URL ist erforderlich.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-Basis-URL ist erforderlich.",
|
||||||
"Available list": "Verfügbare Liste",
|
"Available list": "Verfügbare Liste",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "Verfügbar!",
|
"available!": "Verfügbar!",
|
||||||
"Awful": "Schrecklich",
|
"Awful": "Schrecklich",
|
||||||
"Azure AI Speech": "Azure AI Speech",
|
"Azure AI Speech": "Azure AI Speech",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Zeichnen",
|
"Draw": "Zeichnen",
|
||||||
"Drop any files here to add to the conversation": "Ziehen Sie beliebige Dateien hierher, um sie dem Chat hinzuzufügen",
|
"Drop any files here to add to the conversation": "Ziehen Sie beliebige Dateien hierher, um sie dem Chat hinzuzufügen",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z. B. '30s','10m'. Gültige Zeiteinheiten sind 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z. B. '30s','10m'. Gültige Zeiteinheiten sind 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "z. B. 60",
|
"e.g. 60": "z. B. 60",
|
||||||
"e.g. A filter to remove profanity from text": "z. B. Ein Filter, um Schimpfwörter aus Text zu entfernen",
|
"e.g. A filter to remove profanity from text": "z. B. Ein Filter, um Schimpfwörter aus Text zu entfernen",
|
||||||
"e.g. My Filter": "z. B. Mein Filter",
|
"e.g. My Filter": "z. B. Mein Filter",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Ausschließen",
|
"Exclude": "Ausschließen",
|
||||||
"Execute code for analysis": "Code für Analyse ausführen",
|
"Execute code for analysis": "Code für Analyse ausführen",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "Aufklappen",
|
"Expand": "Aufklappen",
|
||||||
"Experimental": "Experimentell",
|
"Experimental": "Experimentell",
|
||||||
"Explain": "Erklären",
|
"Explain": "Erklären",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "Extern",
|
"External": "Extern",
|
||||||
"External Models": "Externe Modelle",
|
"External Models": "Externe Modelle",
|
||||||
"Failed to add file.": "Fehler beim Hinzufügen der Datei.",
|
"Failed to add file.": "Fehler beim Hinzufügen der Datei.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Fehler beim Erstellen des API-Schlüssels.",
|
"Failed to create API Key.": "Fehler beim Erstellen des API-Schlüssels.",
|
||||||
"Failed to fetch models": "Fehler beim Abrufen der Modelle",
|
"Failed to fetch models": "Fehler beim Abrufen der Modelle",
|
||||||
"Failed to read clipboard contents": "Fehler beim Abruf der Zwischenablage",
|
"Failed to read clipboard contents": "Fehler beim Abruf der Zwischenablage",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Oberfläche",
|
"Interface": "Oberfläche",
|
||||||
"Invalid file format.": "Ungültiges Dateiformat.",
|
"Invalid file format.": "Ungültiges Dateiformat.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Ungültiger Tag",
|
"Invalid Tag": "Ungültiger Tag",
|
||||||
"is typing...": "schreibt ...",
|
"is typing...": "schreibt ...",
|
||||||
"January": "Januar",
|
"January": "Januar",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Version",
|
"Version": "Version",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} von {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} von {{totalVersions}}",
|
||||||
"View Replies": "Antworten anzeigen",
|
"View Replies": "Antworten anzeigen",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Sichtbarkeit",
|
"Visibility": "Sichtbarkeit",
|
||||||
"Voice": "Stimme",
|
"Voice": "Stimme",
|
||||||
"Voice Input": "Spracheingabe",
|
"Voice Input": "Spracheingabe",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL is required.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL is required.",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "available! So excite!",
|
"available!": "available! So excite!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Drop files here to add to conversation",
|
"Drop any files here to add to the conversation": "Drop files here to add to conversation",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Much time units are 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Much time units are 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Much Experiment",
|
"Experimental": "Much Experiment",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "",
|
"Failed to create API Key.": "",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Failed to read clipboard borks",
|
"Failed to read clipboard contents": "Failed to read clipboard borks",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interface",
|
"Interface": "Interface",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "",
|
"Invalid Tag": "",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "",
|
"January": "",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Version much version",
|
"Version": "Version much version",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "Βασικό URL AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "Βασικό URL AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Απαιτείται το Βασικό URL AUTOMATIC1111.",
|
"AUTOMATIC1111 Base URL is required.": "Απαιτείται το Βασικό URL AUTOMATIC1111.",
|
||||||
"Available list": "Διαθέσιμη λίστα",
|
"Available list": "Διαθέσιμη λίστα",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "διαθέσιμο!",
|
"available!": "διαθέσιμο!",
|
||||||
"Awful": "Ασχημο",
|
"Awful": "Ασχημο",
|
||||||
"Azure AI Speech": "Ομιλία Azure AI",
|
"Azure AI Speech": "Ομιλία Azure AI",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Σχεδίαση",
|
"Draw": "Σχεδίαση",
|
||||||
"Drop any files here to add to the conversation": "Αφήστε οποιαδήποτε αρχεία εδώ για να προστεθούν στη συνομιλία",
|
"Drop any files here to add to the conversation": "Αφήστε οποιαδήποτε αρχεία εδώ για να προστεθούν στη συνομιλία",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "π.χ. '30s','10m'. Οι έγκυρες μονάδες χρόνου είναι 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "π.χ. '30s','10m'. Οι έγκυρες μονάδες χρόνου είναι 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "π.χ. Ένα φίλτρο για να αφαιρέσετε βρισιές από το κείμενο",
|
"e.g. A filter to remove profanity from text": "π.χ. Ένα φίλτρο για να αφαιρέσετε βρισιές από το κείμενο",
|
||||||
"e.g. My Filter": "π.χ. Το Φίλτρου Μου",
|
"e.g. My Filter": "π.χ. Το Φίλτρου Μου",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Εξαίρεση",
|
"Exclude": "Εξαίρεση",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Πειραματικό",
|
"Experimental": "Πειραματικό",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Εξωτερικά Μοντέλα",
|
"External Models": "Εξωτερικά Μοντέλα",
|
||||||
"Failed to add file.": "Αποτυχία προσθήκης αρχείου.",
|
"Failed to add file.": "Αποτυχία προσθήκης αρχείου.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Αποτυχία δημιουργίας Κλειδιού API.",
|
"Failed to create API Key.": "Αποτυχία δημιουργίας Κλειδιού API.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου",
|
"Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Διεπαφή",
|
"Interface": "Διεπαφή",
|
||||||
"Invalid file format.": "Μη έγκυρη μορφή αρχείου.",
|
"Invalid file format.": "Μη έγκυρη μορφή αρχείου.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Μη έγκυρη Ετικέτα",
|
"Invalid Tag": "Μη έγκυρη Ετικέτα",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Ιανουάριος",
|
"January": "Ιανουάριος",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Έκδοση",
|
"Version": "Έκδοση",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Έκδοση {{selectedVersion}} από {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Έκδοση {{selectedVersion}} από {{totalVersions}}",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Ορατότητα",
|
"Visibility": "Ορατότητα",
|
||||||
"Voice": "Φωνή",
|
"Voice": "Φωνή",
|
||||||
"Voice Input": "Εισαγωγή Φωνής",
|
"Voice Input": "Εισαγωγή Φωνής",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "",
|
"AUTOMATIC1111 Base URL": "",
|
||||||
"AUTOMATIC1111 Base URL is required.": "",
|
"AUTOMATIC1111 Base URL is required.": "",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "",
|
"available!": "",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "",
|
"Drop any files here to add to the conversation": "",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "",
|
"Experimental": "",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "",
|
"Failed to create API Key.": "",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "",
|
"Failed to read clipboard contents": "",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "",
|
"Interface": "",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "",
|
"Invalid Tag": "",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "",
|
"January": "",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "",
|
"Version": "",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "",
|
"AUTOMATIC1111 Base URL": "",
|
||||||
"AUTOMATIC1111 Base URL is required.": "",
|
"AUTOMATIC1111 Base URL is required.": "",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "",
|
"available!": "",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "",
|
"Drop any files here to add to the conversation": "",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "",
|
"Experimental": "",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "",
|
"Failed to create API Key.": "",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "",
|
"Failed to read clipboard contents": "",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "",
|
"Interface": "",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "",
|
"Invalid Tag": "",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "",
|
"January": "",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "",
|
"Version": "",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "Dirección URL de AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "Dirección URL de AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "La dirección URL de AUTOMATIC1111 es requerida.",
|
"AUTOMATIC1111 Base URL is required.": "La dirección URL de AUTOMATIC1111 es requerida.",
|
||||||
"Available list": "Lista disponible",
|
"Available list": "Lista disponible",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "¡disponible!",
|
"available!": "¡disponible!",
|
||||||
"Awful": "Horrible",
|
"Awful": "Horrible",
|
||||||
"Azure AI Speech": "Voz de Azure AI",
|
"Azure AI Speech": "Voz de Azure AI",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Dibujar",
|
"Draw": "Dibujar",
|
||||||
"Drop any files here to add to the conversation": "Suelta cualquier archivo aquí para agregarlo a la conversación",
|
"Drop any files here to add to the conversation": "Suelta cualquier archivo aquí para agregarlo a la conversación",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas de tiempo son 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas de tiempo son 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "ej. 60",
|
"e.g. 60": "ej. 60",
|
||||||
"e.g. A filter to remove profanity from text": "p.ej. Un filtro para eliminar la profanidad del texto",
|
"e.g. A filter to remove profanity from text": "p.ej. Un filtro para eliminar la profanidad del texto",
|
||||||
"e.g. My Filter": "p.ej. Mi Filtro",
|
"e.g. My Filter": "p.ej. Mi Filtro",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "Se excedió el número de asientos en su licencia. Por favor, contacte al soporte para aumentar el número de asientos.",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "Se excedió el número de asientos en su licencia. Por favor, contacte al soporte para aumentar el número de asientos.",
|
||||||
"Exclude": "Excluir",
|
"Exclude": "Excluir",
|
||||||
"Execute code for analysis": "Ejecutar código para análisis",
|
"Execute code for analysis": "Ejecutar código para análisis",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "Expandir",
|
"Expand": "Expandir",
|
||||||
"Experimental": "Experimental",
|
"Experimental": "Experimental",
|
||||||
"Explain": "Explicar",
|
"Explain": "Explicar",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "Externo",
|
"External": "Externo",
|
||||||
"External Models": "Modelos Externos",
|
"External Models": "Modelos Externos",
|
||||||
"Failed to add file.": "No se pudo agregar el archivo.",
|
"Failed to add file.": "No se pudo agregar el archivo.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "No se pudo crear la clave API.",
|
"Failed to create API Key.": "No se pudo crear la clave API.",
|
||||||
"Failed to fetch models": "No se pudieron obtener los modelos",
|
"Failed to fetch models": "No se pudieron obtener los modelos",
|
||||||
"Failed to read clipboard contents": "No se pudo leer el contenido del portapapeles",
|
"Failed to read clipboard contents": "No se pudo leer el contenido del portapapeles",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "Integración",
|
"Integration": "Integración",
|
||||||
"Interface": "Interfaz",
|
"Interface": "Interfaz",
|
||||||
"Invalid file format.": "Formato de archivo inválido.",
|
"Invalid file format.": "Formato de archivo inválido.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Etiqueta Inválida",
|
"Invalid Tag": "Etiqueta Inválida",
|
||||||
"is typing...": "está escribiendo...",
|
"is typing...": "está escribiendo...",
|
||||||
"January": "Enero",
|
"January": "Enero",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versión",
|
"Version": "Versión",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Versión {{selectedVersion}} de {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Versión {{selectedVersion}} de {{totalVersions}}",
|
||||||
"View Replies": "Ver respuestas",
|
"View Replies": "Ver respuestas",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Visibilidad",
|
"Visibility": "Visibilidad",
|
||||||
"Voice": "Voz",
|
"Voice": "Voz",
|
||||||
"Voice Input": "Entrada de voz",
|
"Voice Input": "Entrada de voz",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 baas-URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 baas-URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 baas-URL on nõutav.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 baas-URL on nõutav.",
|
||||||
"Available list": "Saadaolevate nimekiri",
|
"Available list": "Saadaolevate nimekiri",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "saadaval!",
|
"available!": "saadaval!",
|
||||||
"Awful": "Kohutav",
|
"Awful": "Kohutav",
|
||||||
"Azure AI Speech": "Azure AI Kõne",
|
"Azure AI Speech": "Azure AI Kõne",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Joonista",
|
"Draw": "Joonista",
|
||||||
"Drop any files here to add to the conversation": "Lohistage siia mistahes failid, et lisada need vestlusele",
|
"Drop any files here to add to the conversation": "Lohistage siia mistahes failid, et lisada need vestlusele",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "nt '30s', '10m'. Kehtivad ajaühikud on 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "nt '30s', '10m'. Kehtivad ajaühikud on 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "nt 60",
|
"e.g. 60": "nt 60",
|
||||||
"e.g. A filter to remove profanity from text": "nt filter, mis eemaldab tekstist roppused",
|
"e.g. A filter to remove profanity from text": "nt filter, mis eemaldab tekstist roppused",
|
||||||
"e.g. My Filter": "nt Minu Filter",
|
"e.g. My Filter": "nt Minu Filter",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "Ületasite litsentsis määratud istekohtade arvu. Palun võtke ühendust toega, et suurendada istekohtade arvu.",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "Ületasite litsentsis määratud istekohtade arvu. Palun võtke ühendust toega, et suurendada istekohtade arvu.",
|
||||||
"Exclude": "Välista",
|
"Exclude": "Välista",
|
||||||
"Execute code for analysis": "Käivita kood analüüsimiseks",
|
"Execute code for analysis": "Käivita kood analüüsimiseks",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "Laienda",
|
"Expand": "Laienda",
|
||||||
"Experimental": "Katsetuslik",
|
"Experimental": "Katsetuslik",
|
||||||
"Explain": "Selgita",
|
"Explain": "Selgita",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Välised mudelid",
|
"External Models": "Välised mudelid",
|
||||||
"Failed to add file.": "Faili lisamine ebaõnnestus.",
|
"Failed to add file.": "Faili lisamine ebaõnnestus.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "API võtme loomine ebaõnnestus.",
|
"Failed to create API Key.": "API võtme loomine ebaõnnestus.",
|
||||||
"Failed to fetch models": "Mudelite toomine ebaõnnestus",
|
"Failed to fetch models": "Mudelite toomine ebaõnnestus",
|
||||||
"Failed to read clipboard contents": "Lõikelaua sisu lugemine ebaõnnestus",
|
"Failed to read clipboard contents": "Lõikelaua sisu lugemine ebaõnnestus",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "Integratsioon",
|
"Integration": "Integratsioon",
|
||||||
"Interface": "Kasutajaliides",
|
"Interface": "Kasutajaliides",
|
||||||
"Invalid file format.": "Vigane failiformaat.",
|
"Invalid file format.": "Vigane failiformaat.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Vigane silt",
|
"Invalid Tag": "Vigane silt",
|
||||||
"is typing...": "kirjutab...",
|
"is typing...": "kirjutab...",
|
||||||
"January": "Jaanuar",
|
"January": "Jaanuar",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versioon",
|
"Version": "Versioon",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Versioon {{selectedVersion}} / {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Versioon {{selectedVersion}} / {{totalVersions}}",
|
||||||
"View Replies": "Vaata vastuseid",
|
"View Replies": "Vaata vastuseid",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Nähtavus",
|
"Visibility": "Nähtavus",
|
||||||
"Voice": "Hääl",
|
"Voice": "Hääl",
|
||||||
"Voice Input": "Hääle sisend",
|
"Voice Input": "Hääle sisend",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Oinarri URLa",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Oinarri URLa",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Oinarri URLa beharrezkoa da.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Oinarri URLa beharrezkoa da.",
|
||||||
"Available list": "Zerrenda erabilgarria",
|
"Available list": "Zerrenda erabilgarria",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "eskuragarri!",
|
"available!": "eskuragarri!",
|
||||||
"Awful": "Penagarria",
|
"Awful": "Penagarria",
|
||||||
"Azure AI Speech": "Azure AI Hizketa",
|
"Azure AI Speech": "Azure AI Hizketa",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Marraztu",
|
"Draw": "Marraztu",
|
||||||
"Drop any files here to add to the conversation": "Jaregin edozein fitxategi hemen elkarrizketara gehitzeko",
|
"Drop any files here to add to the conversation": "Jaregin edozein fitxategi hemen elkarrizketara gehitzeko",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "adib. '30s','10m'. Denbora unitate baliodunak dira 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "adib. '30s','10m'. Denbora unitate baliodunak dira 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "adib. Testutik lizunkeriak kentzeko iragazki bat",
|
"e.g. A filter to remove profanity from text": "adib. Testutik lizunkeriak kentzeko iragazki bat",
|
||||||
"e.g. My Filter": "adib. Nire Iragazkia",
|
"e.g. My Filter": "adib. Nire Iragazkia",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Baztertu",
|
"Exclude": "Baztertu",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Esperimentala",
|
"Experimental": "Esperimentala",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Kanpoko Ereduak",
|
"External Models": "Kanpoko Ereduak",
|
||||||
"Failed to add file.": "Huts egin du fitxategia gehitzean.",
|
"Failed to add file.": "Huts egin du fitxategia gehitzean.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Huts egin du API Gakoa sortzean.",
|
"Failed to create API Key.": "Huts egin du API Gakoa sortzean.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean",
|
"Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interfazea",
|
"Interface": "Interfazea",
|
||||||
"Invalid file format.": "Fitxategi formatu baliogabea.",
|
"Invalid file format.": "Fitxategi formatu baliogabea.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Etiketa Baliogabea",
|
"Invalid Tag": "Etiketa Baliogabea",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Urtarrila",
|
"January": "Urtarrila",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Bertsioa",
|
"Version": "Bertsioa",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "{{totalVersions}}-tik {{selectedVersion}}. bertsioa",
|
"Version {{selectedVersion}} of {{totalVersions}}": "{{totalVersions}}-tik {{selectedVersion}}. bertsioa",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Ikusgarritasuna",
|
"Visibility": "Ikusgarritasuna",
|
||||||
"Voice": "Ahotsa",
|
"Voice": "Ahotsa",
|
||||||
"Voice Input": "Ahots sarrera",
|
"Voice Input": "Ahots sarrera",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "پایه URL AUTOMATIC1111 ",
|
"AUTOMATIC1111 Base URL": "پایه URL AUTOMATIC1111 ",
|
||||||
"AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.",
|
"AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.",
|
||||||
"Available list": "فهرست دردسترس",
|
"Available list": "فهرست دردسترس",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "در دسترس!",
|
"available!": "در دسترس!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "سخنگوی هوش\u200cمصنوعی Azure",
|
"Azure AI Speech": "سخنگوی هوش\u200cمصنوعی Azure",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "هر فایلی را اینجا رها کنید تا به مکالمه اضافه شود",
|
"Drop any files here to add to the conversation": "هر فایلی را اینجا رها کنید تا به مکالمه اضافه شود",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "آزمایشی",
|
"Experimental": "آزمایشی",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "مدل\u200cهای بیرونی",
|
"External Models": "مدل\u200cهای بیرونی",
|
||||||
"Failed to add file.": "خطا در افزودن پرونده",
|
"Failed to add file.": "خطا در افزودن پرونده",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "ایجاد کلید API با خطا مواجه شد.",
|
"Failed to create API Key.": "ایجاد کلید API با خطا مواجه شد.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
|
"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "رابط",
|
"Interface": "رابط",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "تگ نامعتبر",
|
"Invalid Tag": "تگ نامعتبر",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "ژانویه",
|
"January": "ژانویه",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "نسخه",
|
"Version": "نسخه",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "نسخهٔ {{selectedVersion}} از {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "نسخهٔ {{selectedVersion}} از {{totalVersions}}",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "صوت",
|
"Voice": "صوت",
|
||||||
"Voice Input": "ورودی صوتی",
|
"Voice Input": "ورودی صوتی",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111-perus-URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111-perus-URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-perus-URL vaaditaan.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-perus-URL vaaditaan.",
|
||||||
"Available list": "Käytettävissä oleva luettelo",
|
"Available list": "Käytettävissä oleva luettelo",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "saatavilla!",
|
"available!": "saatavilla!",
|
||||||
"Awful": "Kauhea",
|
"Awful": "Kauhea",
|
||||||
"Azure AI Speech": "Azure AI Speech",
|
"Azure AI Speech": "Azure AI Speech",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Piirros",
|
"Draw": "Piirros",
|
||||||
"Drop any files here to add to the conversation": "Pudota tiedostoja tähän lisätäksesi ne keskusteluun",
|
"Drop any files here to add to the conversation": "Pudota tiedostoja tähän lisätäksesi ne keskusteluun",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "esim. '30s', '10m'. Kelpoiset aikayksiköt ovat 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "esim. '30s', '10m'. Kelpoiset aikayksiköt ovat 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "esim. 60",
|
"e.g. 60": "esim. 60",
|
||||||
"e.g. A filter to remove profanity from text": "esim. suodatin, joka poistaa kirosanoja tekstistä",
|
"e.g. A filter to remove profanity from text": "esim. suodatin, joka poistaa kirosanoja tekstistä",
|
||||||
"e.g. My Filter": "esim. Oma suodatin",
|
"e.g. My Filter": "esim. Oma suodatin",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Jätä pois",
|
"Exclude": "Jätä pois",
|
||||||
"Execute code for analysis": "Suorita koodi analysointia varten",
|
"Execute code for analysis": "Suorita koodi analysointia varten",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "Laajenna",
|
"Expand": "Laajenna",
|
||||||
"Experimental": "Kokeellinen",
|
"Experimental": "Kokeellinen",
|
||||||
"Explain": "Selitä",
|
"Explain": "Selitä",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Ulkoiset mallit",
|
"External Models": "Ulkoiset mallit",
|
||||||
"Failed to add file.": "Tiedoston lisääminen epäonnistui.",
|
"Failed to add file.": "Tiedoston lisääminen epäonnistui.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "API-avaimen luonti epäonnistui.",
|
"Failed to create API Key.": "API-avaimen luonti epäonnistui.",
|
||||||
"Failed to fetch models": "Mallien hakeminen epäonnistui",
|
"Failed to fetch models": "Mallien hakeminen epäonnistui",
|
||||||
"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
|
"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "Integrointi",
|
"Integration": "Integrointi",
|
||||||
"Interface": "Käyttöliittymä",
|
"Interface": "Käyttöliittymä",
|
||||||
"Invalid file format.": "Virheellinen tiedostomuoto.",
|
"Invalid file format.": "Virheellinen tiedostomuoto.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Virheellinen tagi",
|
"Invalid Tag": "Virheellinen tagi",
|
||||||
"is typing...": "Kirjoittaa...",
|
"is typing...": "Kirjoittaa...",
|
||||||
"January": "tammikuu",
|
"January": "tammikuu",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versio",
|
"Version": "Versio",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Versio {{selectedVersion}} / {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Versio {{selectedVersion}} / {{totalVersions}}",
|
||||||
"View Replies": "Näytä vastaukset",
|
"View Replies": "Näytä vastaukset",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Näkyvyys",
|
"Visibility": "Näkyvyys",
|
||||||
"Voice": "Ääni",
|
"Voice": "Ääni",
|
||||||
"Voice Input": "Äänitulolaitteen käyttö",
|
"Voice Input": "Äänitulolaitteen käyttö",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
|
"AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "disponible !",
|
"available!": "disponible !",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
|
"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Expérimental",
|
"Experimental": "Expérimental",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Modèles externes",
|
"External Models": "Modèles externes",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Échec de la création de la clé API.",
|
"Failed to create API Key.": "Échec de la création de la clé API.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
|
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interface utilisateur",
|
"Interface": "Interface utilisateur",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Étiquette non valide",
|
"Invalid Tag": "Étiquette non valide",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Janvier",
|
"January": "Janvier",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Version améliorée",
|
"Version": "Version améliorée",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "Voix",
|
"Voice": "Voix",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
|
"AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
|
||||||
"Available list": "Liste disponible",
|
"Available list": "Liste disponible",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "disponible !",
|
"available!": "disponible !",
|
||||||
"Awful": "Horrible",
|
"Awful": "Horrible",
|
||||||
"Azure AI Speech": "Azure AI Speech",
|
"Azure AI Speech": "Azure AI Speech",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Match nul",
|
"Draw": "Match nul",
|
||||||
"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
|
"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "par ex. un filtre pour retirer les vulgarités du texte",
|
"e.g. A filter to remove profanity from text": "par ex. un filtre pour retirer les vulgarités du texte",
|
||||||
"e.g. My Filter": "par ex. Mon Filtre",
|
"e.g. My Filter": "par ex. Mon Filtre",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Exclure",
|
"Exclude": "Exclure",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Expérimental",
|
"Experimental": "Expérimental",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Modèles externes",
|
"External Models": "Modèles externes",
|
||||||
"Failed to add file.": "Échec de l'ajout du fichier.",
|
"Failed to add file.": "Échec de l'ajout du fichier.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Échec de la création de la clé API.",
|
"Failed to create API Key.": "Échec de la création de la clé API.",
|
||||||
"Failed to fetch models": "Échec de la récupération des modèles",
|
"Failed to fetch models": "Échec de la récupération des modèles",
|
||||||
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
|
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interface utilisateur",
|
"Interface": "Interface utilisateur",
|
||||||
"Invalid file format.": "Format de fichier non valide.",
|
"Invalid file format.": "Format de fichier non valide.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Tag non valide",
|
"Invalid Tag": "Tag non valide",
|
||||||
"is typing...": "est en train d'écrire...",
|
"is typing...": "est en train d'écrire...",
|
||||||
"January": "Janvier",
|
"January": "Janvier",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Version:",
|
"Version": "Version:",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} de {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} de {{totalVersions}}",
|
||||||
"View Replies": "Voir les réponses",
|
"View Replies": "Voir les réponses",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Visibilité",
|
"Visibility": "Visibilité",
|
||||||
"Voice": "Voix",
|
"Voice": "Voix",
|
||||||
"Voice Input": "Saisie vocale",
|
"Voice Input": "Saisie vocale",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "כתובת URL בסיסית של AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "כתובת URL בסיסית של AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "נדרשת כתובת URL בסיסית של AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL is required.": "נדרשת כתובת URL בסיסית של AUTOMATIC1111",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "זמין!",
|
"available!": "זמין!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "גרור כל קובץ לכאן כדי להוסיף לשיחה",
|
"Drop any files here to add to the conversation": "גרור כל קובץ לכאן כדי להוסיף לשיחה",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "למשל '30s', '10m'. יחידות זמן חוקיות הן 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "למשל '30s', '10m'. יחידות זמן חוקיות הן 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "ניסיוני",
|
"Experimental": "ניסיוני",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "יצירת מפתח API נכשלה.",
|
"Failed to create API Key.": "יצירת מפתח API נכשלה.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
|
"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "ממשק",
|
"Interface": "ממשק",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "תג לא חוקי",
|
"Invalid Tag": "תג לא חוקי",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "ינואר",
|
"January": "ינואר",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "גרסה",
|
"Version": "גרסה",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 बेस यूआरएल",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 बेस यूआरएल",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 का बेस यूआरएल आवश्यक है।",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 का बेस यूआरएल आवश्यक है।",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "उपलब्ध!",
|
"available!": "उपलब्ध!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "बातचीत में जोड़ने के लिए कोई भी फ़ाइल यहां छोड़ें",
|
"Drop any files here to add to the conversation": "बातचीत में जोड़ने के लिए कोई भी फ़ाइल यहां छोड़ें",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "जैसे '30s', '10m', मान्य समय इकाइयाँ 's', 'm', 'h' हैं।",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "जैसे '30s', '10m', मान्य समय इकाइयाँ 's', 'm', 'h' हैं।",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "प्रयोगात्मक",
|
"Experimental": "प्रयोगात्मक",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "एपीआई कुंजी बनाने में विफल.",
|
"Failed to create API Key.": "एपीआई कुंजी बनाने में विफल.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
|
"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "इंटरफेस",
|
"Interface": "इंटरफेस",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "अवैध टैग",
|
"Invalid Tag": "अवैध टैग",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "जनवरी",
|
"January": "जनवरी",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "संस्करण",
|
"Version": "संस्करण",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 osnovni URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 osnovni URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.",
|
"AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "dostupno!",
|
"available!": "dostupno!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Spustite bilo koje datoteke ovdje za dodavanje u razgovor",
|
"Drop any files here to add to the conversation": "Spustite bilo koje datoteke ovdje za dodavanje u razgovor",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Eksperimentalno",
|
"Experimental": "Eksperimentalno",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Vanjski modeli",
|
"External Models": "Vanjski modeli",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Neuspješno stvaranje API ključa.",
|
"Failed to create API Key.": "Neuspješno stvaranje API ključa.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
|
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Sučelje",
|
"Interface": "Sučelje",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Nevažeća oznaka",
|
"Invalid Tag": "Nevažeća oznaka",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Siječanj",
|
"January": "Siječanj",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Verzija",
|
"Version": "Verzija",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 alap URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 alap URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 alap URL szükséges.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 alap URL szükséges.",
|
||||||
"Available list": "Elérhető lista",
|
"Available list": "Elérhető lista",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "elérhető!",
|
"available!": "elérhető!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "Azure AI beszéd",
|
"Azure AI Speech": "Azure AI beszéd",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Rajzolás",
|
"Draw": "Rajzolás",
|
||||||
"Drop any files here to add to the conversation": "Húzz ide fájlokat a beszélgetéshez való hozzáadáshoz",
|
"Drop any files here to add to the conversation": "Húzz ide fájlokat a beszélgetéshez való hozzáadáshoz",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pl. '30s','10m'. Érvényes időegységek: 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pl. '30s','10m'. Érvényes időegységek: 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Kizárás",
|
"Exclude": "Kizárás",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Kísérleti",
|
"Experimental": "Kísérleti",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Külső modellek",
|
"External Models": "Külső modellek",
|
||||||
"Failed to add file.": "Nem sikerült hozzáadni a fájlt.",
|
"Failed to add file.": "Nem sikerült hozzáadni a fájlt.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Nem sikerült létrehozni az API kulcsot.",
|
"Failed to create API Key.": "Nem sikerült létrehozni az API kulcsot.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát",
|
"Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Felület",
|
"Interface": "Felület",
|
||||||
"Invalid file format.": "Érvénytelen fájlformátum.",
|
"Invalid file format.": "Érvénytelen fájlformátum.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Érvénytelen címke",
|
"Invalid Tag": "Érvénytelen címke",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Január",
|
"January": "Január",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Verzió",
|
"Version": "Verzió",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "{{selectedVersion}}. verzió a {{totalVersions}}-ból",
|
"Version {{selectedVersion}} of {{totalVersions}}": "{{selectedVersion}}. verzió a {{totalVersions}}-ból",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "Hang",
|
"Voice": "Hang",
|
||||||
"Voice Input": "Hangbevitel",
|
"Voice Input": "Hangbevitel",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL Dasar AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL Dasar AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 URL Dasar diperlukan.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 URL Dasar diperlukan.",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "tersedia!",
|
"available!": "tersedia!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Letakkan file apa pun di sini untuk ditambahkan ke percakapan",
|
"Drop any files here to add to the conversation": "Letakkan file apa pun di sini untuk ditambahkan ke percakapan",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "misalnya '30-an', '10m'. Satuan waktu yang valid adalah 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "misalnya '30-an', '10m'. Satuan waktu yang valid adalah 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Percobaan",
|
"Experimental": "Percobaan",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Model Eksternal",
|
"External Models": "Model Eksternal",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Gagal membuat API Key.",
|
"Failed to create API Key.": "Gagal membuat API Key.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
|
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Antarmuka",
|
"Interface": "Antarmuka",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Tag tidak valid",
|
"Invalid Tag": "Tag tidak valid",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Januari",
|
"January": "Januari",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versi",
|
"Version": "Versi",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "Suara",
|
"Voice": "Suara",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "UATHOIBRÍOCH1111 Bun URL",
|
"AUTOMATIC1111 Base URL": "UATHOIBRÍOCH1111 Bun URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Tá URL bonn UATHOIBRÍOCH1111 ag teastáil.",
|
"AUTOMATIC1111 Base URL is required.": "Tá URL bonn UATHOIBRÍOCH1111 ag teastáil.",
|
||||||
"Available list": "Liosta atá ar fáil",
|
"Available list": "Liosta atá ar fáil",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "ar fáil!",
|
"available!": "ar fáil!",
|
||||||
"Awful": "Uafásach",
|
"Awful": "Uafásach",
|
||||||
"Azure AI Speech": "Óráid Azure AI",
|
"Azure AI Speech": "Óráid Azure AI",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Tarraing",
|
"Draw": "Tarraing",
|
||||||
"Drop any files here to add to the conversation": "Scaoil aon chomhaid anseo le cur leis an gcomhrá",
|
"Drop any files here to add to the conversation": "Scaoil aon chomhaid anseo le cur leis an gcomhrá",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "m.sh. '30s', '10m'. Is iad aonaid ama bailí ná 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "m.sh. '30s', '10m'. Is iad aonaid ama bailí ná 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "m.sh. 60",
|
"e.g. 60": "m.sh. 60",
|
||||||
"e.g. A filter to remove profanity from text": "m.h. Scagaire chun profanity a bhaint as téacs",
|
"e.g. A filter to remove profanity from text": "m.h. Scagaire chun profanity a bhaint as téacs",
|
||||||
"e.g. My Filter": "m.sh. Mo Scagaire",
|
"e.g. My Filter": "m.sh. Mo Scagaire",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Eisigh",
|
"Exclude": "Eisigh",
|
||||||
"Execute code for analysis": "Íosluchtaigh cód le haghaidh anailíse",
|
"Execute code for analysis": "Íosluchtaigh cód le haghaidh anailíse",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Turgnamhach",
|
"Experimental": "Turgnamhach",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Múnlaí Seachtracha",
|
"External Models": "Múnlaí Seachtracha",
|
||||||
"Failed to add file.": "Theip ar an gcomhad a chur leis.",
|
"Failed to add file.": "Theip ar an gcomhad a chur leis.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Theip ar an eochair API a chruthú.",
|
"Failed to create API Key.": "Theip ar an eochair API a chruthú.",
|
||||||
"Failed to fetch models": "Theip ar shamhlacha a fháil",
|
"Failed to fetch models": "Theip ar shamhlacha a fháil",
|
||||||
"Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé",
|
"Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "Comhtháthú",
|
"Integration": "Comhtháthú",
|
||||||
"Interface": "Comhéadan",
|
"Interface": "Comhéadan",
|
||||||
"Invalid file format.": "Formáid comhaid neamhbhailí.",
|
"Invalid file format.": "Formáid comhaid neamhbhailí.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Clib neamhbhailí",
|
"Invalid Tag": "Clib neamhbhailí",
|
||||||
"is typing...": "ag clóscríobh...",
|
"is typing...": "ag clóscríobh...",
|
||||||
"January": "Eanáir",
|
"January": "Eanáir",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Leagan",
|
"Version": "Leagan",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Leagan {{selectedVersion}} de {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Leagan {{selectedVersion}} de {{totalVersions}}",
|
||||||
"View Replies": "Féach ar Fhreagraí",
|
"View Replies": "Féach ar Fhreagraí",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Infheictheacht",
|
"Visibility": "Infheictheacht",
|
||||||
"Voice": "Guth",
|
"Voice": "Guth",
|
||||||
"Voice Input": "Ionchur Gutha",
|
"Voice Input": "Ionchur Gutha",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL base AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL base AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.",
|
"AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "disponibile!",
|
"available!": "disponibile!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Trascina qui i file da aggiungere alla conversazione",
|
"Drop any files here to add to the conversation": "Trascina qui i file da aggiungere alla conversazione",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Sperimentale",
|
"Experimental": "Sperimentale",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Impossibile creare la chiave API.",
|
"Failed to create API Key.": "Impossibile creare la chiave API.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
|
"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interfaccia",
|
"Interface": "Interfaccia",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Tag non valido",
|
"Invalid Tag": "Tag non valido",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Gennaio",
|
"January": "Gennaio",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versione",
|
"Version": "Versione",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ベース URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ベース URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。",
|
||||||
"Available list": "利用可能リスト",
|
"Available list": "利用可能リスト",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "利用可能!",
|
"available!": "利用可能!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "AzureAIスピーチ",
|
"Azure AI Speech": "AzureAIスピーチ",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "会話を追加するには、ここにファイルをドロップしてください",
|
"Drop any files here to add to the conversation": "会話を追加するには、ここにファイルをドロップしてください",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30秒'、'10分'。有効な時間単位は '秒'、'分'、'時間' です。",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30秒'、'10分'。有効な時間単位は '秒'、'分'、'時間' です。",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "実験的",
|
"Experimental": "実験的",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "外部モデル",
|
"External Models": "外部モデル",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "APIキーの作成に失敗しました。",
|
"Failed to create API Key.": "APIキーの作成に失敗しました。",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした",
|
"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "インターフェース",
|
"Interface": "インターフェース",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "無効なタグ",
|
"Invalid Tag": "無効なタグ",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "1月",
|
"January": "1月",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "バージョン",
|
"Version": "バージョン",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "ボイス",
|
"Voice": "ボイス",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 საბაზისო მისამართი",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 საბაზისო მისამართი",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია.",
|
||||||
"Available list": "ხელმისაწვდომი სია",
|
"Available list": "ხელმისაწვდომი სია",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "ხელმისაწვდომია!",
|
"available!": "ხელმისაწვდომია!",
|
||||||
"Awful": "საშინელი",
|
"Awful": "საშინელი",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "ხატვა",
|
"Draw": "ხატვა",
|
||||||
"Drop any files here to add to the conversation": "დაყარეთ ფაილები აქ მათი საუბარში ჩასამატებლად",
|
"Drop any files here to add to the conversation": "დაყარეთ ფაილები აქ მათი საუბარში ჩასამატებლად",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგ: '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგ: '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "მაგ: 60",
|
"e.g. 60": "მაგ: 60",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "მაგ: ჩემი ფილტრი",
|
"e.g. My Filter": "მაგ: ჩემი ფილტრი",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "გამორიცხვა",
|
"Exclude": "გამორიცხვა",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "ექსპერიმენტული",
|
"Experimental": "ექსპერიმენტული",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "ფაილის დამატების შეცდომა.",
|
"Failed to add file.": "ფაილის დამატების შეცდომა.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "API-ის გასაღების შექმნა ჩავარდა.",
|
"Failed to create API Key.": "API-ის გასაღების შექმნა ჩავარდა.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "ბუფერის შემცველობის წაკითხვა ჩავარდა",
|
"Failed to read clipboard contents": "ბუფერის შემცველობის წაკითხვა ჩავარდა",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "ინტერფეისი",
|
"Interface": "ინტერფეისი",
|
||||||
"Invalid file format.": "არასწორი ფაილის ფორმატი.",
|
"Invalid file format.": "არასწორი ფაილის ფორმატი.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "არასწორი ჭდე",
|
"Invalid Tag": "არასწორი ჭდე",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "იანვარი",
|
"January": "იანვარი",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "ვერსია",
|
"Version": "ვერსია",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "ხილვადობა",
|
"Visibility": "ხილვადობა",
|
||||||
"Voice": "ხმა",
|
"Voice": "ხმა",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 기본 URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 기본 URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 기본 URL 설정이 필요합니다.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 기본 URL 설정이 필요합니다.",
|
||||||
"Available list": "가능한 목록",
|
"Available list": "가능한 목록",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "사용 가능!",
|
"available!": "사용 가능!",
|
||||||
"Awful": "끔찍함",
|
"Awful": "끔찍함",
|
||||||
"Azure AI Speech": "Azure AI 음성",
|
"Azure AI Speech": "Azure AI 음성",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "그리기",
|
"Draw": "그리기",
|
||||||
"Drop any files here to add to the conversation": "대화에 추가할 파일을 여기에 드롭하세요.",
|
"Drop any files here to add to the conversation": "대화에 추가할 파일을 여기에 드롭하세요.",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30초','10분'. 유효한 시간 단위는 '초', '분', '시'입니다.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30초','10분'. 유효한 시간 단위는 '초', '분', '시'입니다.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "미포함",
|
"Exclude": "미포함",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "실험적",
|
"Experimental": "실험적",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "외부 모델",
|
"External Models": "외부 모델",
|
||||||
"Failed to add file.": "파일추가에 실패했습니다",
|
"Failed to add file.": "파일추가에 실패했습니다",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "API 키 생성에 실패했습니다.",
|
"Failed to create API Key.": "API 키 생성에 실패했습니다.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다.",
|
"Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다.",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "인터페이스",
|
"Interface": "인터페이스",
|
||||||
"Invalid file format.": "잘못된 파일 형식",
|
"Invalid file format.": "잘못된 파일 형식",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "잘못된 태그",
|
"Invalid Tag": "잘못된 태그",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "1월",
|
"January": "1월",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "버전",
|
"Version": "버전",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "버전 {{totalVersions}}의 {{selectedVersion}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "버전 {{totalVersions}}의 {{selectedVersion}}",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "공개 범위",
|
"Visibility": "공개 범위",
|
||||||
"Voice": "음성",
|
"Voice": "음성",
|
||||||
"Voice Input": "음성 입력",
|
"Voice Input": "음성 입력",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bazės nuoroda",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bazės nuoroda",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bazės nuoroda reikalinga.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bazės nuoroda reikalinga.",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "prieinama!",
|
"available!": "prieinama!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Įkelkite dokumentus čia, kad juos pridėti į pokalbį",
|
"Drop any files here to add to the conversation": "Įkelkite dokumentus čia, kad juos pridėti į pokalbį",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pvz. '30s', '10m'. Laiko vienetai yra 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pvz. '30s', '10m'. Laiko vienetai yra 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Eksperimentinis",
|
"Experimental": "Eksperimentinis",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Išoriniai modeliai",
|
"External Models": "Išoriniai modeliai",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Nepavyko sukurti API rakto",
|
"Failed to create API Key.": "Nepavyko sukurti API rakto",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
|
"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Sąsaja",
|
"Interface": "Sąsaja",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Neteisinga žyma",
|
"Invalid Tag": "Neteisinga žyma",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Sausis",
|
"January": "Sausis",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versija",
|
"Version": "Versija",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "Balsas",
|
"Voice": "Balsas",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL Asas AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL Asas AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "URL Asas AUTOMATIC1111 diperlukan.",
|
"AUTOMATIC1111 Base URL is required.": "URL Asas AUTOMATIC1111 diperlukan.",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "tersedia!",
|
"available!": "tersedia!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Letakkan mana-mana fail di sini untuk ditambahkan pada perbualan",
|
"Drop any files here to add to the conversation": "Letakkan mana-mana fail di sini untuk ditambahkan pada perbualan",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "cth '30s','10m'. Unit masa yang sah ialah 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "cth '30s','10m'. Unit masa yang sah ialah 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Percubaan",
|
"Experimental": "Percubaan",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Model Luaran",
|
"External Models": "Model Luaran",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Gagal mencipta kekunci API",
|
"Failed to create API Key.": "Gagal mencipta kekunci API",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
|
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Antaramuka",
|
"Interface": "Antaramuka",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Tag tidak sah",
|
"Invalid Tag": "Tag tidak sah",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Januari",
|
"January": "Januari",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versi",
|
"Version": "Versi",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "Suara",
|
"Voice": "Suara",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "Absolutt URL for AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "Absolutt URL for AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Absolutt URL for AUTOMATIC1111 kreves.",
|
"AUTOMATIC1111 Base URL is required.": "Absolutt URL for AUTOMATIC1111 kreves.",
|
||||||
"Available list": "Tilgjengelig liste",
|
"Available list": "Tilgjengelig liste",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "tilgjengelig!",
|
"available!": "tilgjengelig!",
|
||||||
"Awful": "Fælt",
|
"Awful": "Fælt",
|
||||||
"Azure AI Speech": "Azure AI-tale",
|
"Azure AI Speech": "Azure AI-tale",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Tegne",
|
"Draw": "Tegne",
|
||||||
"Drop any files here to add to the conversation": "Slipp filer her for å legge dem til i samtalen",
|
"Drop any files here to add to the conversation": "Slipp filer her for å legge dem til i samtalen",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s','10m'. Gyldige tidsenheter er 's', 'm', 't'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s','10m'. Gyldige tidsenheter er 's', 'm', 't'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "f.eks. 60",
|
"e.g. 60": "f.eks. 60",
|
||||||
"e.g. A filter to remove profanity from text": "f.eks. et filter for å fjerne banning fra tekst",
|
"e.g. A filter to remove profanity from text": "f.eks. et filter for å fjerne banning fra tekst",
|
||||||
"e.g. My Filter": "f.eks. Mitt filter",
|
"e.g. My Filter": "f.eks. Mitt filter",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Utelukk",
|
"Exclude": "Utelukk",
|
||||||
"Execute code for analysis": "Kjør kode for analyse",
|
"Execute code for analysis": "Kjør kode for analyse",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Eksperimentell",
|
"Experimental": "Eksperimentell",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Eksterne modeller",
|
"External Models": "Eksterne modeller",
|
||||||
"Failed to add file.": "Kan ikke legge til filen.",
|
"Failed to add file.": "Kan ikke legge til filen.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Kan ikke opprette en API-nøkkel.",
|
"Failed to create API Key.": "Kan ikke opprette en API-nøkkel.",
|
||||||
"Failed to fetch models": "Kan ikke hente modeller",
|
"Failed to fetch models": "Kan ikke hente modeller",
|
||||||
"Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold",
|
"Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Grensesnitt",
|
"Interface": "Grensesnitt",
|
||||||
"Invalid file format.": "Ugyldig filformat.",
|
"Invalid file format.": "Ugyldig filformat.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Ugyldig etikett",
|
"Invalid Tag": "Ugyldig etikett",
|
||||||
"is typing...": "Skriver...",
|
"is typing...": "Skriver...",
|
||||||
"January": "januar",
|
"January": "januar",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versjon",
|
"Version": "Versjon",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} av {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} av {{totalVersions}}",
|
||||||
"View Replies": "Vis svar",
|
"View Replies": "Vis svar",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Synlighet",
|
"Visibility": "Synlighet",
|
||||||
"Voice": "Stemme",
|
"Voice": "Stemme",
|
||||||
"Voice Input": "Taleinndata",
|
"Voice Input": "Taleinndata",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis-URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis-URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis-URL is verplicht",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis-URL is verplicht",
|
||||||
"Available list": "Beschikbare lijst",
|
"Available list": "Beschikbare lijst",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "beschikbaar!",
|
"available!": "beschikbaar!",
|
||||||
"Awful": "Verschrikkelijk",
|
"Awful": "Verschrikkelijk",
|
||||||
"Azure AI Speech": "Azure AI-spraak",
|
"Azure AI Speech": "Azure AI-spraak",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Teken",
|
"Draw": "Teken",
|
||||||
"Drop any files here to add to the conversation": "Sleep hier bestanden om toe te voegen aan het gesprek",
|
"Drop any files here to add to the conversation": "Sleep hier bestanden om toe te voegen aan het gesprek",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "bijv. Een filter om gevloek uit tekst te verwijderen",
|
"e.g. A filter to remove profanity from text": "bijv. Een filter om gevloek uit tekst te verwijderen",
|
||||||
"e.g. My Filter": "bijv. Mijn filter",
|
"e.g. My Filter": "bijv. Mijn filter",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Sluit uit",
|
"Exclude": "Sluit uit",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Experimenteel",
|
"Experimental": "Experimenteel",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Externe modules",
|
"External Models": "Externe modules",
|
||||||
"Failed to add file.": "Het is niet gelukt om het bestand toe te voegen.",
|
"Failed to add file.": "Het is niet gelukt om het bestand toe te voegen.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Kan API Key niet aanmaken.",
|
"Failed to create API Key.": "Kan API Key niet aanmaken.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
|
"Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interface",
|
"Interface": "Interface",
|
||||||
"Invalid file format.": "Ongeldig bestandsformaat",
|
"Invalid file format.": "Ongeldig bestandsformaat",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Ongeldige Tag",
|
"Invalid Tag": "Ongeldige Tag",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Januari",
|
"January": "Januari",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versie",
|
"Version": "Versie",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Versie {{selectedVersion}} van {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Versie {{selectedVersion}} van {{totalVersions}}",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Zichtbaarheid",
|
"Visibility": "Zichtbaarheid",
|
||||||
"Voice": "Stem",
|
"Voice": "Stem",
|
||||||
"Voice Input": "Steminvoer",
|
"Voice Input": "Steminvoer",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ਬੇਸ URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ਬੇਸ URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "ਉਪਲਬਧ ਹੈ!",
|
"available!": "ਉਪਲਬਧ ਹੈ!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "ਗੱਲਬਾਤ ਵਿੱਚ ਸ਼ਾਮਲ ਕਰਨ ਲਈ ਕੋਈ ਵੀ ਫਾਈਲ ਇੱਥੇ ਛੱਡੋ",
|
"Drop any files here to add to the conversation": "ਗੱਲਬਾਤ ਵਿੱਚ ਸ਼ਾਮਲ ਕਰਨ ਲਈ ਕੋਈ ਵੀ ਫਾਈਲ ਇੱਥੇ ਛੱਡੋ",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ਉਦਾਹਰਣ ਲਈ '30ਸ','10ਮਿ'. ਸਹੀ ਸਮਾਂ ਇਕਾਈਆਂ ਹਨ 'ਸ', 'ਮ', 'ਘੰ'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ਉਦਾਹਰਣ ਲਈ '30ਸ','10ਮਿ'. ਸਹੀ ਸਮਾਂ ਇਕਾਈਆਂ ਹਨ 'ਸ', 'ਮ', 'ਘੰ'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "ਪਰਮਾਣੂਕ੍ਰਿਤ",
|
"Experimental": "ਪਰਮਾਣੂਕ੍ਰਿਤ",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "API ਕੁੰਜੀ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ।",
|
"Failed to create API Key.": "API ਕੁੰਜੀ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ।",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
|
"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "ਇੰਟਰਫੇਸ",
|
"Interface": "ਇੰਟਰਫੇਸ",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "ਗਲਤ ਟੈਗ",
|
"Invalid Tag": "ਗਲਤ ਟੈਗ",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "ਜਨਵਰੀ",
|
"January": "ਜਨਵਰੀ",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "ਵਰਜਨ",
|
"Version": "ਵਰਜਨ",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "Automatic1111 - Domyślny adres URL",
|
"AUTOMATIC1111 Base URL": "Automatic1111 - Domyślny adres URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Automatic1111 - Adres podstawowy jest wymagany.",
|
"AUTOMATIC1111 Base URL is required.": "Automatic1111 - Adres podstawowy jest wymagany.",
|
||||||
"Available list": "Dostępna lista",
|
"Available list": "Dostępna lista",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "dostępny!",
|
"available!": "dostępny!",
|
||||||
"Awful": "Okropne",
|
"Awful": "Okropne",
|
||||||
"Azure AI Speech": "Azure AI Speech",
|
"Azure AI Speech": "Azure AI Speech",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Rysuj",
|
"Draw": "Rysuj",
|
||||||
"Drop any files here to add to the conversation": "Przeciągnij i upuść pliki tutaj, aby dodać je do rozmowy.",
|
"Drop any files here to add to the conversation": "Przeciągnij i upuść pliki tutaj, aby dodać je do rozmowy.",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s', '10m'. Poprawne jednostki czasu to: 's' (sekunda), 'm' (minuta), 'h' (godzina).",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s', '10m'. Poprawne jednostki czasu to: 's' (sekunda), 'm' (minuta), 'h' (godzina).",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "np. Filtr do usuwania wulgaryzmów z tekstu",
|
"e.g. A filter to remove profanity from text": "np. Filtr do usuwania wulgaryzmów z tekstu",
|
||||||
"e.g. My Filter": "np. Mój filtr",
|
"e.g. My Filter": "np. Mój filtr",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Wykluczyć",
|
"Exclude": "Wykluczyć",
|
||||||
"Execute code for analysis": "Wykonaj kod do analizy",
|
"Execute code for analysis": "Wykonaj kod do analizy",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Eksperymentalne",
|
"Experimental": "Eksperymentalne",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Zewnętrzne modele",
|
"External Models": "Zewnętrzne modele",
|
||||||
"Failed to add file.": "Nie udało się dodać pliku.",
|
"Failed to add file.": "Nie udało się dodać pliku.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Nie udało się wygenerować klucza API.",
|
"Failed to create API Key.": "Nie udało się wygenerować klucza API.",
|
||||||
"Failed to fetch models": "Nie udało się pobrać modeli",
|
"Failed to fetch models": "Nie udało się pobrać modeli",
|
||||||
"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
|
"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interfejs",
|
"Interface": "Interfejs",
|
||||||
"Invalid file format.": "Nieprawidłowy format pliku.",
|
"Invalid file format.": "Nieprawidłowy format pliku.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Nieprawidłowy tag",
|
"Invalid Tag": "Nieprawidłowy tag",
|
||||||
"is typing...": "Pisanie...",
|
"is typing...": "Pisanie...",
|
||||||
"January": "Styczeń",
|
"January": "Styczeń",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Wersja",
|
"Version": "Wersja",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Wersja {{selectedVersion}} z {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Wersja {{selectedVersion}} z {{totalVersions}}",
|
||||||
"View Replies": "Wyświetl odpowiedzi",
|
"View Replies": "Wyświetl odpowiedzi",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Widoczność",
|
"Visibility": "Widoczność",
|
||||||
"Voice": "Głos",
|
"Voice": "Głos",
|
||||||
"Voice Input": "Wprowadzanie głosowe",
|
"Voice Input": "Wprowadzanie głosowe",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL Base AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL Base AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "URL Base AUTOMATIC1111 é necessária.",
|
"AUTOMATIC1111 Base URL is required.": "URL Base AUTOMATIC1111 é necessária.",
|
||||||
"Available list": "Lista disponível",
|
"Available list": "Lista disponível",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "disponível!",
|
"available!": "disponível!",
|
||||||
"Awful": "Horrível",
|
"Awful": "Horrível",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Empate",
|
"Draw": "Empate",
|
||||||
"Drop any files here to add to the conversation": "Solte qualquer arquivo aqui para adicionar à conversa",
|
"Drop any files here to add to the conversation": "Solte qualquer arquivo aqui para adicionar à conversa",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "Exemplo: Um filtro para remover palavrões do texto",
|
"e.g. A filter to remove profanity from text": "Exemplo: Um filtro para remover palavrões do texto",
|
||||||
"e.g. My Filter": "Exemplo: Meu Filtro",
|
"e.g. My Filter": "Exemplo: Meu Filtro",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Excluir",
|
"Exclude": "Excluir",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Experimental",
|
"Experimental": "Experimental",
|
||||||
"Explain": "Explicar",
|
"Explain": "Explicar",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Modelos Externos",
|
"External Models": "Modelos Externos",
|
||||||
"Failed to add file.": "Falha ao adicionar arquivo.",
|
"Failed to add file.": "Falha ao adicionar arquivo.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Falha ao criar a Chave API.",
|
"Failed to create API Key.": "Falha ao criar a Chave API.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
|
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interface",
|
"Interface": "Interface",
|
||||||
"Invalid file format.": "Formato de arquivo inválido.",
|
"Invalid file format.": "Formato de arquivo inválido.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Tag Inválida",
|
"Invalid Tag": "Tag Inválida",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Janeiro",
|
"January": "Janeiro",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versão",
|
"Version": "Versão",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Versão {{selectedVersion}} de {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Versão {{selectedVersion}} de {{totalVersions}}",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Visibilidade",
|
"Visibility": "Visibilidade",
|
||||||
"Voice": "Voz",
|
"Voice": "Voz",
|
||||||
"Voice Input": "Entrada de voz",
|
"Voice Input": "Entrada de voz",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL Base do AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL Base do AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "O URL Base do AUTOMATIC1111 é obrigatório.",
|
"AUTOMATIC1111 Base URL is required.": "O URL Base do AUTOMATIC1111 é obrigatório.",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "disponível!",
|
"available!": "disponível!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Largue os ficheiros aqui para adicionar à conversa",
|
"Drop any files here to add to the conversation": "Largue os ficheiros aqui para adicionar à conversa",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Experimental",
|
"Experimental": "Experimental",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Modelos Externos",
|
"External Models": "Modelos Externos",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Falha ao criar a Chave da API.",
|
"Failed to create API Key.": "Falha ao criar a Chave da API.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
|
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interface",
|
"Interface": "Interface",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Etiqueta Inválida",
|
"Invalid Tag": "Etiqueta Inválida",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Janeiro",
|
"January": "Janeiro",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versão",
|
"Version": "Versão",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL Bază AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL Bază AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Este necesar URL-ul Bază AUTOMATIC1111.",
|
"AUTOMATIC1111 Base URL is required.": "Este necesar URL-ul Bază AUTOMATIC1111.",
|
||||||
"Available list": "Listă disponibilă",
|
"Available list": "Listă disponibilă",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "disponibil!",
|
"available!": "disponibil!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "Azure AI Speech este un serviciu care face parte din suita de servicii cognitive oferite de Microsoft Azure. Acesta permite integrarea capabilităților de recunoaștere vocală, generare a vorbirii și transcriere automată în aplicații. Serviciul oferă dezvoltatorilor posibilitatea de a crea aplicații care pot converti vorbirea în text, genera vorbire naturală din text sau traduce între limbi. Azure AI Speech este util în diverse scenarii, cum ar fi asistenți vocali, aplicații de servicii pentru clienți sau instrumente de accesibilitate, facilitând o interacțiune mai naturală între utilizatori și tehnologie.",
|
"Azure AI Speech": "Azure AI Speech este un serviciu care face parte din suita de servicii cognitive oferite de Microsoft Azure. Acesta permite integrarea capabilităților de recunoaștere vocală, generare a vorbirii și transcriere automată în aplicații. Serviciul oferă dezvoltatorilor posibilitatea de a crea aplicații care pot converti vorbirea în text, genera vorbire naturală din text sau traduce între limbi. Azure AI Speech este util în diverse scenarii, cum ar fi asistenți vocali, aplicații de servicii pentru clienți sau instrumente de accesibilitate, facilitând o interacțiune mai naturală între utilizatori și tehnologie.",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Desenează",
|
"Draw": "Desenează",
|
||||||
"Drop any files here to add to the conversation": "Plasează orice fișiere aici pentru a le adăuga la conversație",
|
"Drop any files here to add to the conversation": "Plasează orice fișiere aici pentru a le adăuga la conversație",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "de ex. '30s', '10m'. Unitățile de timp valide sunt 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "de ex. '30s', '10m'. Unitățile de timp valide sunt 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Exclude",
|
"Exclude": "Exclude",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Experimental",
|
"Experimental": "Experimental",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Modele Externe",
|
"External Models": "Modele Externe",
|
||||||
"Failed to add file.": "Eșec la adăugarea fișierului.",
|
"Failed to add file.": "Eșec la adăugarea fișierului.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Crearea cheii API a eșuat.",
|
"Failed to create API Key.": "Crearea cheii API a eșuat.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Citirea conținutului clipboard-ului a eșuat",
|
"Failed to read clipboard contents": "Citirea conținutului clipboard-ului a eșuat",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Interfață",
|
"Interface": "Interfață",
|
||||||
"Invalid file format.": "Format de fișier invalid.",
|
"Invalid file format.": "Format de fișier invalid.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Etichetă Invalidă",
|
"Invalid Tag": "Etichetă Invalidă",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Ianuarie",
|
"January": "Ianuarie",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Versiune",
|
"Version": "Versiune",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Versiunea {{selectedVersion}} din {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Versiunea {{selectedVersion}} din {{totalVersions}}",
|
||||||
"View Replies": "Vezi răspunsurile",
|
"View Replies": "Vezi răspunsurile",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Vizibilitate",
|
"Visibility": "Vizibilitate",
|
||||||
"Voice": "Voce",
|
"Voice": "Voce",
|
||||||
"Voice Input": "Intrare vocală",
|
"Voice Input": "Intrare vocală",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "Базовый URL адрес AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "Базовый URL адрес AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Необходим базовый адрес URL AUTOMATIC1111.",
|
"AUTOMATIC1111 Base URL is required.": "Необходим базовый адрес URL AUTOMATIC1111.",
|
||||||
"Available list": "Список доступных",
|
"Available list": "Список доступных",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "доступно!",
|
"available!": "доступно!",
|
||||||
"Awful": "Ужасно",
|
"Awful": "Ужасно",
|
||||||
"Azure AI Speech": "Azure AI Speech",
|
"Azure AI Speech": "Azure AI Speech",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Рисовать",
|
"Draw": "Рисовать",
|
||||||
"Drop any files here to add to the conversation": "Перетащите сюда файлы, чтобы добавить их в разговор",
|
"Drop any files here to add to the conversation": "Перетащите сюда файлы, чтобы добавить их в разговор",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30s','10m'. Допустимые единицы времени: 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30s','10m'. Допустимые единицы времени: 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "например, 60",
|
"e.g. 60": "например, 60",
|
||||||
"e.g. A filter to remove profanity from text": "например, фильтр для удаления ненормативной лексики из текста",
|
"e.g. A filter to remove profanity from text": "например, фильтр для удаления ненормативной лексики из текста",
|
||||||
"e.g. My Filter": "например, мой фильтр",
|
"e.g. My Filter": "например, мой фильтр",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "Превышено количество мест в вашей лицензии. Пожалуйста, свяжитесь со службой поддержки, чтобы увеличить количество мест.",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "Превышено количество мест в вашей лицензии. Пожалуйста, свяжитесь со службой поддержки, чтобы увеличить количество мест.",
|
||||||
"Exclude": "Исключать",
|
"Exclude": "Исключать",
|
||||||
"Execute code for analysis": "Выполнить код для анализа",
|
"Execute code for analysis": "Выполнить код для анализа",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "Расширить",
|
"Expand": "Расширить",
|
||||||
"Experimental": "Экспериментальное",
|
"Experimental": "Экспериментальное",
|
||||||
"Explain": "Объяснить",
|
"Explain": "Объяснить",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Внешние модели",
|
"External Models": "Внешние модели",
|
||||||
"Failed to add file.": "Не удалось добавить файл.",
|
"Failed to add file.": "Не удалось добавить файл.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Не удалось создать ключ API.",
|
"Failed to create API Key.": "Не удалось создать ключ API.",
|
||||||
"Failed to fetch models": "Не удалось получить модели",
|
"Failed to fetch models": "Не удалось получить модели",
|
||||||
"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
|
"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "Интеграция",
|
"Integration": "Интеграция",
|
||||||
"Interface": "Интерфейс",
|
"Interface": "Интерфейс",
|
||||||
"Invalid file format.": "Неверный формат файла.",
|
"Invalid file format.": "Неверный формат файла.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Недопустимый тег",
|
"Invalid Tag": "Недопустимый тег",
|
||||||
"is typing...": "печатает...",
|
"is typing...": "печатает...",
|
||||||
"January": "Январь",
|
"January": "Январь",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Версия",
|
"Version": "Версия",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Версия {{selectedVersion}} из {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Версия {{selectedVersion}} из {{totalVersions}}",
|
||||||
"View Replies": "С ответами",
|
"View Replies": "С ответами",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Видимость",
|
"Visibility": "Видимость",
|
||||||
"Voice": "Голос",
|
"Voice": "Голос",
|
||||||
"Voice Input": "Ввод голоса",
|
"Voice Input": "Ввод голоса",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "Základná URL pre AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "Základná URL pre AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Vyžaduje sa základná URL pre AUTOMATIC1111.",
|
"AUTOMATIC1111 Base URL is required.": "Vyžaduje sa základná URL pre AUTOMATIC1111.",
|
||||||
"Available list": "Dostupný zoznam",
|
"Available list": "Dostupný zoznam",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "k dispozícii!",
|
"available!": "k dispozícii!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "Azure AI syntéza reči",
|
"Azure AI Speech": "Azure AI syntéza reči",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Nakresliť",
|
"Draw": "Nakresliť",
|
||||||
"Drop any files here to add to the conversation": "Sem presuňte akékoľvek súbory, ktoré chcete pridať do konverzácie",
|
"Drop any files here to add to the conversation": "Sem presuňte akékoľvek súbory, ktoré chcete pridať do konverzácie",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "napr. '30s','10m'. Platné časové jednotky sú 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "napr. '30s','10m'. Platné časové jednotky sú 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Vylúčiť",
|
"Exclude": "Vylúčiť",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Experimentálne",
|
"Experimental": "Experimentálne",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Externé modely",
|
"External Models": "Externé modely",
|
||||||
"Failed to add file.": "Nepodarilo sa pridať súbor.",
|
"Failed to add file.": "Nepodarilo sa pridať súbor.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Nepodarilo sa vytvoriť API kľúč.",
|
"Failed to create API Key.": "Nepodarilo sa vytvoriť API kľúč.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Nepodarilo sa prečítať obsah schránky",
|
"Failed to read clipboard contents": "Nepodarilo sa prečítať obsah schránky",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Rozhranie",
|
"Interface": "Rozhranie",
|
||||||
"Invalid file format.": "Neplatný formát súboru.",
|
"Invalid file format.": "Neplatný formát súboru.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Neplatný tag",
|
"Invalid Tag": "Neplatný tag",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Január",
|
"January": "Január",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Verzia",
|
"Version": "Verzia",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Verzia {{selectedVersion}} z {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Verzia {{selectedVersion}} z {{totalVersions}}",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Viditeľnosť",
|
"Visibility": "Viditeľnosť",
|
||||||
"Voice": "Hlas",
|
"Voice": "Hlas",
|
||||||
"Voice Input": "Hlasový vstup",
|
"Voice Input": "Hlasový vstup",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "Основна адреса за AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "Основна адреса за AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Потребна је основна адреса за AUTOMATIC1111.",
|
"AUTOMATIC1111 Base URL is required.": "Потребна је основна адреса за AUTOMATIC1111.",
|
||||||
"Available list": "Списак доступног",
|
"Available list": "Списак доступног",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "доступно!",
|
"available!": "доступно!",
|
||||||
"Awful": "Грозно",
|
"Awful": "Грозно",
|
||||||
"Azure AI Speech": "Azure AI говор",
|
"Azure AI Speech": "Azure AI говор",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Нацртај",
|
"Draw": "Нацртај",
|
||||||
"Drop any files here to add to the conversation": "Убаците било које датотеке овде да их додате у разговор",
|
"Drop any files here to add to the conversation": "Убаците било које датотеке овде да их додате у разговор",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "нпр. '30s', '10m'. Важеће временске јединице су 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "нпр. '30s', '10m'. Важеће временске јединице су 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Експериментално",
|
"Experimental": "Експериментално",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Неуспешно стварање API кључа.",
|
"Failed to create API Key.": "Неуспешно стварање API кључа.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Неуспешно читање садржаја оставе",
|
"Failed to read clipboard contents": "Неуспешно читање садржаја оставе",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Изглед",
|
"Interface": "Изглед",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Неисправна ознака",
|
"Invalid Tag": "Неисправна ознака",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Јануар",
|
"January": "Јануар",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Издање",
|
"Version": "Издање",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "Погледај одговоре",
|
"View Replies": "Погледај одговоре",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Видљивост",
|
"Visibility": "Видљивост",
|
||||||
"Voice": "Глас",
|
"Voice": "Глас",
|
||||||
"Voice Input": "Гласовни унос",
|
"Voice Input": "Гласовни унос",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bas-URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bas-URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bas-URL krävs.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bas-URL krävs.",
|
||||||
"Available list": "Tillgänglig lista",
|
"Available list": "Tillgänglig lista",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "tillgänglig!",
|
"available!": "tillgänglig!",
|
||||||
"Awful": "Hemsk",
|
"Awful": "Hemsk",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Släpp filer här för att lägga till i samtalet",
|
"Drop any files here to add to the conversation": "Släpp filer här för att lägga till i samtalet",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "t.ex. '30s', '10m'. Giltiga tidsenheter är 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "t.ex. '30s', '10m'. Giltiga tidsenheter är 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Experimentell",
|
"Experimental": "Experimentell",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Externa modeller",
|
"External Models": "Externa modeller",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Misslyckades med att skapa API-nyckel.",
|
"Failed to create API Key.": "Misslyckades med att skapa API-nyckel.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
|
"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Gränssnitt",
|
"Interface": "Gränssnitt",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Ogiltig tagg",
|
"Invalid Tag": "Ogiltig tagg",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "januari",
|
"January": "januari",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Version",
|
"Version": "Version",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} av {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} av {{totalVersions}}",
|
||||||
"View Replies": "Se svar",
|
"View Replies": "Se svar",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Synlighet",
|
"Visibility": "Synlighet",
|
||||||
"Voice": "Röst",
|
"Voice": "Röst",
|
||||||
"Voice Input": "Röstinmatning",
|
"Voice Input": "Röstinmatning",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL ฐานของ AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL ฐานของ AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "ต้องการ URL ฐานของ AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL is required.": "ต้องการ URL ฐานของ AUTOMATIC1111",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "พร้อมใช้งาน!",
|
"available!": "พร้อมใช้งาน!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "วางไฟล์ใดๆ ที่นี่เพื่อเพิ่มในการสนทนา",
|
"Drop any files here to add to the conversation": "วางไฟล์ใดๆ ที่นี่เพื่อเพิ่มในการสนทนา",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ถูกต้องคือ 's', 'm', 'h'",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ถูกต้องคือ 's', 'm', 'h'",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "การทดลอง",
|
"Experimental": "การทดลอง",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "โมเดลภายนอก",
|
"External Models": "โมเดลภายนอก",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "สร้างคีย์ API ล้มเหลว",
|
"Failed to create API Key.": "สร้างคีย์ API ล้มเหลว",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดล้มเหลว",
|
"Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดล้มเหลว",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "อินเทอร์เฟซ",
|
"Interface": "อินเทอร์เฟซ",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "แท็กไม่ถูกต้อง",
|
"Invalid Tag": "แท็กไม่ถูกต้อง",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "มกราคม",
|
"January": "มกราคม",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "เวอร์ชัน",
|
"Version": "เวอร์ชัน",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "เสียง",
|
"Voice": "เสียง",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "",
|
"AUTOMATIC1111 Base URL": "",
|
||||||
"AUTOMATIC1111 Base URL is required.": "",
|
"AUTOMATIC1111 Base URL is required.": "",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "",
|
"available!": "",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "",
|
"Drop any files here to add to the conversation": "",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "",
|
"Experimental": "",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "",
|
"External Models": "",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "",
|
"Failed to create API Key.": "",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "",
|
"Failed to read clipboard contents": "",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "",
|
"Interface": "",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "",
|
"Invalid Tag": "",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "",
|
"January": "",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "",
|
"Version": "",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Temel URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Temel URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Temel URL gereklidir.",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Temel URL gereklidir.",
|
||||||
"Available list": "Mevcut liste",
|
"Available list": "Mevcut liste",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "mevcut!",
|
"available!": "mevcut!",
|
||||||
"Awful": "Berbat",
|
"Awful": "Berbat",
|
||||||
"Azure AI Speech": "Azure AI Konuşma",
|
"Azure AI Speech": "Azure AI Konuşma",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Çiz",
|
"Draw": "Çiz",
|
||||||
"Drop any files here to add to the conversation": "Sohbete eklemek istediğiniz dosyaları buraya bırakın",
|
"Drop any files here to add to the conversation": "Sohbete eklemek istediğiniz dosyaları buraya bırakın",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "örn. Metinden küfürleri kaldırmak için bir filtre",
|
"e.g. A filter to remove profanity from text": "örn. Metinden küfürleri kaldırmak için bir filtre",
|
||||||
"e.g. My Filter": "örn. Benim Filtrem",
|
"e.g. My Filter": "örn. Benim Filtrem",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "Hariç tut",
|
"Exclude": "Hariç tut",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "Genişlet",
|
"Expand": "Genişlet",
|
||||||
"Experimental": "Deneysel",
|
"Experimental": "Deneysel",
|
||||||
"Explain": "Açıkla",
|
"Explain": "Açıkla",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Modelleri Dışa Aktar",
|
"External Models": "Modelleri Dışa Aktar",
|
||||||
"Failed to add file.": "Dosya eklenemedi.",
|
"Failed to add file.": "Dosya eklenemedi.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "API Anahtarı oluşturulamadı.",
|
"Failed to create API Key.": "API Anahtarı oluşturulamadı.",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Pano içeriği okunamadı",
|
"Failed to read clipboard contents": "Pano içeriği okunamadı",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Arayüz",
|
"Interface": "Arayüz",
|
||||||
"Invalid file format.": "Geçersiz dosya biçimi.",
|
"Invalid file format.": "Geçersiz dosya biçimi.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Geçersiz etiket",
|
"Invalid Tag": "Geçersiz etiket",
|
||||||
"is typing...": "yazıyor...",
|
"is typing...": "yazıyor...",
|
||||||
"January": "Ocak",
|
"January": "Ocak",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Sürüm",
|
"Version": "Sürüm",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Sürüm {{selectedVersion}} / {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Sürüm {{selectedVersion}} / {{totalVersions}}",
|
||||||
"View Replies": "Yanıtları Görüntüle",
|
"View Replies": "Yanıtları Görüntüle",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Görünürlük",
|
"Visibility": "Görünürlük",
|
||||||
"Voice": "Ses",
|
"Voice": "Ses",
|
||||||
"Voice Input": "Ses Girişi",
|
"Voice Input": "Ses Girişi",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "URL-адреса AUTOMATIC1111",
|
"AUTOMATIC1111 Base URL": "URL-адреса AUTOMATIC1111",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Необхідна URL-адреса AUTOMATIC1111.",
|
"AUTOMATIC1111 Base URL is required.": "Необхідна URL-адреса AUTOMATIC1111.",
|
||||||
"Available list": "Список доступності",
|
"Available list": "Список доступності",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "доступно!",
|
"available!": "доступно!",
|
||||||
"Awful": "Жахливо",
|
"Awful": "Жахливо",
|
||||||
"Azure AI Speech": "Мовлення Azure AI",
|
"Azure AI Speech": "Мовлення Azure AI",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "Малювати",
|
"Draw": "Малювати",
|
||||||
"Drop any files here to add to the conversation": "Перетягніть сюди файли, щоб додати до розмови",
|
"Drop any files here to add to the conversation": "Перетягніть сюди файли, щоб додати до розмови",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр., '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр., '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "напр. 60",
|
"e.g. 60": "напр. 60",
|
||||||
"e.g. A filter to remove profanity from text": "напр., фільтр для видалення нецензурної лексики з тексту",
|
"e.g. A filter to remove profanity from text": "напр., фільтр для видалення нецензурної лексики з тексту",
|
||||||
"e.g. My Filter": "напр., Мій фільтр",
|
"e.g. My Filter": "напр., Мій фільтр",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "Перевищено кількість місць у вашій ліцензії. Будь ласка, зверніться до підтримки для збільшення кількості місць.",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "Перевищено кількість місць у вашій ліцензії. Будь ласка, зверніться до підтримки для збільшення кількості місць.",
|
||||||
"Exclude": "Виключити",
|
"Exclude": "Виключити",
|
||||||
"Execute code for analysis": "Виконати код для аналізу",
|
"Execute code for analysis": "Виконати код для аналізу",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "Розгорнути",
|
"Expand": "Розгорнути",
|
||||||
"Experimental": "Експериментальне",
|
"Experimental": "Експериментальне",
|
||||||
"Explain": "Пояснити",
|
"Explain": "Пояснити",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "Зовнішній",
|
"External": "Зовнішній",
|
||||||
"External Models": "Зовнішні моделі",
|
"External Models": "Зовнішні моделі",
|
||||||
"Failed to add file.": "Не вдалося додати файл.",
|
"Failed to add file.": "Не вдалося додати файл.",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Не вдалося створити API ключ.",
|
"Failed to create API Key.": "Не вдалося створити API ключ.",
|
||||||
"Failed to fetch models": "Не вдалося отримати моделі",
|
"Failed to fetch models": "Не вдалося отримати моделі",
|
||||||
"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
|
"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "Інтеграція",
|
"Integration": "Інтеграція",
|
||||||
"Interface": "Інтерфейс",
|
"Interface": "Інтерфейс",
|
||||||
"Invalid file format.": "Неправильний формат файлу.",
|
"Invalid file format.": "Неправильний формат файлу.",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Недійсний тег",
|
"Invalid Tag": "Недійсний тег",
|
||||||
"is typing...": "друкує...",
|
"is typing...": "друкує...",
|
||||||
"January": "Січень",
|
"January": "Січень",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Версія",
|
"Version": "Версія",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "Версія {{selectedVersion}} з {{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "Версія {{selectedVersion}} з {{totalVersions}}",
|
||||||
"View Replies": "Переглянути відповіді",
|
"View Replies": "Переглянути відповіді",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "Видимість",
|
"Visibility": "Видимість",
|
||||||
"Voice": "Голос",
|
"Voice": "Голос",
|
||||||
"Voice Input": "Голосове введення",
|
"Voice Input": "Голосове введення",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 بنیادی URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 بنیادی URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 بنیادی URL درکار ہے",
|
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 بنیادی URL درکار ہے",
|
||||||
"Available list": "دستیاب فہرست",
|
"Available list": "دستیاب فہرست",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "دستیاب!",
|
"available!": "دستیاب!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "ایژور اے آئی اسپیچ",
|
"Azure AI Speech": "ایژور اے آئی اسپیچ",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "ڈرائنگ کریں",
|
"Draw": "ڈرائنگ کریں",
|
||||||
"Drop any files here to add to the conversation": "گفتگو میں شامل کرنے کے لیے کوئی بھی فائل یہاں چھوڑیں",
|
"Drop any files here to add to the conversation": "گفتگو میں شامل کرنے کے لیے کوئی بھی فائل یہاں چھوڑیں",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مثلاً '30s'، '10m' درست وقت کی اکائیاں ہیں 's'، 'm'، 'h'",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مثلاً '30s'، '10m' درست وقت کی اکائیاں ہیں 's'، 'm'، 'h'",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "خارج کریں",
|
"Exclude": "خارج کریں",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "تجرباتی",
|
"Experimental": "تجرباتی",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "بیرونی ماڈلز",
|
"External Models": "بیرونی ماڈلز",
|
||||||
"Failed to add file.": "فائل شامل کرنے میں ناکام",
|
"Failed to add file.": "فائل شامل کرنے میں ناکام",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "API کلید بنانے میں ناکام",
|
"Failed to create API Key.": "API کلید بنانے میں ناکام",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "کلپ بورڈ مواد کو پڑھنے میں ناکام",
|
"Failed to read clipboard contents": "کلپ بورڈ مواد کو پڑھنے میں ناکام",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "انٹرفیس",
|
"Interface": "انٹرفیس",
|
||||||
"Invalid file format.": "غلط فائل فارمیٹ",
|
"Invalid file format.": "غلط فائل فارمیٹ",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "غلط ٹیگ",
|
"Invalid Tag": "غلط ٹیگ",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "جنوری",
|
"January": "جنوری",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "ورژن",
|
"Version": "ورژن",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "ورژن {{selectedVersion}} کا {{totalVersions}} میں سے",
|
"Version {{selectedVersion}} of {{totalVersions}}": "ورژن {{selectedVersion}} کا {{totalVersions}} میں سے",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "آواز",
|
"Voice": "آواز",
|
||||||
"Voice Input": "آواز داخل کریں",
|
"Voice Input": "آواز داخل کریں",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "Đường dẫn kết nối tới AUTOMATIC1111 (Base URL)",
|
"AUTOMATIC1111 Base URL": "Đường dẫn kết nối tới AUTOMATIC1111 (Base URL)",
|
||||||
"AUTOMATIC1111 Base URL is required.": "Base URL của AUTOMATIC1111 là bắt buộc.",
|
"AUTOMATIC1111 Base URL is required.": "Base URL của AUTOMATIC1111 là bắt buộc.",
|
||||||
"Available list": "",
|
"Available list": "",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "có sẵn!",
|
"available!": "có sẵn!",
|
||||||
"Awful": "",
|
"Awful": "",
|
||||||
"Azure AI Speech": "",
|
"Azure AI Speech": "",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "",
|
"Draw": "",
|
||||||
"Drop any files here to add to the conversation": "Thả bất kỳ tệp nào ở đây để thêm vào nội dung chat",
|
"Drop any files here to add to the conversation": "Thả bất kỳ tệp nào ở đây để thêm vào nội dung chat",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "",
|
"e.g. 60": "",
|
||||||
"e.g. A filter to remove profanity from text": "",
|
"e.g. A filter to remove profanity from text": "",
|
||||||
"e.g. My Filter": "",
|
"e.g. My Filter": "",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
|
||||||
"Exclude": "",
|
"Exclude": "",
|
||||||
"Execute code for analysis": "",
|
"Execute code for analysis": "",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "",
|
"Expand": "",
|
||||||
"Experimental": "Thử nghiệm",
|
"Experimental": "Thử nghiệm",
|
||||||
"Explain": "",
|
"Explain": "",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "",
|
"External": "",
|
||||||
"External Models": "Các model ngoài",
|
"External Models": "Các model ngoài",
|
||||||
"Failed to add file.": "",
|
"Failed to add file.": "",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "Lỗi khởi tạo API Key",
|
"Failed to create API Key.": "Lỗi khởi tạo API Key",
|
||||||
"Failed to fetch models": "",
|
"Failed to fetch models": "",
|
||||||
"Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
|
"Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "",
|
"Integration": "",
|
||||||
"Interface": "Giao diện",
|
"Interface": "Giao diện",
|
||||||
"Invalid file format.": "",
|
"Invalid file format.": "",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "Tag không hợp lệ",
|
"Invalid Tag": "Tag không hợp lệ",
|
||||||
"is typing...": "",
|
"is typing...": "",
|
||||||
"January": "Tháng 1",
|
"January": "Tháng 1",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "Version",
|
"Version": "Version",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
"Version {{selectedVersion}} of {{totalVersions}}": "",
|
||||||
"View Replies": "",
|
"View Replies": "",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "",
|
"Visibility": "",
|
||||||
"Voice": "Giọng nói",
|
"Voice": "Giọng nói",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 基础地址",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 基础地址",
|
||||||
"AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基础地址。",
|
"AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基础地址。",
|
||||||
"Available list": "可用列表",
|
"Available list": "可用列表",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "版本可用!",
|
"available!": "版本可用!",
|
||||||
"Awful": "糟糕",
|
"Awful": "糟糕",
|
||||||
"Azure AI Speech": "Azure AI 语音",
|
"Azure AI Speech": "Azure AI 语音",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "平局",
|
"Draw": "平局",
|
||||||
"Drop any files here to add to the conversation": "拖动文件到此处以添加到对话中",
|
"Drop any files here to add to the conversation": "拖动文件到此处以添加到对话中",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如 '30s','10m'。有效的时间单位是秒:'s',分:'m',时:'h'。",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如 '30s','10m'。有效的时间单位是秒:'s',分:'m',时:'h'。",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "例如 '60'",
|
"e.g. 60": "例如 '60'",
|
||||||
"e.g. A filter to remove profanity from text": "例如:一个用于过滤文本中不当内容的过滤器",
|
"e.g. A filter to remove profanity from text": "例如:一个用于过滤文本中不当内容的过滤器",
|
||||||
"e.g. My Filter": "例如:我的过滤器",
|
"e.g. My Filter": "例如:我的过滤器",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "已达到最大授权人数,请联系支持人员提升授权人数。",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "已达到最大授权人数,请联系支持人员提升授权人数。",
|
||||||
"Exclude": "排除",
|
"Exclude": "排除",
|
||||||
"Execute code for analysis": "执行代码进行分析",
|
"Execute code for analysis": "执行代码进行分析",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "展开",
|
"Expand": "展开",
|
||||||
"Experimental": "实验性",
|
"Experimental": "实验性",
|
||||||
"Explain": "解释",
|
"Explain": "解释",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "外部",
|
"External": "外部",
|
||||||
"External Models": "外部模型",
|
"External Models": "外部模型",
|
||||||
"Failed to add file.": "添加文件失败。",
|
"Failed to add file.": "添加文件失败。",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "无法创建 API 密钥。",
|
"Failed to create API Key.": "无法创建 API 密钥。",
|
||||||
"Failed to fetch models": "无法获取模型",
|
"Failed to fetch models": "无法获取模型",
|
||||||
"Failed to read clipboard contents": "无法读取剪贴板内容",
|
"Failed to read clipboard contents": "无法读取剪贴板内容",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "集成",
|
"Integration": "集成",
|
||||||
"Interface": "界面",
|
"Interface": "界面",
|
||||||
"Invalid file format.": "无效文件格式。",
|
"Invalid file format.": "无效文件格式。",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "无效标签",
|
"Invalid Tag": "无效标签",
|
||||||
"is typing...": "输入中...",
|
"is typing...": "输入中...",
|
||||||
"January": "一月",
|
"January": "一月",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "版本",
|
"Version": "版本",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "版本 {{selectedVersion}}/{{totalVersions}}",
|
"Version {{selectedVersion}} of {{totalVersions}}": "版本 {{selectedVersion}}/{{totalVersions}}",
|
||||||
"View Replies": "查看回复",
|
"View Replies": "查看回复",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "可见性",
|
"Visibility": "可见性",
|
||||||
"Voice": "语音",
|
"Voice": "语音",
|
||||||
"Voice Input": "语音输入",
|
"Voice Input": "语音输入",
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 基礎 URL",
|
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 基礎 URL",
|
||||||
"AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基礎 URL。",
|
"AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基礎 URL。",
|
||||||
"Available list": "可用清單",
|
"Available list": "可用清單",
|
||||||
|
"Available Tool Servers": "",
|
||||||
"available!": "可用!",
|
"available!": "可用!",
|
||||||
"Awful": "糟糕",
|
"Awful": "糟糕",
|
||||||
"Azure AI Speech": "Azure AI 語音",
|
"Azure AI Speech": "Azure AI 語音",
|
||||||
@ -343,6 +344,7 @@
|
|||||||
"Draw": "繪製",
|
"Draw": "繪製",
|
||||||
"Drop any files here to add to the conversation": "拖拽任意檔案到此處以新增至對話",
|
"Drop any files here to add to the conversation": "拖拽任意檔案到此處以新增至對話",
|
||||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如:'30s'、'10m'。有效的時間單位為 's'、'm'、'h'。",
|
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如:'30s'、'10m'。有效的時間單位為 's'、'm'、'h'。",
|
||||||
|
"e.g. \"json\" or a JSON schema": "",
|
||||||
"e.g. 60": "例如 60",
|
"e.g. 60": "例如 60",
|
||||||
"e.g. A filter to remove profanity from text": "例如:從文字中移除髒話的篩選器",
|
"e.g. A filter to remove profanity from text": "例如:從文字中移除髒話的篩選器",
|
||||||
"e.g. My Filter": "例如:我的篩選器",
|
"e.g. My Filter": "例如:我的篩選器",
|
||||||
@ -465,6 +467,7 @@
|
|||||||
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "您的授權名額已超過上限。請聯絡支援以增加授權名額。",
|
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "您的授權名額已超過上限。請聯絡支援以增加授權名額。",
|
||||||
"Exclude": "排除",
|
"Exclude": "排除",
|
||||||
"Execute code for analysis": "執行程式碼以進行分析",
|
"Execute code for analysis": "執行程式碼以進行分析",
|
||||||
|
"Executing `{{NAME}}`...": "",
|
||||||
"Expand": "展開",
|
"Expand": "展開",
|
||||||
"Experimental": "實驗性功能",
|
"Experimental": "實驗性功能",
|
||||||
"Explain": "解釋",
|
"Explain": "解釋",
|
||||||
@ -485,6 +488,7 @@
|
|||||||
"External": "外部",
|
"External": "外部",
|
||||||
"External Models": "外部模型",
|
"External Models": "外部模型",
|
||||||
"Failed to add file.": "新增檔案失敗。",
|
"Failed to add file.": "新增檔案失敗。",
|
||||||
|
"Failed to connect to {{URL}} OpenAPI tool server": "",
|
||||||
"Failed to create API Key.": "建立 API 金鑰失敗。",
|
"Failed to create API Key.": "建立 API 金鑰失敗。",
|
||||||
"Failed to fetch models": "取得模型失敗",
|
"Failed to fetch models": "取得模型失敗",
|
||||||
"Failed to read clipboard contents": "讀取剪貼簿內容失敗",
|
"Failed to read clipboard contents": "讀取剪貼簿內容失敗",
|
||||||
@ -602,6 +606,7 @@
|
|||||||
"Integration": "整合",
|
"Integration": "整合",
|
||||||
"Interface": "介面",
|
"Interface": "介面",
|
||||||
"Invalid file format.": "無效檔案格式。",
|
"Invalid file format.": "無效檔案格式。",
|
||||||
|
"Invalid JSON schema": "",
|
||||||
"Invalid Tag": "無效標籤",
|
"Invalid Tag": "無效標籤",
|
||||||
"is typing...": "正在輸入……",
|
"is typing...": "正在輸入……",
|
||||||
"January": "1 月",
|
"January": "1 月",
|
||||||
@ -1141,6 +1146,7 @@
|
|||||||
"Version": "版本",
|
"Version": "版本",
|
||||||
"Version {{selectedVersion}} of {{totalVersions}}": "第 {{selectedVersion}} 版,共 {{totalVersions}} 版",
|
"Version {{selectedVersion}} of {{totalVersions}}": "第 {{selectedVersion}} 版,共 {{totalVersions}} 版",
|
||||||
"View Replies": "檢視回覆",
|
"View Replies": "檢視回覆",
|
||||||
|
"View Result from `{{NAME}}`": "",
|
||||||
"Visibility": "可見性",
|
"Visibility": "可見性",
|
||||||
"Voice": "語音",
|
"Voice": "語音",
|
||||||
"Voice Input": "語音輸入",
|
"Voice Input": "語音輸入",
|
||||||
|
@ -104,7 +104,7 @@
|
|||||||
|
|
||||||
banners.set(await getBanners(localStorage.token));
|
banners.set(await getBanners(localStorage.token));
|
||||||
tools.set(await getTools(localStorage.token));
|
tools.set(await getTools(localStorage.token));
|
||||||
toolServers.set(await getToolServersData($settings?.toolServers ?? []));
|
toolServers.set(await getToolServersData($i18n, $settings?.toolServers ?? []));
|
||||||
|
|
||||||
document.addEventListener('keydown', async function (event) {
|
document.addEventListener('keydown', async function (event) {
|
||||||
const isCtrlPressed = event.ctrlKey || event.metaKey; // metaKey is for Cmd key on Mac
|
const isCtrlPressed = event.ctrlKey || event.metaKey; // metaKey is for Cmd key on Mac
|
||||||
|
Loading…
x
Reference in New Issue
Block a user