Unverified Commit b4c9e463 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #3408 from SimonOriginal/dev

Added i18n keys and update of Ukrainian translation
parents f6082579 920fc29b
......@@ -72,7 +72,7 @@
});
if (res) {
toast.success('Audio settings updated successfully');
toast.success($i18n.t('Audio settings updated successfully'));
config.set(await getBackendConfig());
}
......
......@@ -126,7 +126,9 @@
/>
</svg>
</div>
<div class=" self-center text-sm font-medium">Export LiteLLM config.yaml</div>
<div class=" self-center text-sm font-medium">
{$i18n.t('Export LiteLLM config.yaml')}
</div>
</button>
</div>
</div>
......@@ -137,7 +139,7 @@
class=" px-4 py-2 bg-emerald-700 hover:bg-emerald-800 text-gray-100 transition rounded-lg"
type="submit"
>
Save
{$i18n.t('Save')}
</button>
</div> -->
......
......@@ -60,13 +60,13 @@
});
if (res) {
toast.success('Valves updated successfully');
toast.success($i18n.t('Valves updated successfully'));
setPipelines();
models.set(await getModels(localStorage.token));
saveHandler();
}
} else {
toast.error('No valves to update');
toast.error($i18n.t('No valves to update'));
}
};
......@@ -122,7 +122,7 @@
});
if (res) {
toast.success('Pipeline downloaded successfully');
toast.success($i18n.t('Pipeline downloaded successfully'));
setPipelines();
models.set(await getModels(localStorage.token));
}
......@@ -147,12 +147,12 @@
);
if (res) {
toast.success('Pipeline downloaded successfully');
toast.success($i18n.t('Pipeline downloaded successfully'));
setPipelines();
models.set(await getModels(localStorage.token));
}
} else {
toast.error('No file selected');
toast.error($i18n.t('No file selected'));
}
pipelineFiles = null;
......@@ -176,7 +176,7 @@
});
if (res) {
toast.success('Pipeline deleted successfully');
toast.success($i18n.t('Pipeline deleted successfully'));
setPipelines();
models.set(await getModels(localStorage.token));
}
......@@ -509,7 +509,7 @@
</div>
{/if}
{:else}
<div>Pipelines Not Detected</div>
<div>{$i18n.t('Pipelines Not Detected')}</div>
{/if}
{:else}
<div class="flex justify-center h-full">
......@@ -525,7 +525,7 @@
class=" px-4 py-2 bg-emerald-700 hover:bg-emerald-800 text-gray-100 transition rounded-lg"
type="submit"
>
Save
{$i18n.t('Save')}
</button>
</div>
</form>
......@@ -305,7 +305,7 @@
}, 100);
}
} else {
toast.error('No content to speak');
toast.error($i18n.t('No content to speak'));
}
}
};
......
......@@ -32,7 +32,9 @@
saveSettings({ notificationEnabled: notificationEnabled });
} else {
toast.error(
'Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.'
$i18n.t(
'Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.'
)
);
}
};
......
......@@ -75,7 +75,7 @@
if (position) {
await updateUserInfo(localStorage.token, { location: position });
toast.success('User location successfully retrieved.');
toast.success($i18n.t('User location successfully retrieved.'));
} else {
userLocation = false;
}
......@@ -111,7 +111,9 @@
saveSettings({ responseAutoCopy: responseAutoCopy });
} else {
toast.error(
'Clipboard write permission denied. Please check your browser settings to grant the necessary access.'
$i18n.t(
'Clipboard write permission denied. Please check your browser settings to grant the necessary access.'
)
);
}
};
......
......@@ -24,7 +24,7 @@
if (res) {
console.log(res);
toast.success('Memory added successfully');
toast.success($i18n.t('Memory added successfully'));
content = '';
show = false;
dispatch('save');
......
......@@ -35,7 +35,7 @@
if (res) {
console.log(res);
toast.success('Memory updated successfully');
toast.success($i18n.t('Memory updated successfully'));
dispatch('save');
show = false;
}
......
......@@ -129,7 +129,7 @@
});
if (res) {
toast.success('Memory deleted successfully');
toast.success($i18n.t('Memory deleted successfully'));
memories = await getMemories(localStorage.token);
}
}}
......@@ -182,7 +182,7 @@
});
if (res) {
toast.success('Memory cleared successfully');
toast.success($i18n.t('Memory cleared successfully'));
memories = [];
}
}}>{$i18n.t('Clear memory')}</button
......
......@@ -73,7 +73,7 @@
);
if (res) {
toast.success('Valves updated');
toast.success($i18n.t('Valves updated'));
valves = res;
}
} else if (tab === 'functions') {
......@@ -87,7 +87,7 @@
});
if (res) {
toast.success('Valves updated');
toast.success($i18n.t('Valves updated'));
valves = res;
}
}
......
......@@ -37,7 +37,7 @@
changes: [{ from: 0, to: codeEditor.state.doc.length, insert: formattedCode }]
});
toast.success('Code formatted successfully');
toast.success($i18n.t('Code formatted successfully'));
return true;
}
return false;
......
......@@ -81,7 +81,7 @@
});
if (res) {
toast.success('Function deleted successfully');
toast.success($i18n.t('Function deleted successfully'));
functions.set(await getFunctions(localStorage.token));
models.set(await getModels(localStorage.token));
......@@ -412,7 +412,7 @@
});
}
toast.success('Functions imported successfully');
toast.success($i18n.t('Functions imported successfully'));
functions.set(await getFunctions(localStorage.token));
models.set(await getModels(localStorage.token));
};
......
......@@ -77,7 +77,7 @@
});
if (res) {
toast.success('Tool deleted successfully');
toast.success($i18n.t('Tool deleted successfully'));
tools.set(await getTools(localStorage.token));
}
};
......@@ -388,7 +388,7 @@
});
}
toast.success('Tool imported successfully');
toast.success($i18n.t('Tool imported successfully'));
tools.set(await getTools(localStorage.token));
};
......
......@@ -62,6 +62,7 @@
"Attach file": "أرفق ملف",
"Attention to detail": "انتبه للتفاصيل",
"Audio": "صوتي",
"Audio settings updated successfully": "",
"August": "أغسطس",
"Auto-playback response": "استجابة التشغيل التلقائي",
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 الرابط الرئيسي",
......@@ -107,8 +108,10 @@
"Click here to select documents.": "انقر هنا لاختيار المستندات",
"click here.": "أضغط هنا",
"Click on the user role button to change a user's role.": "أضغط على أسم الصلاحيات لتغيرها للمستخدم",
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
"Clone": "استنساخ",
"Close": "أغلق",
"Code formatted successfully": "",
"Collection": "مجموعة",
"ComfyUI": "ComfyUI",
"ComfyUI Base URL": "ComfyUI الرابط الافتراضي",
......@@ -238,6 +241,7 @@
"Export Chats": "تصدير جميع الدردشات",
"Export Documents Mapping": "تصدير وثائق الخرائط",
"Export Functions": "",
"Export LiteLLM config.yaml": "",
"Export Models": "نماذج التصدير",
"Export Prompts": "مطالبات التصدير",
"Export Tools": "",
......@@ -258,7 +262,11 @@
"Form": "",
"Format your variables using square brackets like this:": "قم بتنسيق المتغيرات الخاصة بك باستخدام الأقواس المربعة مثل هذا:",
"Frequency Penalty": "عقوبة التردد",
"Function created successfully": "",
"Function deleted successfully": "",
"Function updated successfully": "",
"Functions": "",
"Functions imported successfully": "",
"General": "عام",
"General Settings": "الاعدادات العامة",
"Generate Image": "",
......@@ -324,6 +332,10 @@
"May": "مايو",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة",
"Memory added successfully": "",
"Memory cleared successfully": "",
"Memory deleted successfully": "",
"Memory updated successfully": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "لن تتم مشاركة الرسائل التي ترسلها بعد إنشاء الرابط الخاص بك. سيتمكن المستخدمون الذين لديهم عنوان URL من عرض الدردشة المشتركة",
"Minimum Score": "الحد الأدنى من النقاط",
"Mirostat": "Mirostat",
......@@ -337,10 +349,12 @@
"Model {{modelId}} not found": "لم يتم العثور على النموذج {{modelId}}.",
"Model {{modelName}} is not vision capable": "نموذج {{modelName}} غير قادر على الرؤية",
"Model {{name}} is now {{status}}": "نموذج {{name}} هو الآن {{status}}",
"Model created successfully!": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "تم اكتشاف مسار نظام الملفات النموذجي. الاسم المختصر للنموذج مطلوب للتحديث، ولا يمكن الاستمرار.",
"Model ID": "رقم الموديل",
"Model not selected": "لم تختار موديل",
"Model Params": "معلمات النموذج",
"Model updated successfully": "",
"Model Whitelisting": "القائمة البيضاء للموديل",
"Model(s) Whitelisted": "القائمة البيضاء الموديل",
"Modelfile Content": "محتوى الملف النموذجي",
......@@ -351,10 +365,13 @@
"Name your model": "قم بتسمية النموذج الخاص بك",
"New Chat": "دردشة جديدة",
"New Password": "كلمة المرور الجديدة",
"No content to speak": "",
"No documents found": "",
"No file selected": "",
"No results found": "لا توجد نتايج",
"No search query generated": "لم يتم إنشاء استعلام بحث",
"No source available": "لا يوجد مصدر متاح",
"No valves to update": "",
"None": "اي",
"Not factually correct": "ليس صحيحا من حيث الواقع",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.",
......@@ -396,7 +413,10 @@
"Permission denied when accessing microphone": "",
"Permission denied when accessing microphone: {{error}}": "{{error}} تم رفض الإذن عند الوصول إلى الميكروفون ",
"Personalization": "التخصيص",
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "خطوط الانابيب",
"Pipelines Not Detected": "",
"Pipelines Valves": "صمامات خطوط الأنابيب",
"Plain text (.txt)": "نص عادي (.txt)",
"Playground": "مكان التجربة",
......@@ -432,6 +452,7 @@
"Reset Upload Directory": "",
"Reset Vector Storage": "إعادة تعيين تخزين المتجهات",
"Response AutoCopy to Clipboard": "النسخ التلقائي للاستجابة إلى الحافظة",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Role": "منصب",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
......@@ -563,6 +584,10 @@
"Toggle settings": "فتح وأغلاق الاعدادات",
"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
"Tokens To Keep On Context Refresh (num_keep)": "",
"Tool created successfully": "",
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Tools": "",
"Top K": "Top K",
"Top P": "Top P",
......@@ -591,11 +616,14 @@
"use_mlock (Ollama)": "use_mlock (أولاما)",
"use_mmap (Ollama)": "use_mmap (أولاما)",
"user": "مستخدم",
"User location successfully retrieved.": "",
"User Permissions": "صلاحيات المستخدم",
"Users": "المستخدمين",
"Utilize": "يستخدم",
"Valid time units:": "وحدات زمنية صالحة:",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
"variable": "المتغير",
"variable to have them replaced with clipboard content.": "متغير لاستبدالها بمحتوى الحافظة.",
"Version": "إصدار",
......
......@@ -62,6 +62,7 @@
"Attach file": "Прикачване на файл",
"Attention to detail": "Внимание към детайлите",
"Audio": "Аудио",
"Audio settings updated successfully": "",
"August": "Август",
"Auto-playback response": "Аувтоматично възпроизвеждане на Отговора",
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Базов URL",
......@@ -107,8 +108,10 @@
"Click here to select documents.": "Натиснете тук, за да изберете документи.",
"click here.": "натиснете тук.",
"Click on the user role button to change a user's role.": "Натиснете върху бутона за промяна на ролята на потребителя.",
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
"Clone": "Клонинг",
"Close": "Затвори",
"Code formatted successfully": "",
"Collection": "Колекция",
"ComfyUI": "ComfyUI",
"ComfyUI Base URL": "ComfyUI Base URL",
......@@ -238,6 +241,7 @@
"Export Chats": "Експортване на чатове",
"Export Documents Mapping": "Експортване на документен мапинг",
"Export Functions": "",
"Export LiteLLM config.yaml": "",
"Export Models": "Експортиране на модели",
"Export Prompts": "Експортване на промптове",
"Export Tools": "",
......@@ -258,7 +262,11 @@
"Form": "",
"Format your variables using square brackets like this:": "Форматирайте вашите променливи, като използвате квадратни скоби, както следва:",
"Frequency Penalty": "Наказание за честота",
"Function created successfully": "",
"Function deleted successfully": "",
"Function updated successfully": "",
"Functions": "",
"Functions imported successfully": "",
"General": "Основни",
"General Settings": "Основни Настройки",
"Generate Image": "",
......@@ -324,6 +332,10 @@
"May": "Май",
"Memories accessible by LLMs will be shown here.": "Мемории достъпни от LLMs ще бъдат показани тук.",
"Memory": "Мемория",
"Memory added successfully": "",
"Memory cleared successfully": "",
"Memory deleted successfully": "",
"Memory updated successfully": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Съобщенията, които изпращате след създаването на връзката, няма да бъдат споделяни. Потребителите с URL адреса ще могат да видят споделения чат.",
"Minimum Score": "Минимална оценка",
"Mirostat": "Mirostat",
......@@ -337,10 +349,12 @@
"Model {{modelId}} not found": "Моделът {{modelId}} не е намерен",
"Model {{modelName}} is not vision capable": "Моделът {{modelName}} не може да се вижда",
"Model {{name}} is now {{status}}": "Моделът {{name}} сега е {{status}}",
"Model created successfully!": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Открит е път до файловата система на модела. За актуализацията се изисква съкратено име на модела, не може да продължи.",
"Model ID": "ИД на модел",
"Model not selected": "Не е избран модел",
"Model Params": "Модел Params",
"Model updated successfully": "",
"Model Whitelisting": "Модел Whitelisting",
"Model(s) Whitelisted": "Модели Whitelisted",
"Modelfile Content": "Съдържание на модфайл",
......@@ -351,10 +365,13 @@
"Name your model": "Дайте име на вашия модел",
"New Chat": "Нов чат",
"New Password": "Нова парола",
"No content to speak": "",
"No documents found": "",
"No file selected": "",
"No results found": "Няма намерени резултати",
"No search query generated": "Не е генерирана заявка за търсене",
"No source available": "Няма наличен източник",
"No valves to update": "",
"None": "Никой",
"Not factually correct": "Не е фактологически правилно",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Забележка: Ако зададете минимален резултат, търсенето ще върне само документи с резултат, по-голям или равен на минималния резултат.",
......@@ -396,7 +413,10 @@
"Permission denied when accessing microphone": "",
"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
"Personalization": "Персонализация",
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "Тръбопроводи",
"Pipelines Not Detected": "",
"Pipelines Valves": "Тръбопроводи Вентили",
"Plain text (.txt)": "Plain text (.txt)",
"Playground": "Плейграунд",
......@@ -432,6 +452,7 @@
"Reset Upload Directory": "",
"Reset Vector Storage": "Ресет Vector Storage",
"Response AutoCopy to Clipboard": "Аувтоматично копиране на отговор в клипборда",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Role": "Роля",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
......@@ -559,6 +580,10 @@
"Toggle settings": "Toggle settings",
"Toggle sidebar": "Toggle sidebar",
"Tokens To Keep On Context Refresh (num_keep)": "",
"Tool created successfully": "",
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Tools": "",
"Top K": "Top K",
"Top P": "Top P",
......@@ -587,11 +612,14 @@
"use_mlock (Ollama)": "use_mlock (Ollama)",
"use_mmap (Ollama)": "use_mmap (Ollama)",
"user": "потребител",
"User location successfully retrieved.": "",
"User Permissions": "Права на потребителя",
"Users": "Потребители",
"Utilize": "Използване",
"Valid time units:": "Валидни единици за време:",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
"variable": "променлива",
"variable to have them replaced with clipboard content.": "променливи да се заменят съдържанието от клипборд.",
"Version": "Версия",
......
......@@ -62,6 +62,7 @@
"Attach file": "ফাইল যুক্ত করুন",
"Attention to detail": "বিস্তারিত বিশেষতা",
"Audio": "অডিও",
"Audio settings updated successfully": "",
"August": "আগস্ট",
"Auto-playback response": "রেসপন্স অটো-প্লেব্যাক",
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 বেজ ইউআরএল",
......@@ -107,8 +108,10 @@
"Click here to select documents.": "ডকুমেন্টগুলো নির্বাচন করার জন্য এখানে ক্লিক করুন",
"click here.": "এখানে ক্লিক করুন",
"Click on the user role button to change a user's role.": "ইউজারের পদবি পরিবর্তন করার জন্য ইউজারের পদবি বাটনে ক্লিক করুন",
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
"Clone": "ক্লোন",
"Close": "বন্ধ",
"Code formatted successfully": "",
"Collection": "সংগ্রহ",
"ComfyUI": "ComfyUI",
"ComfyUI Base URL": "ComfyUI Base URL",
......@@ -238,6 +241,7 @@
"Export Chats": "চ্যাটগুলো এক্সপোর্ট করুন",
"Export Documents Mapping": "ডকুমেন্টসমূহ ম্যাপিং এক্সপোর্ট করুন",
"Export Functions": "",
"Export LiteLLM config.yaml": "",
"Export Models": "রপ্তানি মডেল",
"Export Prompts": "প্রম্পটগুলো একপোর্ট করুন",
"Export Tools": "",
......@@ -258,7 +262,11 @@
"Form": "",
"Format your variables using square brackets like this:": "আপনার ভেরিয়বলগুলো এভাবে স্কয়ার ব্রাকেটের মাধ্যমে সাজান",
"Frequency Penalty": "ফ্রিকোয়েন্সি পেনাল্টি",
"Function created successfully": "",
"Function deleted successfully": "",
"Function updated successfully": "",
"Functions": "",
"Functions imported successfully": "",
"General": "সাধারণ",
"General Settings": "সাধারণ সেটিংসমূহ",
"Generate Image": "",
......@@ -324,6 +332,10 @@
"May": "মে",
"Memories accessible by LLMs will be shown here.": "LLMs দ্বারা অ্যাক্সেসযোগ্য মেমোরিগুলি এখানে দেখানো হবে।",
"Memory": "মেমোরি",
"Memory added successfully": "",
"Memory cleared successfully": "",
"Memory deleted successfully": "",
"Memory updated successfully": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "আপনার লিঙ্ক তৈরি করার পরে আপনার পাঠানো বার্তাগুলি শেয়ার করা হবে না। ইউআরএল ব্যবহারকারীরা শেয়ার করা চ্যাট দেখতে পারবেন।",
"Minimum Score": "Minimum Score",
"Mirostat": "Mirostat",
......@@ -337,10 +349,12 @@
"Model {{modelId}} not found": "{{modelId}} মডেল পাওয়া যায়নি",
"Model {{modelName}} is not vision capable": "মডেল {{modelName}} দৃষ্টি সক্ষম নয়",
"Model {{name}} is now {{status}}": "মডেল {{name}} এখন {{status}}",
"Model created successfully!": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "মডেল ফাইলসিস্টেম পাথ পাওয়া গেছে। আপডেটের জন্য মডেলের শর্টনেম আবশ্যক, এগিয়ে যাওয়া যাচ্ছে না।",
"Model ID": "মডেল ID",
"Model not selected": "মডেল নির্বাচন করা হয়নি",
"Model Params": "মডেল প্যারাম",
"Model updated successfully": "",
"Model Whitelisting": "মডেল হোয়াইটলিস্টিং",
"Model(s) Whitelisted": "হোয়াইটলিস্টেড মডেল(সমূহ)",
"Modelfile Content": "মডেলফাইল কনটেন্ট",
......@@ -351,10 +365,13 @@
"Name your model": "আপনার মডেলের নাম দিন",
"New Chat": "নতুন চ্যাট",
"New Password": "নতুন পাসওয়ার্ড",
"No content to speak": "",
"No documents found": "",
"No file selected": "",
"No results found": "কোন ফলাফল পাওয়া যায়নি",
"No search query generated": "কোনও অনুসন্ধান ক্যোয়ারী উত্পন্ন হয়নি",
"No source available": "কোন উৎস পাওয়া যায়নি",
"No valves to update": "",
"None": "কোনোটিই নয়",
"Not factually correct": "তথ্যগত দিক থেকে সঠিক নয়",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "দ্রষ্টব্য: আপনি যদি ন্যূনতম স্কোর সেট করেন তবে অনুসন্ধানটি কেবলমাত্র ন্যূনতম স্কোরের চেয়ে বেশি বা সমান স্কোর সহ নথিগুলি ফেরত দেবে।",
......@@ -396,7 +413,10 @@
"Permission denied when accessing microphone": "",
"Permission denied when accessing microphone: {{error}}": "মাইক্রোফোন ব্যবহারের অনুমতি পাওয়া যায়নি: {{error}}",
"Personalization": "ডিজিটাল বাংলা",
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "পাইপলাইন",
"Pipelines Not Detected": "",
"Pipelines Valves": "পাইপলাইন ভালভ",
"Plain text (.txt)": "প্লায়েন টেক্সট (.txt)",
"Playground": "খেলাঘর",
......@@ -432,6 +452,7 @@
"Reset Upload Directory": "",
"Reset Vector Storage": "ভেক্টর স্টোরেজ রিসেট করুন",
"Response AutoCopy to Clipboard": "রেসপন্সগুলো স্বয়ংক্রিভাবে ক্লিপবোর্ডে কপি হবে",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Role": "পদবি",
"Rosé Pine": "রোজ পাইন",
"Rosé Pine Dawn": "ভোরের রোজ পাইন",
......@@ -559,6 +580,10 @@
"Toggle settings": "সেটিংস টোগল",
"Toggle sidebar": "সাইডবার টোগল",
"Tokens To Keep On Context Refresh (num_keep)": "",
"Tool created successfully": "",
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Tools": "",
"Top K": "Top K",
"Top P": "Top P",
......@@ -587,11 +612,14 @@
"use_mlock (Ollama)": "use_mlock (ওলামা)",
"use_mmap (Ollama)": "use_mmap (ওলামা)",
"user": "ব্যবহারকারী",
"User location successfully retrieved.": "",
"User Permissions": "ইউজার পারমিশনসমূহ",
"Users": "ব্যাবহারকারীগণ",
"Utilize": "ইউটিলাইজ",
"Valid time units:": "সময়ের গ্রহণযোগ্য এককসমূহ:",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
"variable": "ভেরিয়েবল",
"variable to have them replaced with clipboard content.": "ক্লিপবোর্ডের কন্টেন্ট দিয়ে যেই ভেরিয়েবল রিপ্লেস করা যাবে।",
"Version": "ভার্সন",
......
......@@ -62,6 +62,7 @@
"Attach file": "Adjuntar arxiu",
"Attention to detail": "Atenció al detall",
"Audio": "Àudio",
"Audio settings updated successfully": "",
"August": "Agost",
"Auto-playback response": "Reproduir la resposta automàticament",
"AUTOMATIC1111 Base URL": "URL Base d'AUTOMATIC1111",
......@@ -107,8 +108,10 @@
"Click here to select documents.": "Clica aquí per seleccionar documents.",
"click here.": "clica aquí.",
"Click on the user role button to change a user's role.": "Clica sobre el botó de rol d'usuari per canviar el rol d'un usuari.",
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
"Clone": "Clonar",
"Close": "Tancar",
"Code formatted successfully": "",
"Collection": "Col·lecció",
"ComfyUI": "ComfyUI",
"ComfyUI Base URL": "URL base de ComfyUI",
......@@ -238,6 +241,7 @@
"Export Chats": "Exportar els xats",
"Export Documents Mapping": "Exportar el mapatge de documents",
"Export Functions": "Exportar funcions",
"Export LiteLLM config.yaml": "",
"Export Models": "Exportar els models",
"Export Prompts": "Exportar les indicacions",
"Export Tools": "Exportar les eines",
......@@ -258,7 +262,11 @@
"Form": "Formulari",
"Format your variables using square brackets like this:": "Formata les teves variables utilitzant claudàtors així:",
"Frequency Penalty": "Penalització per freqüència",
"Function created successfully": "",
"Function deleted successfully": "",
"Function updated successfully": "",
"Functions": "Funcions",
"Functions imported successfully": "",
"General": "General",
"General Settings": "Configuració general",
"Generate Image": "Generar imatge",
......@@ -324,6 +332,10 @@
"May": "Maig",
"Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.",
"Memory": "Memòria",
"Memory added successfully": "",
"Memory cleared successfully": "",
"Memory deleted successfully": "",
"Memory updated successfully": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Els missatges enviats després de crear el teu enllaç no es compartiran. Els usuaris amb l'URL podran veure el xat compartit.",
"Minimum Score": "Puntuació mínima",
"Mirostat": "Mirostat",
......@@ -337,10 +349,12 @@
"Model {{modelId}} not found": "No s'ha trobat el model {{modelId}}",
"Model {{modelName}} is not vision capable": "El model {{modelName}} no és capaç de visió",
"Model {{name}} is now {{status}}": "El model {{name}} ara és {{status}}",
"Model created successfully!": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "S'ha detectat el camí del sistema de fitxers del model. És necessari un nom curt del model per actualitzar, no es pot continuar.",
"Model ID": "Identificador del model",
"Model not selected": "Model no seleccionat",
"Model Params": "Paràmetres del model",
"Model updated successfully": "",
"Model Whitelisting": "Llista blanca de models",
"Model(s) Whitelisted": "Model(s) a la llista blanca",
"Modelfile Content": "Contingut del Modelfile",
......@@ -351,10 +365,13 @@
"Name your model": "Posa un nom al teu model",
"New Chat": "Nou xat",
"New Password": "Nova contrasenya",
"No content to speak": "",
"No documents found": "No s'han trobat documents",
"No file selected": "",
"No results found": "No s'han trobat resultats",
"No search query generated": "No s'ha generat cap consulta",
"No source available": "Sense font disponible",
"No valves to update": "",
"None": "Cap",
"Not factually correct": "No és clarament correcte",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si s'estableix una puntuació mínima, la cerca només retornarà documents amb una puntuació major o igual a la puntuació mínima.",
......@@ -396,7 +413,10 @@
"Permission denied when accessing microphone": "Permís denegat en accedir al micròfon",
"Permission denied when accessing microphone: {{error}}": "Permís denegat en accedir al micròfon: {{error}}",
"Personalization": "Personalització",
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "Pipelines",
"Pipelines Not Detected": "",
"Pipelines Valves": "Vàlvules de les Pipelines",
"Plain text (.txt)": "Text pla (.txt)",
"Playground": "Zona de jocs",
......@@ -432,6 +452,7 @@
"Reset Upload Directory": "Restableix el directori de pujades",
"Reset Vector Storage": "Restableix l'emmagatzematge de vectors",
"Response AutoCopy to Clipboard": "Copiar la resposta automàticament al porta-retalls",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Role": "Rol",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Albada Rosé Pine",
......@@ -560,6 +581,10 @@
"Toggle settings": "Alterna configuracions",
"Toggle sidebar": "Alterna la barra lateral",
"Tokens To Keep On Context Refresh (num_keep)": "Tokens a mantenir en l'actualització del context (num_keep)",
"Tool created successfully": "",
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Tools": "Eines",
"Top K": "Top K",
"Top P": "Top P",
......@@ -588,11 +613,14 @@
"use_mlock (Ollama)": "use_mlock (Ollama)",
"use_mmap (Ollama)": "use_mmap (Ollama)",
"user": "usuari",
"User location successfully retrieved.": "",
"User Permissions": "Permisos d'usuari",
"Users": "Usuaris",
"Utilize": "Utilitzar",
"Valid time units:": "Unitats de temps vàlides:",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
"variable": "variable",
"variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",
"Version": "Versió",
......
......@@ -62,6 +62,7 @@
"Attach file": "Ilakip ang usa ka file",
"Attention to detail": "Pagtagad sa mga detalye",
"Audio": "Audio",
"Audio settings updated successfully": "",
"August": "",
"Auto-playback response": "Autoplay nga tubag",
"AUTOMATIC1111 Base URL": "Base URL AUTOMATIC1111",
......@@ -107,8 +108,10 @@
"Click here to select documents.": "Pag-klik dinhi aron mapili ang mga dokumento.",
"click here.": "I-klik dinhi.",
"Click on the user role button to change a user's role.": "I-klik ang User Role button aron usbon ang role sa user.",
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
"Clone": "",
"Close": "Suod nga",
"Code formatted successfully": "",
"Collection": "Koleksyon",
"ComfyUI": "",
"ComfyUI Base URL": "",
......@@ -238,6 +241,7 @@
"Export Chats": "I-export ang mga chat",
"Export Documents Mapping": "I-export ang pagmapa sa dokumento",
"Export Functions": "",
"Export LiteLLM config.yaml": "",
"Export Models": "",
"Export Prompts": "Export prompts",
"Export Tools": "",
......@@ -258,7 +262,11 @@
"Form": "",
"Format your variables using square brackets like this:": "I-format ang imong mga variable gamit ang square brackets sama niini:",
"Frequency Penalty": "",
"Function created successfully": "",
"Function deleted successfully": "",
"Function updated successfully": "",
"Functions": "",
"Functions imported successfully": "",
"General": "Heneral",
"General Settings": "kinatibuk-ang mga setting",
"Generate Image": "",
......@@ -324,6 +332,10 @@
"May": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Memory added successfully": "",
"Memory cleared successfully": "",
"Memory deleted successfully": "",
"Memory updated successfully": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "",
"Mirostat": "Mirostat",
......@@ -337,10 +349,12 @@
"Model {{modelId}} not found": "Modelo {{modelId}} wala makit-an",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
"Model created successfully!": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model ID": "",
"Model not selected": "Wala gipili ang modelo",
"Model Params": "",
"Model updated successfully": "",
"Model Whitelisting": "Whitelist sa modelo",
"Model(s) Whitelisted": "Gi-whitelist nga (mga) modelo",
"Modelfile Content": "Mga sulod sa template file",
......@@ -351,10 +365,13 @@
"Name your model": "",
"New Chat": "Bag-ong diskusyon",
"New Password": "Bag-ong Password",
"No content to speak": "",
"No documents found": "",
"No file selected": "",
"No results found": "",
"No search query generated": "",
"No source available": "Walay tinubdan nga anaa",
"No valves to update": "",
"None": "",
"Not factually correct": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
......@@ -396,7 +413,10 @@
"Permission denied when accessing microphone": "",
"Permission denied when accessing microphone: {{error}}": "Gidili ang pagtugot sa dihang nag-access sa mikropono: {{error}}",
"Personalization": "",
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "",
"Pipelines Not Detected": "",
"Pipelines Valves": "",
"Plain text (.txt)": "",
"Playground": "Dulaanan",
......@@ -432,6 +452,7 @@
"Reset Upload Directory": "",
"Reset Vector Storage": "I-reset ang pagtipig sa vector",
"Response AutoCopy to Clipboard": "Awtomatikong kopya sa tubag sa clipboard",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Role": "Papel",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Aube Pine Rosé",
......@@ -559,6 +580,10 @@
"Toggle settings": "I-toggle ang mga setting",
"Toggle sidebar": "I-toggle ang sidebar",
"Tokens To Keep On Context Refresh (num_keep)": "",
"Tool created successfully": "",
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Tools": "",
"Top K": "Top K",
"Top P": "Ibabaw nga P",
......@@ -587,11 +612,14 @@
"use_mlock (Ollama)": "",
"use_mmap (Ollama)": "",
"user": "tiggamit",
"User location successfully retrieved.": "",
"User Permissions": "Mga permiso sa tiggamit",
"Users": "Mga tiggamit",
"Utilize": "Sa paggamit",
"Valid time units:": "Balido nga mga yunit sa oras:",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
"variable": "variable",
"variable to have them replaced with clipboard content.": "variable aron pulihan kini sa mga sulud sa clipboard.",
"Version": "Bersyon",
......
......@@ -62,6 +62,7 @@
"Attach file": "Datei anhängen",
"Attention to detail": "Auge fürs Detail",
"Audio": "Audio",
"Audio settings updated successfully": "",
"August": "August",
"Auto-playback response": "Automatische Wiedergabe der Antwort",
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis URL",
......@@ -107,8 +108,10 @@
"Click here to select documents.": "Klicke hier um Dokumente auszuwählen",
"click here.": "hier klicken.",
"Click on the user role button to change a user's role.": "Klicke auf die Benutzerrollenschaltfläche, um die Rolle eines Benutzers zu ändern.",
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
"Clone": "Klonen",
"Close": "Schließe",
"Code formatted successfully": "",
"Collection": "Kollektion",
"ComfyUI": "ComfyUI",
"ComfyUI Base URL": "ComfyUI Base URL",
......@@ -238,6 +241,7 @@
"Export Chats": "Chats exportieren",
"Export Documents Mapping": "Dokumentenmapping exportieren",
"Export Functions": "",
"Export LiteLLM config.yaml": "",
"Export Models": "Modelle exportieren",
"Export Prompts": "Prompts exportieren",
"Export Tools": "",
......@@ -258,7 +262,11 @@
"Form": "",
"Format your variables using square brackets like this:": "Formatiere deine Variablen mit eckigen Klammern wie folgt:",
"Frequency Penalty": "Frequenz-Strafe",
"Function created successfully": "",
"Function deleted successfully": "",
"Function updated successfully": "",
"Functions": "",
"Functions imported successfully": "",
"General": "Allgemein",
"General Settings": "Allgemeine Einstellungen",
"Generate Image": "",
......@@ -324,6 +332,10 @@
"May": "Mai",
"Memories accessible by LLMs will be shown here.": "Memories, die von LLMs zugänglich sind, werden hier angezeigt.",
"Memory": "Memory",
"Memory added successfully": "",
"Memory cleared successfully": "",
"Memory deleted successfully": "",
"Memory updated successfully": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Nachdem Sie Ihren Link erstellt haben, werden Ihre Nachrichten nicht geteilt. Benutzer mit dem Link können den geteilten Chat sehen.",
"Minimum Score": "Mindestscore",
"Mirostat": "Mirostat",
......@@ -337,10 +349,12 @@
"Model {{modelId}} not found": "Modell {{modelId}} nicht gefunden",
"Model {{modelName}} is not vision capable": "Das Modell {{modelName}} ist nicht sehfähig",
"Model {{name}} is now {{status}}": "Modell {{name}} ist jetzt {{status}}",
"Model created successfully!": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell-Dateisystempfad erkannt. Modellkurzname ist für das Update erforderlich, Fortsetzung nicht möglich.",
"Model ID": "Modell-ID",
"Model not selected": "Modell nicht ausgewählt",
"Model Params": "Modell-Params",
"Model updated successfully": "",
"Model Whitelisting": "Modell-Whitelisting",
"Model(s) Whitelisted": "Modell(e) auf der Whitelist",
"Modelfile Content": "Modelfile Content",
......@@ -351,10 +365,13 @@
"Name your model": "Benennen Sie Ihr Modell",
"New Chat": "Neuer Chat",
"New Password": "Neues Passwort",
"No content to speak": "",
"No documents found": "",
"No file selected": "",
"No results found": "Keine Ergebnisse gefunden",
"No search query generated": "Keine Suchanfrage generiert",
"No source available": "Keine Quelle verfügbar.",
"No valves to update": "",
"None": "Nichts",
"Not factually correct": "Nicht sachlich korrekt.",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Hinweis: Wenn du einen Mindestscore festlegst, wird die Suche nur Dokumente zurückgeben, deren Score größer oder gleich dem Mindestscore ist.",
......@@ -396,7 +413,10 @@
"Permission denied when accessing microphone": "",
"Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}",
"Personalization": "Personalisierung",
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "Pipelines",
"Pipelines Not Detected": "",
"Pipelines Valves": "Rohrleitungen Ventile",
"Plain text (.txt)": "Nur Text (.txt)",
"Playground": "Testumgebung",
......@@ -432,6 +452,7 @@
"Reset Upload Directory": "Uploadverzeichnis löschen",
"Reset Vector Storage": "Vektorspeicher zurücksetzen",
"Response AutoCopy to Clipboard": "Antwort automatisch in die Zwischenablage kopieren",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Role": "Rolle",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
......@@ -559,6 +580,10 @@
"Toggle settings": "Einstellungen umschalten",
"Toggle sidebar": "Seitenleiste umschalten",
"Tokens To Keep On Context Refresh (num_keep)": "",
"Tool created successfully": "",
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Tools": "",
"Top K": "Top K",
"Top P": "Top P",
......@@ -587,11 +612,14 @@
"use_mlock (Ollama)": "use_mlock (Ollama)",
"use_mmap (Ollama)": "use_mmap (Ollama)",
"user": "Benutzer",
"User location successfully retrieved.": "",
"User Permissions": "Benutzerberechtigungen",
"Users": "Benutzer",
"Utilize": "Nutze die",
"Valid time units:": "Gültige Zeiteinheiten:",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
"variable": "Variable",
"variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.",
"Version": "Version",
......
......@@ -62,6 +62,7 @@
"Attach file": "Attach file",
"Attention to detail": "",
"Audio": "Audio",
"Audio settings updated successfully": "",
"August": "",
"Auto-playback response": "Auto-playback response",
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
......@@ -107,8 +108,10 @@
"Click here to select documents.": "Click to select documents",
"click here.": "click here. Such click.",
"Click on the user role button to change a user's role.": "Click user role button to change role.",
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
"Clone": "",
"Close": "Close",
"Code formatted successfully": "",
"Collection": "Collection",
"ComfyUI": "",
"ComfyUI Base URL": "",
......@@ -238,6 +241,7 @@
"Export Chats": "Export Barks",
"Export Documents Mapping": "Export Mappings of Dogos",
"Export Functions": "",
"Export LiteLLM config.yaml": "",
"Export Models": "",
"Export Prompts": "Export Promptos",
"Export Tools": "",
......@@ -258,7 +262,11 @@
"Form": "",
"Format your variables using square brackets like this:": "Format variables using square brackets like wow:",
"Frequency Penalty": "",
"Function created successfully": "",
"Function deleted successfully": "",
"Function updated successfully": "",
"Functions": "",
"Functions imported successfully": "",
"General": "Woweral",
"General Settings": "General Doge Settings",
"Generate Image": "",
......@@ -324,6 +332,10 @@
"May": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Memory added successfully": "",
"Memory cleared successfully": "",
"Memory deleted successfully": "",
"Memory updated successfully": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "",
"Mirostat": "Mirostat",
......@@ -337,10 +349,12 @@
"Model {{modelId}} not found": "Model {{modelId}} not found",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
"Model created successfully!": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem bark detected. Model shortname is required for update, cannot continue.",
"Model ID": "",
"Model not selected": "Model not selected",
"Model Params": "",
"Model updated successfully": "",
"Model Whitelisting": "Wowdel Whitelisting",
"Model(s) Whitelisted": "Wowdel(s) Whitelisted",
"Modelfile Content": "Modelfile Content",
......@@ -351,10 +365,13 @@
"Name your model": "",
"New Chat": "New Bark",
"New Password": "New Barkword",
"No content to speak": "",
"No documents found": "",
"No file selected": "",
"No results found": "",
"No search query generated": "",
"No source available": "No source available",
"No valves to update": "",
"None": "",
"Not factually correct": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
......@@ -396,7 +413,10 @@
"Permission denied when accessing microphone": "",
"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
"Personalization": "Personalization",
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "",
"Pipelines Not Detected": "",
"Pipelines Valves": "",
"Plain text (.txt)": "Plain text (.txt)",
"Playground": "Playground",
......@@ -432,6 +452,7 @@
"Reset Upload Directory": "",
"Reset Vector Storage": "Reset Vector Storage",
"Response AutoCopy to Clipboard": "Copy Bark Auto Bark",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Role": "Role",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
......@@ -561,6 +582,10 @@
"Toggle settings": "Toggle settings much toggle",
"Toggle sidebar": "Toggle sidebar much toggle",
"Tokens To Keep On Context Refresh (num_keep)": "",
"Tool created successfully": "",
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Tools": "",
"Top K": "Top K very top",
"Top P": "Top P very top",
......@@ -589,11 +614,14 @@
"use_mlock (Ollama)": "",
"use_mmap (Ollama)": "",
"user": "user much user",
"User location successfully retrieved.": "",
"User Permissions": "User Permissions much permissions",
"Users": "Users much users",
"Utilize": "Utilize very use",
"Valid time units:": "Valid time units: much time",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
"variable": "variable very variable",
"variable to have them replaced with clipboard content.": "variable to have them replaced with clipboard content. Very replace.",
"Version": "Version much version",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment