Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
c72e911f
Unverified
Commit
c72e911f
authored
Jun 20, 2024
by
Timothy Jaeryang Baek
Committed by
GitHub
Jun 20, 2024
Browse files
Merge pull request #3337 from SimonOriginal/dev
Added {$i18n.t('')} keys, updated Ukrainian translation
parents
f1de6359
f62d033e
Changes
39
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
82 additions
and
7 deletions
+82
-7
src/lib/components/admin/AddUserModal.svelte
src/lib/components/admin/AddUserModal.svelte
+6
-6
src/lib/components/chat/Settings/About.svelte
src/lib/components/chat/Settings/About.svelte
+2
-1
src/lib/i18n/locales/ar-BH/translation.json
src/lib/i18n/locales/ar-BH/translation.json
+4
-0
src/lib/i18n/locales/bg-BG/translation.json
src/lib/i18n/locales/bg-BG/translation.json
+4
-0
src/lib/i18n/locales/bn-BD/translation.json
src/lib/i18n/locales/bn-BD/translation.json
+4
-0
src/lib/i18n/locales/ca-ES/translation.json
src/lib/i18n/locales/ca-ES/translation.json
+4
-0
src/lib/i18n/locales/ceb-PH/translation.json
src/lib/i18n/locales/ceb-PH/translation.json
+4
-0
src/lib/i18n/locales/de-DE/translation.json
src/lib/i18n/locales/de-DE/translation.json
+4
-0
src/lib/i18n/locales/dg-DG/translation.json
src/lib/i18n/locales/dg-DG/translation.json
+6
-0
src/lib/i18n/locales/en-GB/translation.json
src/lib/i18n/locales/en-GB/translation.json
+4
-0
src/lib/i18n/locales/en-US/translation.json
src/lib/i18n/locales/en-US/translation.json
+4
-0
src/lib/i18n/locales/es-ES/translation.json
src/lib/i18n/locales/es-ES/translation.json
+4
-0
src/lib/i18n/locales/fa-IR/translation.json
src/lib/i18n/locales/fa-IR/translation.json
+4
-0
src/lib/i18n/locales/fi-FI/translation.json
src/lib/i18n/locales/fi-FI/translation.json
+4
-0
src/lib/i18n/locales/fr-CA/translation.json
src/lib/i18n/locales/fr-CA/translation.json
+4
-0
src/lib/i18n/locales/fr-FR/translation.json
src/lib/i18n/locales/fr-FR/translation.json
+4
-0
src/lib/i18n/locales/he-IL/translation.json
src/lib/i18n/locales/he-IL/translation.json
+4
-0
src/lib/i18n/locales/hi-IN/translation.json
src/lib/i18n/locales/hi-IN/translation.json
+4
-0
src/lib/i18n/locales/hr-HR/translation.json
src/lib/i18n/locales/hr-HR/translation.json
+4
-0
src/lib/i18n/locales/it-IT/translation.json
src/lib/i18n/locales/it-IT/translation.json
+4
-0
No files found.
src/lib/components/admin/AddUserModal.svelte
View file @
c72e911f
...
@@ -153,7 +153,7 @@
...
@@ -153,7 +153,7 @@
type="button"
type="button"
on:click={() => {
on:click={() => {
tab = '';
tab = '';
}}>Form</button
}}>
{$i18n.t('
Form
')}
</button
>
>
<button
<button
...
@@ -161,7 +161,7 @@
...
@@ -161,7 +161,7 @@
type="button"
type="button"
on:click={() => {
on:click={() => {
tab = 'import';
tab = 'import';
}}>CSV Import</button
}}>
{$i18n.t('
CSV Import
')}
</button
>
>
</div>
</div>
<div class="px-1">
<div class="px-1">
...
@@ -176,9 +176,9 @@
...
@@ -176,9 +176,9 @@
placeholder={$i18n.t('Enter Your Role')}
placeholder={$i18n.t('Enter Your Role')}
required
required
>
>
<option value="pending"> pending </option>
<option value="pending">
{$i18n.t('
pending
')}
</option>
<option value="user"> user </option>
<option value="user">
{$i18n.t('
user
')}
</option>
<option value="admin"> admin </option>
<option value="admin">
{$i18n.t('
admin
')}
</option>
</select>
</select>
</div>
</div>
</div>
</div>
...
@@ -262,7 +262,7 @@
...
@@ -262,7 +262,7 @@
class="underline dark:text-gray-200"
class="underline dark:text-gray-200"
href="{WEBUI_BASE_URL}/static/user-import.csv"
href="{WEBUI_BASE_URL}/static/user-import.csv"
>
>
Click here to download user import template file.
{$i18n.t('
Click here to download user import template file.
')}
</a>
</a>
</div>
</div>
</div>
</div>
...
...
src/lib/components/chat/Settings/About.svelte
View file @
c72e911f
...
@@ -132,7 +132,8 @@
...
@@ -132,7 +132,8 @@
<div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
<div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
{#if !$WEBUI_NAME.includes('Open WebUI')}
{#if !$WEBUI_NAME.includes('Open WebUI')}
<span class=" text-gray-500 dark:text-gray-300 font-medium">{$WEBUI_NAME}</span> -
<span class=" text-gray-500 dark:text-gray-300 font-medium">{$WEBUI_NAME}</span> -
{/if}{$i18n.t('Created by')}
{/if}
{$i18n.t('Created by')}
<a
<a
class=" text-gray-500 dark:text-gray-300 font-medium"
class=" text-gray-500 dark:text-gray-300 font-medium"
href="https://github.com/tjbck"
href="https://github.com/tjbck"
...
...
src/lib/i18n/locales/ar-BH/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"أضغط هنا للمساعدة"
,
"Click here for help."
:
"أضغط هنا للمساعدة"
,
"Click here to"
:
"أضغط هنا الانتقال"
,
"Click here to"
:
"أضغط هنا الانتقال"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"أضغط هنا للاختيار"
,
"Click here to select"
:
"أضغط هنا للاختيار"
,
"Click here to select a csv file."
:
"أضغط هنا للاختيار ملف csv"
,
"Click here to select a csv file."
:
"أضغط هنا للاختيار ملف csv"
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"عمل سر جديد"
,
"Create new secret key"
:
"عمل سر جديد"
,
"Created at"
:
"أنشئت في"
,
"Created at"
:
"أنشئت في"
,
"Created At"
:
"أنشئت من"
,
"Created At"
:
"أنشئت من"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"الموديل المختار"
,
"Current Model"
:
"الموديل المختار"
,
"Current Password"
:
"كلمة السر الحالية"
,
"Current Password"
:
"كلمة السر الحالية"
,
"Custom"
:
"مخصص"
,
"Custom"
:
"مخصص"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"دفق قطع الاستجابة الخارجية الكبيرة بسلاسة"
,
"Fluidly stream large external response chunks"
:
"دفق قطع الاستجابة الخارجية الكبيرة بسلاسة"
,
"Focus chat input"
:
"التركيز على إدخال الدردشة"
,
"Focus chat input"
:
"التركيز على إدخال الدردشة"
,
"Followed instructions perfectly"
:
"اتبعت التعليمات على أكمل وجه"
,
"Followed instructions perfectly"
:
"اتبعت التعليمات على أكمل وجه"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"قم بتنسيق المتغيرات الخاصة بك باستخدام الأقواس المربعة مثل هذا:"
,
"Format your variables using square brackets like this:"
:
"قم بتنسيق المتغيرات الخاصة بك باستخدام الأقواس المربعة مثل هذا:"
,
"Frequency Penalty"
:
"عقوبة التردد"
,
"Frequency Penalty"
:
"عقوبة التردد"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/bg-BG/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"Натиснете тук за помощ."
,
"Click here for help."
:
"Натиснете тук за помощ."
,
"Click here to"
:
"Натиснете тук за"
,
"Click here to"
:
"Натиснете тук за"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"Натиснете тук, за да изберете"
,
"Click here to select"
:
"Натиснете тук, за да изберете"
,
"Click here to select a csv file."
:
"Натиснете тук, за да изберете csv файл."
,
"Click here to select a csv file."
:
"Натиснете тук, за да изберете csv файл."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"Създаване на нов секретен ключ"
,
"Create new secret key"
:
"Създаване на нов секретен ключ"
,
"Created at"
:
"Създадено на"
,
"Created at"
:
"Създадено на"
,
"Created At"
:
"Създадено на"
,
"Created At"
:
"Създадено на"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Текущ модел"
,
"Current Model"
:
"Текущ модел"
,
"Current Password"
:
"Текуща Парола"
,
"Current Password"
:
"Текуща Парола"
,
"Custom"
:
"Персонализиран"
,
"Custom"
:
"Персонализиран"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Плавно предаване на големи части от външен отговор"
,
"Fluidly stream large external response chunks"
:
"Плавно предаване на големи части от външен отговор"
,
"Focus chat input"
:
"Фокусиране на чат вход"
,
"Focus chat input"
:
"Фокусиране на чат вход"
,
"Followed instructions perfectly"
:
"Следвайте инструкциите перфектно"
,
"Followed instructions perfectly"
:
"Следвайте инструкциите перфектно"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"Форматирайте вашите променливи, като използвате квадратни скоби, както следва:"
,
"Format your variables using square brackets like this:"
:
"Форматирайте вашите променливи, като използвате квадратни скоби, както следва:"
,
"Frequency Penalty"
:
"Наказание за честота"
,
"Frequency Penalty"
:
"Наказание за честота"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/bn-BD/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"সাহায্যের জন্য এখানে ক্লিক করুন"
,
"Click here for help."
:
"সাহায্যের জন্য এখানে ক্লিক করুন"
,
"Click here to"
:
"এখানে ক্লিক করুন"
,
"Click here to"
:
"এখানে ক্লিক করুন"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"নির্বাচন করার জন্য এখানে ক্লিক করুন"
,
"Click here to select"
:
"নির্বাচন করার জন্য এখানে ক্লিক করুন"
,
"Click here to select a csv file."
:
"একটি csv ফাইল নির্বাচন করার জন্য এখানে ক্লিক করুন"
,
"Click here to select a csv file."
:
"একটি csv ফাইল নির্বাচন করার জন্য এখানে ক্লিক করুন"
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"একটি নতুন সিক্রেট কী তৈরি করুন"
,
"Create new secret key"
:
"একটি নতুন সিক্রেট কী তৈরি করুন"
,
"Created at"
:
"নির্মানকাল"
,
"Created at"
:
"নির্মানকাল"
,
"Created At"
:
"নির্মানকাল"
,
"Created At"
:
"নির্মানকাল"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"বর্তমান মডেল"
,
"Current Model"
:
"বর্তমান মডেল"
,
"Current Password"
:
"বর্তমান পাসওয়ার্ড"
,
"Current Password"
:
"বর্তমান পাসওয়ার্ড"
,
"Custom"
:
"কাস্টম"
,
"Custom"
:
"কাস্টম"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"বড় এক্সটার্নাল রেসপন্স চাঙ্কগুলো মসৃণভাবে প্রবাহিত করুন"
,
"Fluidly stream large external response chunks"
:
"বড় এক্সটার্নাল রেসপন্স চাঙ্কগুলো মসৃণভাবে প্রবাহিত করুন"
,
"Focus chat input"
:
"চ্যাট ইনপুট ফোকাস করুন"
,
"Focus chat input"
:
"চ্যাট ইনপুট ফোকাস করুন"
,
"Followed instructions perfectly"
:
"নির্দেশাবলী নিখুঁতভাবে অনুসরণ করা হয়েছে"
,
"Followed instructions perfectly"
:
"নির্দেশাবলী নিখুঁতভাবে অনুসরণ করা হয়েছে"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"আপনার ভেরিয়বলগুলো এভাবে স্কয়ার ব্রাকেটের মাধ্যমে সাজান"
,
"Format your variables using square brackets like this:"
:
"আপনার ভেরিয়বলগুলো এভাবে স্কয়ার ব্রাকেটের মাধ্যমে সাজান"
,
"Frequency Penalty"
:
"ফ্রিকোয়েন্সি পেনাল্টি"
,
"Frequency Penalty"
:
"ফ্রিকোয়েন্সি পেনাল্টি"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/ca-ES/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"Fes clic aquí per ajuda."
,
"Click here for help."
:
"Fes clic aquí per ajuda."
,
"Click here to"
:
"Fes clic aquí per"
,
"Click here to"
:
"Fes clic aquí per"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"Fes clic aquí per seleccionar"
,
"Click here to select"
:
"Fes clic aquí per seleccionar"
,
"Click here to select a csv file."
:
"Fes clic aquí per seleccionar un fitxer csv."
,
"Click here to select a csv file."
:
"Fes clic aquí per seleccionar un fitxer csv."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"Crea una nova clau secreta"
,
"Create new secret key"
:
"Crea una nova clau secreta"
,
"Created at"
:
"Creat el"
,
"Created at"
:
"Creat el"
,
"Created At"
:
"Creat el"
,
"Created At"
:
"Creat el"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Model Actual"
,
"Current Model"
:
"Model Actual"
,
"Current Password"
:
"Contrasenya Actual"
,
"Current Password"
:
"Contrasenya Actual"
,
"Custom"
:
"Personalitzat"
,
"Custom"
:
"Personalitzat"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Transmita con fluidez grandes fragmentos de respuesta externa"
,
"Fluidly stream large external response chunks"
:
"Transmita con fluidez grandes fragmentos de respuesta externa"
,
"Focus chat input"
:
"Enfoca l'entrada del xat"
,
"Focus chat input"
:
"Enfoca l'entrada del xat"
,
"Followed instructions perfectly"
:
"Siguiu les instruccions perfeicte"
,
"Followed instructions perfectly"
:
"Siguiu les instruccions perfeicte"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"Formata les teves variables utilitzant claudàtors així:"
,
"Format your variables using square brackets like this:"
:
"Formata les teves variables utilitzant claudàtors així:"
,
"Frequency Penalty"
:
"Pena de freqüència"
,
"Frequency Penalty"
:
"Pena de freqüència"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/ceb-PH/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"I-klik dinhi alang sa tabang."
,
"Click here for help."
:
"I-klik dinhi alang sa tabang."
,
"Click here to"
:
""
,
"Click here to"
:
""
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"I-klik dinhi aron makapili"
,
"Click here to select"
:
"I-klik dinhi aron makapili"
,
"Click here to select a csv file."
:
""
,
"Click here to select a csv file."
:
""
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
""
,
"Create new secret key"
:
""
,
"Created at"
:
"Gihimo ang"
,
"Created at"
:
"Gihimo ang"
,
"Created At"
:
""
,
"Created At"
:
""
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Kasamtangang modelo"
,
"Current Model"
:
"Kasamtangang modelo"
,
"Current Password"
:
"Kasamtangang Password"
,
"Current Password"
:
"Kasamtangang Password"
,
"Custom"
:
"Custom"
,
"Custom"
:
"Custom"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Hapsay nga paghatud sa daghang mga tipik sa eksternal nga mga tubag"
,
"Fluidly stream large external response chunks"
:
"Hapsay nga paghatud sa daghang mga tipik sa eksternal nga mga tubag"
,
"Focus chat input"
:
"Pag-focus sa entry sa diskusyon"
,
"Focus chat input"
:
"Pag-focus sa entry sa diskusyon"
,
"Followed instructions perfectly"
:
""
,
"Followed instructions perfectly"
:
""
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"I-format ang imong mga variable gamit ang square brackets sama niini:"
,
"Format your variables using square brackets like this:"
:
"I-format ang imong mga variable gamit ang square brackets sama niini:"
,
"Frequency Penalty"
:
""
,
"Frequency Penalty"
:
""
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/de-DE/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
"Memory löschen"
,
"Clear memory"
:
"Memory löschen"
,
"Click here for help."
:
"Klicke hier für Hilfe."
,
"Click here for help."
:
"Klicke hier für Hilfe."
,
"Click here to"
:
"Klicke hier, um"
,
"Click here to"
:
"Klicke hier, um"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"Klicke hier um auszuwählen"
,
"Click here to select"
:
"Klicke hier um auszuwählen"
,
"Click here to select a csv file."
:
"Klicke hier um eine CSV-Datei auszuwählen."
,
"Click here to select a csv file."
:
"Klicke hier um eine CSV-Datei auszuwählen."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"Neuen API Schlüssel erstellen"
,
"Create new secret key"
:
"Neuen API Schlüssel erstellen"
,
"Created at"
:
"Erstellt am"
,
"Created at"
:
"Erstellt am"
,
"Created At"
:
"Erstellt am"
,
"Created At"
:
"Erstellt am"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Aktuelles Modell"
,
"Current Model"
:
"Aktuelles Modell"
,
"Current Password"
:
"Aktuelles Passwort"
,
"Current Password"
:
"Aktuelles Passwort"
,
"Custom"
:
"Benutzerdefiniert"
,
"Custom"
:
"Benutzerdefiniert"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Große externe Antwortblöcke flüssig streamen"
,
"Fluidly stream large external response chunks"
:
"Große externe Antwortblöcke flüssig streamen"
,
"Focus chat input"
:
"Chat-Eingabe fokussieren"
,
"Focus chat input"
:
"Chat-Eingabe fokussieren"
,
"Followed instructions perfectly"
:
"Anweisungen perfekt befolgt"
,
"Followed instructions perfectly"
:
"Anweisungen perfekt befolgt"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"Formatiere deine Variablen mit eckigen Klammern wie folgt:"
,
"Format your variables using square brackets like this:"
:
"Formatiere deine Variablen mit eckigen Klammern wie folgt:"
,
"Frequency Penalty"
:
"Frequenz-Strafe"
,
"Frequency Penalty"
:
"Frequenz-Strafe"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/dg-DG/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"Click for help. Much assist."
,
"Click here for help."
:
"Click for help. Much assist."
,
"Click here to"
:
""
,
"Click here to"
:
""
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"Click to select"
,
"Click here to select"
:
"Click to select"
,
"Click here to select a csv file."
:
""
,
"Click here to select a csv file."
:
""
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
""
,
"Create new secret key"
:
""
,
"Created at"
:
"Created at"
,
"Created at"
:
"Created at"
,
"Created At"
:
""
,
"Created At"
:
""
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Current Model"
,
"Current Model"
:
"Current Model"
,
"Current Password"
:
"Current Password"
,
"Current Password"
:
"Current Password"
,
"Custom"
:
"Custom"
,
"Custom"
:
"Custom"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Fluidly wow big chunks"
,
"Fluidly stream large external response chunks"
:
"Fluidly wow big chunks"
,
"Focus chat input"
:
"Focus chat bork"
,
"Focus chat input"
:
"Focus chat bork"
,
"Followed instructions perfectly"
:
""
,
"Followed instructions perfectly"
:
""
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"Format variables using square brackets like wow:"
,
"Format your variables using square brackets like this:"
:
"Format variables using square brackets like wow:"
,
"Frequency Penalty"
:
""
,
"Frequency Penalty"
:
""
,
"Functions"
:
""
,
"Functions"
:
""
,
...
@@ -445,6 +449,8 @@
...
@@ -445,6 +449,8 @@
"Search Result Count"
:
""
,
"Search Result Count"
:
""
,
"Search Tools"
:
""
,
"Search Tools"
:
""
,
"Searched {{count}} sites_one"
:
""
,
"Searched {{count}} sites_one"
:
""
,
"Searched {{count}} sites_few"
:
""
,
"Searched {{count}} sites_many"
:
""
,
"Searched {{count}} sites_other"
:
""
,
"Searched {{count}} sites_other"
:
""
,
"Searching \"{{searchQuery}}\""
:
""
,
"Searching \"{{searchQuery}}\""
:
""
,
"Searxng Query URL"
:
""
,
"Searxng Query URL"
:
""
,
...
...
src/lib/i18n/locales/en-GB/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
""
,
"Click here for help."
:
""
,
"Click here to"
:
""
,
"Click here to"
:
""
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
""
,
"Click here to select"
:
""
,
"Click here to select a csv file."
:
""
,
"Click here to select a csv file."
:
""
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
""
,
"Create new secret key"
:
""
,
"Created at"
:
""
,
"Created at"
:
""
,
"Created At"
:
""
,
"Created At"
:
""
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
""
,
"Current Model"
:
""
,
"Current Password"
:
""
,
"Current Password"
:
""
,
"Custom"
:
""
,
"Custom"
:
""
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
""
,
"Fluidly stream large external response chunks"
:
""
,
"Focus chat input"
:
""
,
"Focus chat input"
:
""
,
"Followed instructions perfectly"
:
""
,
"Followed instructions perfectly"
:
""
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
""
,
"Format your variables using square brackets like this:"
:
""
,
"Frequency Penalty"
:
""
,
"Frequency Penalty"
:
""
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/en-US/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
""
,
"Click here for help."
:
""
,
"Click here to"
:
""
,
"Click here to"
:
""
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
""
,
"Click here to select"
:
""
,
"Click here to select a csv file."
:
""
,
"Click here to select a csv file."
:
""
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
""
,
"Create new secret key"
:
""
,
"Created at"
:
""
,
"Created at"
:
""
,
"Created At"
:
""
,
"Created At"
:
""
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
""
,
"Current Model"
:
""
,
"Current Password"
:
""
,
"Current Password"
:
""
,
"Custom"
:
""
,
"Custom"
:
""
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
""
,
"Fluidly stream large external response chunks"
:
""
,
"Focus chat input"
:
""
,
"Focus chat input"
:
""
,
"Followed instructions perfectly"
:
""
,
"Followed instructions perfectly"
:
""
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
""
,
"Format your variables using square brackets like this:"
:
""
,
"Frequency Penalty"
:
""
,
"Frequency Penalty"
:
""
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/es-ES/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"Presiona aquí para obtener ayuda."
,
"Click here for help."
:
"Presiona aquí para obtener ayuda."
,
"Click here to"
:
"Presiona aquí para"
,
"Click here to"
:
"Presiona aquí para"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"Presiona aquí para seleccionar"
,
"Click here to select"
:
"Presiona aquí para seleccionar"
,
"Click here to select a csv file."
:
"Presiona aquí para seleccionar un archivo csv."
,
"Click here to select a csv file."
:
"Presiona aquí para seleccionar un archivo csv."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"Crear una nueva clave secreta"
,
"Create new secret key"
:
"Crear una nueva clave secreta"
,
"Created at"
:
"Creado en"
,
"Created at"
:
"Creado en"
,
"Created At"
:
"Creado en"
,
"Created At"
:
"Creado en"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Modelo Actual"
,
"Current Model"
:
"Modelo Actual"
,
"Current Password"
:
"Contraseña Actual"
,
"Current Password"
:
"Contraseña Actual"
,
"Custom"
:
"Personalizado"
,
"Custom"
:
"Personalizado"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Transmita con fluidez grandes fragmentos de respuesta externa"
,
"Fluidly stream large external response chunks"
:
"Transmita con fluidez grandes fragmentos de respuesta externa"
,
"Focus chat input"
:
"Enfoca la entrada del chat"
,
"Focus chat input"
:
"Enfoca la entrada del chat"
,
"Followed instructions perfectly"
:
"Siguió las instrucciones perfectamente"
,
"Followed instructions perfectly"
:
"Siguió las instrucciones perfectamente"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"Formatea tus variables usando corchetes de la siguiente manera:"
,
"Format your variables using square brackets like this:"
:
"Formatea tus variables usando corchetes de la siguiente manera:"
,
"Frequency Penalty"
:
"Penalización de frecuencia"
,
"Frequency Penalty"
:
"Penalización de frecuencia"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/fa-IR/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"برای کمک اینجا را کلیک کنید."
,
"Click here for help."
:
"برای کمک اینجا را کلیک کنید."
,
"Click here to"
:
"برای کمک اینجا را کلیک کنید."
,
"Click here to"
:
"برای کمک اینجا را کلیک کنید."
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"برای انتخاب اینجا کلیک کنید"
,
"Click here to select"
:
"برای انتخاب اینجا کلیک کنید"
,
"Click here to select a csv file."
:
"برای انتخاب یک فایل csv اینجا را کلیک کنید."
,
"Click here to select a csv file."
:
"برای انتخاب یک فایل csv اینجا را کلیک کنید."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"ساخت کلید gehez جدید"
,
"Create new secret key"
:
"ساخت کلید gehez جدید"
,
"Created at"
:
"ایجاد شده در"
,
"Created at"
:
"ایجاد شده در"
,
"Created At"
:
"ایجاد شده در"
,
"Created At"
:
"ایجاد شده در"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"مدل فعلی"
,
"Current Model"
:
"مدل فعلی"
,
"Current Password"
:
"رمز عبور فعلی"
,
"Current Password"
:
"رمز عبور فعلی"
,
"Custom"
:
"دلخواه"
,
"Custom"
:
"دلخواه"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"تکه های پاسخ خارجی بزرگ را به صورت سیال پخش کنید"
,
"Fluidly stream large external response chunks"
:
"تکه های پاسخ خارجی بزرگ را به صورت سیال پخش کنید"
,
"Focus chat input"
:
"فوکوس کردن ورودی گپ"
,
"Focus chat input"
:
"فوکوس کردن ورودی گپ"
,
"Followed instructions perfectly"
:
"دستورالعمل ها را کاملا دنبال کرد"
,
"Followed instructions perfectly"
:
"دستورالعمل ها را کاملا دنبال کرد"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"متغیرهای خود را با استفاده از براکت مربع به شکل زیر قالب بندی کنید:"
,
"Format your variables using square brackets like this:"
:
"متغیرهای خود را با استفاده از براکت مربع به شکل زیر قالب بندی کنید:"
,
"Frequency Penalty"
:
"مجازات فرکانس"
,
"Frequency Penalty"
:
"مجازات فرکانس"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/fi-FI/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"Klikkaa tästä saadaksesi apua."
,
"Click here for help."
:
"Klikkaa tästä saadaksesi apua."
,
"Click here to"
:
"Klikkaa tästä"
,
"Click here to"
:
"Klikkaa tästä"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"Klikkaa tästä valitaksesi"
,
"Click here to select"
:
"Klikkaa tästä valitaksesi"
,
"Click here to select a csv file."
:
"Klikkaa tästä valitaksesi CSV-tiedosto."
,
"Click here to select a csv file."
:
"Klikkaa tästä valitaksesi CSV-tiedosto."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"Luo uusi salainen avain"
,
"Create new secret key"
:
"Luo uusi salainen avain"
,
"Created at"
:
"Luotu"
,
"Created at"
:
"Luotu"
,
"Created At"
:
"Luotu"
,
"Created At"
:
"Luotu"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Nykyinen malli"
,
"Current Model"
:
"Nykyinen malli"
,
"Current Password"
:
"Nykyinen salasana"
,
"Current Password"
:
"Nykyinen salasana"
,
"Custom"
:
"Mukautettu"
,
"Custom"
:
"Mukautettu"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Virtaa suuria ulkoisia vastausosia joustavasti"
,
"Fluidly stream large external response chunks"
:
"Virtaa suuria ulkoisia vastausosia joustavasti"
,
"Focus chat input"
:
"Fokusoi syöttökenttään"
,
"Focus chat input"
:
"Fokusoi syöttökenttään"
,
"Followed instructions perfectly"
:
"Noudatti ohjeita täydellisesti"
,
"Followed instructions perfectly"
:
"Noudatti ohjeita täydellisesti"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"Muotoile muuttujat hakasulkeilla näin:"
,
"Format your variables using square brackets like this:"
:
"Muotoile muuttujat hakasulkeilla näin:"
,
"Frequency Penalty"
:
"Taajuussakko"
,
"Frequency Penalty"
:
"Taajuussakko"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/fr-CA/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"Cliquez ici pour de l'aide."
,
"Click here for help."
:
"Cliquez ici pour de l'aide."
,
"Click here to"
:
"Cliquez ici pour"
,
"Click here to"
:
"Cliquez ici pour"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"Cliquez ici pour sélectionner"
,
"Click here to select"
:
"Cliquez ici pour sélectionner"
,
"Click here to select a csv file."
:
"Cliquez ici pour sélectionner un fichier csv."
,
"Click here to select a csv file."
:
"Cliquez ici pour sélectionner un fichier csv."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"Créer une nouvelle clé secrète"
,
"Create new secret key"
:
"Créer une nouvelle clé secrète"
,
"Created at"
:
"Créé le"
,
"Created at"
:
"Créé le"
,
"Created At"
:
"Créé le"
,
"Created At"
:
"Créé le"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Modèle actuel"
,
"Current Model"
:
"Modèle actuel"
,
"Current Password"
:
"Mot de passe actuel"
,
"Current Password"
:
"Mot de passe actuel"
,
"Custom"
:
"Personnalisé"
,
"Custom"
:
"Personnalisé"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Diffusez de manière fluide de gros morceaux de réponses externes"
,
"Fluidly stream large external response chunks"
:
"Diffusez de manière fluide de gros morceaux de réponses externes"
,
"Focus chat input"
:
"Se concentrer sur l'entrée de la discussion"
,
"Focus chat input"
:
"Se concentrer sur l'entrée de la discussion"
,
"Followed instructions perfectly"
:
"Suivi des instructions parfaitement"
,
"Followed instructions perfectly"
:
"Suivi des instructions parfaitement"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"Formatez vos variables en utilisant des crochets comme ceci :"
,
"Format your variables using square brackets like this:"
:
"Formatez vos variables en utilisant des crochets comme ceci :"
,
"Frequency Penalty"
:
"Pénalité de fréquence"
,
"Frequency Penalty"
:
"Pénalité de fréquence"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/fr-FR/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"Cliquez ici pour de l'aide."
,
"Click here for help."
:
"Cliquez ici pour de l'aide."
,
"Click here to"
:
"Cliquez ici pour"
,
"Click here to"
:
"Cliquez ici pour"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"Cliquez ici pour sélectionner"
,
"Click here to select"
:
"Cliquez ici pour sélectionner"
,
"Click here to select a csv file."
:
"Cliquez ici pour sélectionner un fichier csv."
,
"Click here to select a csv file."
:
"Cliquez ici pour sélectionner un fichier csv."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"Créer une nouvelle clé secrète"
,
"Create new secret key"
:
"Créer une nouvelle clé secrète"
,
"Created at"
:
"Créé le"
,
"Created at"
:
"Créé le"
,
"Created At"
:
"Crée Le"
,
"Created At"
:
"Crée Le"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Modèle actuel"
,
"Current Model"
:
"Modèle actuel"
,
"Current Password"
:
"Mot de passe actuel"
,
"Current Password"
:
"Mot de passe actuel"
,
"Custom"
:
"Personnalisé"
,
"Custom"
:
"Personnalisé"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Diffusez de manière fluide de gros morceaux de réponses externes"
,
"Fluidly stream large external response chunks"
:
"Diffusez de manière fluide de gros morceaux de réponses externes"
,
"Focus chat input"
:
"Concentrer sur l'entrée du chat"
,
"Focus chat input"
:
"Concentrer sur l'entrée du chat"
,
"Followed instructions perfectly"
:
"A suivi les instructions parfaitement"
,
"Followed instructions perfectly"
:
"A suivi les instructions parfaitement"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"Formatez vos variables en utilisant des crochets comme ceci :"
,
"Format your variables using square brackets like this:"
:
"Formatez vos variables en utilisant des crochets comme ceci :"
,
"Frequency Penalty"
:
"Pénalité de fréquence"
,
"Frequency Penalty"
:
"Pénalité de fréquence"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/he-IL/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"לחץ כאן לעזרה."
,
"Click here for help."
:
"לחץ כאן לעזרה."
,
"Click here to"
:
"לחץ כאן כדי"
,
"Click here to"
:
"לחץ כאן כדי"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"לחץ כאן לבחירה"
,
"Click here to select"
:
"לחץ כאן לבחירה"
,
"Click here to select a csv file."
:
"לחץ כאן לבחירת קובץ csv."
,
"Click here to select a csv file."
:
"לחץ כאן לבחירת קובץ csv."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"צור מפתח סודי חדש"
,
"Create new secret key"
:
"צור מפתח סודי חדש"
,
"Created at"
:
"נוצר ב"
,
"Created at"
:
"נוצר ב"
,
"Created At"
:
"נוצר ב"
,
"Created At"
:
"נוצר ב"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"המודל הנוכחי"
,
"Current Model"
:
"המודל הנוכחי"
,
"Current Password"
:
"הסיסמה הנוכחית"
,
"Current Password"
:
"הסיסמה הנוכחית"
,
"Custom"
:
"מותאם אישית"
,
"Custom"
:
"מותאם אישית"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"שידור נתונים חיצוניים בקצב רציף"
,
"Fluidly stream large external response chunks"
:
"שידור נתונים חיצוניים בקצב רציף"
,
"Focus chat input"
:
"מיקוד הקלט לצ'אט"
,
"Focus chat input"
:
"מיקוד הקלט לצ'אט"
,
"Followed instructions perfectly"
:
"עקב אחר ההוראות במושלמות"
,
"Followed instructions perfectly"
:
"עקב אחר ההוראות במושלמות"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"עצב את המשתנים שלך באמצעות סוגריים מרובעים כך:"
,
"Format your variables using square brackets like this:"
:
"עצב את המשתנים שלך באמצעות סוגריים מרובעים כך:"
,
"Frequency Penalty"
:
"עונש תדירות"
,
"Frequency Penalty"
:
"עונש תדירות"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/hi-IN/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"सहायता के लिए यहां क्लिक करें।"
,
"Click here for help."
:
"सहायता के लिए यहां क्लिक करें।"
,
"Click here to"
:
"यहां क्लिक करें"
,
"Click here to"
:
"यहां क्लिक करें"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"चयन करने के लिए यहां क्लिक करें।"
,
"Click here to select"
:
"चयन करने के लिए यहां क्लिक करें।"
,
"Click here to select a csv file."
:
"सीएसवी फ़ाइल का चयन करने के लिए यहां क्लिक करें।"
,
"Click here to select a csv file."
:
"सीएसवी फ़ाइल का चयन करने के लिए यहां क्लिक करें।"
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"नया क्रिप्टोग्राफिक क्षेत्र बनाएं"
,
"Create new secret key"
:
"नया क्रिप्टोग्राफिक क्षेत्र बनाएं"
,
"Created at"
:
"किस समय बनाया गया"
,
"Created at"
:
"किस समय बनाया गया"
,
"Created At"
:
"किस समय बनाया गया"
,
"Created At"
:
"किस समय बनाया गया"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"वर्तमान मॉडल"
,
"Current Model"
:
"वर्तमान मॉडल"
,
"Current Password"
:
"वर्तमान पासवर्ड"
,
"Current Password"
:
"वर्तमान पासवर्ड"
,
"Custom"
:
"कस्टम संस्करण"
,
"Custom"
:
"कस्टम संस्करण"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"बड़े बाह्य प्रतिक्रिया खंडों को तरल रूप से प्रवाहित करें"
,
"Fluidly stream large external response chunks"
:
"बड़े बाह्य प्रतिक्रिया खंडों को तरल रूप से प्रवाहित करें"
,
"Focus chat input"
:
"चैट इनपुट पर फ़ोकस करें"
,
"Focus chat input"
:
"चैट इनपुट पर फ़ोकस करें"
,
"Followed instructions perfectly"
:
"निर्देशों का पूर्णतः पालन किया"
,
"Followed instructions perfectly"
:
"निर्देशों का पूर्णतः पालन किया"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"वर्गाकार कोष्ठकों का उपयोग करके अपने चरों को इस प्रकार प्रारूपित करें :"
,
"Format your variables using square brackets like this:"
:
"वर्गाकार कोष्ठकों का उपयोग करके अपने चरों को इस प्रकार प्रारूपित करें :"
,
"Frequency Penalty"
:
"फ्रीक्वेंसी पेनल्टी"
,
"Frequency Penalty"
:
"फ्रीक्वेंसी पेनल्टी"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/hr-HR/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
"Očisti memoriju"
,
"Clear memory"
:
"Očisti memoriju"
,
"Click here for help."
:
"Kliknite ovdje za pomoć."
,
"Click here for help."
:
"Kliknite ovdje za pomoć."
,
"Click here to"
:
"Kliknite ovdje za"
,
"Click here to"
:
"Kliknite ovdje za"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"Kliknite ovdje za odabir"
,
"Click here to select"
:
"Kliknite ovdje za odabir"
,
"Click here to select a csv file."
:
"Kliknite ovdje da odaberete csv datoteku."
,
"Click here to select a csv file."
:
"Kliknite ovdje da odaberete csv datoteku."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"Stvori novi tajni ključ"
,
"Create new secret key"
:
"Stvori novi tajni ključ"
,
"Created at"
:
"Stvoreno"
,
"Created at"
:
"Stvoreno"
,
"Created At"
:
"Stvoreno"
,
"Created At"
:
"Stvoreno"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Trenutni model"
,
"Current Model"
:
"Trenutni model"
,
"Current Password"
:
"Trenutna lozinka"
,
"Current Password"
:
"Trenutna lozinka"
,
"Custom"
:
"Prilagođeno"
,
"Custom"
:
"Prilagođeno"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Glavno strujanje velikih vanjskih dijelova odgovora"
,
"Fluidly stream large external response chunks"
:
"Glavno strujanje velikih vanjskih dijelova odgovora"
,
"Focus chat input"
:
"Fokusiraj unos razgovora"
,
"Focus chat input"
:
"Fokusiraj unos razgovora"
,
"Followed instructions perfectly"
:
"Savršeno slijedio upute"
,
"Followed instructions perfectly"
:
"Savršeno slijedio upute"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"Formatirajte svoje varijable pomoću uglatih zagrada ovako:"
,
"Format your variables using square brackets like this:"
:
"Formatirajte svoje varijable pomoću uglatih zagrada ovako:"
,
"Frequency Penalty"
:
"Kazna za učestalost"
,
"Frequency Penalty"
:
"Kazna za učestalost"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
src/lib/i18n/locales/it-IT/translation.json
View file @
c72e911f
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
"Clear memory"
:
""
,
"Clear memory"
:
""
,
"Click here for help."
:
"Clicca qui per aiuto."
,
"Click here for help."
:
"Clicca qui per aiuto."
,
"Click here to"
:
"Clicca qui per"
,
"Click here to"
:
"Clicca qui per"
,
"Click here to download user import template file."
:
""
,
"Click here to select"
:
"Clicca qui per selezionare"
,
"Click here to select"
:
"Clicca qui per selezionare"
,
"Click here to select a csv file."
:
"Clicca qui per selezionare un file csv."
,
"Click here to select a csv file."
:
"Clicca qui per selezionare un file csv."
,
"Click here to select a py file."
:
""
,
"Click here to select a py file."
:
""
,
...
@@ -133,6 +134,8 @@
...
@@ -133,6 +134,8 @@
"Create new secret key"
:
"Crea nuova chiave segreta"
,
"Create new secret key"
:
"Crea nuova chiave segreta"
,
"Created at"
:
"Creato il"
,
"Created at"
:
"Creato il"
,
"Created At"
:
"Creato il"
,
"Created At"
:
"Creato il"
,
"Created by"
:
""
,
"CSV Import"
:
""
,
"Current Model"
:
"Modello corrente"
,
"Current Model"
:
"Modello corrente"
,
"Current Password"
:
"Password corrente"
,
"Current Password"
:
"Password corrente"
,
"Custom"
:
"Personalizzato"
,
"Custom"
:
"Personalizzato"
,
...
@@ -246,6 +249,7 @@
...
@@ -246,6 +249,7 @@
"Fluidly stream large external response chunks"
:
"Trasmetti in modo fluido blocchi di risposta esterni di grandi dimensioni"
,
"Fluidly stream large external response chunks"
:
"Trasmetti in modo fluido blocchi di risposta esterni di grandi dimensioni"
,
"Focus chat input"
:
"Metti a fuoco l'input della chat"
,
"Focus chat input"
:
"Metti a fuoco l'input della chat"
,
"Followed instructions perfectly"
:
"Ha seguito le istruzioni alla perfezione"
,
"Followed instructions perfectly"
:
"Ha seguito le istruzioni alla perfezione"
,
"Form"
:
""
,
"Format your variables using square brackets like this:"
:
"Formatta le tue variabili usando parentesi quadre come questa:"
,
"Format your variables using square brackets like this:"
:
"Formatta le tue variabili usando parentesi quadre come questa:"
,
"Frequency Penalty"
:
"Penalità di frequenza"
,
"Frequency Penalty"
:
"Penalità di frequenza"
,
"Functions"
:
""
,
"Functions"
:
""
,
...
...
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment