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
de03bf83
"src/vscode:/vscode.git/clone" did not exist on "871f031d38e621b295fbc2f84ce01da957972815"
Commit
de03bf83
authored
Jun 03, 2024
by
Jun Siang Cheah
Browse files
feat: add option to allow nonlocal TTS voices
parent
b4fca046
Changes
36
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
58 additions
and
5 deletions
+58
-5
src/lib/components/chat/Settings/Audio.svelte
src/lib/components/chat/Settings/Audio.svelte
+20
-5
src/lib/i18n/locales/ar-BH/translation.json
src/lib/i18n/locales/ar-BH/translation.json
+2
-0
src/lib/i18n/locales/bg-BG/translation.json
src/lib/i18n/locales/bg-BG/translation.json
+2
-0
src/lib/i18n/locales/bn-BD/translation.json
src/lib/i18n/locales/bn-BD/translation.json
+2
-0
src/lib/i18n/locales/ca-ES/translation.json
src/lib/i18n/locales/ca-ES/translation.json
+2
-0
src/lib/i18n/locales/ceb-PH/translation.json
src/lib/i18n/locales/ceb-PH/translation.json
+2
-0
src/lib/i18n/locales/de-DE/translation.json
src/lib/i18n/locales/de-DE/translation.json
+2
-0
src/lib/i18n/locales/dg-DG/translation.json
src/lib/i18n/locales/dg-DG/translation.json
+2
-0
src/lib/i18n/locales/en-GB/translation.json
src/lib/i18n/locales/en-GB/translation.json
+2
-0
src/lib/i18n/locales/en-US/translation.json
src/lib/i18n/locales/en-US/translation.json
+2
-0
src/lib/i18n/locales/es-ES/translation.json
src/lib/i18n/locales/es-ES/translation.json
+2
-0
src/lib/i18n/locales/fa-IR/translation.json
src/lib/i18n/locales/fa-IR/translation.json
+2
-0
src/lib/i18n/locales/fi-FI/translation.json
src/lib/i18n/locales/fi-FI/translation.json
+2
-0
src/lib/i18n/locales/fr-CA/translation.json
src/lib/i18n/locales/fr-CA/translation.json
+2
-0
src/lib/i18n/locales/fr-FR/translation.json
src/lib/i18n/locales/fr-FR/translation.json
+2
-0
src/lib/i18n/locales/he-IL/translation.json
src/lib/i18n/locales/he-IL/translation.json
+2
-0
src/lib/i18n/locales/hi-IN/translation.json
src/lib/i18n/locales/hi-IN/translation.json
+2
-0
src/lib/i18n/locales/hr-HR/translation.json
src/lib/i18n/locales/hr-HR/translation.json
+2
-0
src/lib/i18n/locales/it-IT/translation.json
src/lib/i18n/locales/it-IT/translation.json
+2
-0
src/lib/i18n/locales/ja-JP/translation.json
src/lib/i18n/locales/ja-JP/translation.json
+2
-0
No files found.
src/lib/components/chat/Settings/Audio.svelte
View file @
de03bf83
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
import
{
user
,
settings
}
from
'$lib/stores'
;
import
{
user
,
settings
}
from
'$lib/stores'
;
import
{
createEventDispatcher
,
onMount
,
getContext
}
from
'svelte'
;
import
{
createEventDispatcher
,
onMount
,
getContext
}
from
'svelte'
;
import
{
toast
}
from
'svelte-sonner'
;
import
{
toast
}
from
'svelte-sonner'
;
import
Switch
from
'$lib/components/common/Switch.svelte'
;
const
dispatch
=
createEventDispatcher
();
const
dispatch
=
createEventDispatcher
();
const
i18n
=
getContext
(
'i18n'
);
const
i18n
=
getContext
(
'i18n'
);
...
@@ -20,6 +21,7 @@
...
@@ -20,6 +21,7 @@
let
conversationMode
=
false
;
let
conversationMode
=
false
;
let
speechAutoSend
=
false
;
let
speechAutoSend
=
false
;
let
responseAutoPlayback
=
false
;
let
responseAutoPlayback
=
false
;
let
nonLocalVoices
=
false
;
let
TTSEngines
=
[
''
,
'openai'
];
let
TTSEngines
=
[
''
,
'openai'
];
let
TTSEngine
=
''
;
let
TTSEngine
=
''
;
...
@@ -105,6 +107,7 @@
...
@@ -105,6 +107,7 @@
STTEngine
=
$
settings
?.
audio
?.
STTEngine
??
''
;
STTEngine
=
$
settings
?.
audio
?.
STTEngine
??
''
;
TTSEngine
=
$
settings
?.
audio
?.
TTSEngine
??
''
;
TTSEngine
=
$
settings
?.
audio
?.
TTSEngine
??
''
;
nonLocalVoices
=
$
settings
.
audio
?.
nonLocalVoices
??
false
;
speaker
=
$
settings
?.
audio
?.
speaker
??
''
;
speaker
=
$
settings
?.
audio
?.
speaker
??
''
;
model
=
$
settings
?.
audio
?.
model
??
''
;
model
=
$
settings
?.
audio
?.
model
??
''
;
...
@@ -139,7 +142,8 @@
...
@@ -139,7 +142,8 @@
STTEngine
:
STTEngine
!== '' ? STTEngine : undefined,
STTEngine
:
STTEngine
!== '' ? STTEngine : undefined,
TTSEngine
:
TTSEngine
!== '' ? TTSEngine : undefined,
TTSEngine
:
TTSEngine
!== '' ? TTSEngine : undefined,
speaker
:
speaker
!== '' ? speaker : undefined,
speaker
:
speaker
!== '' ? speaker : undefined,
model
:
model
!== '' ? model : undefined
model
:
model
!== '' ? model : undefined,
nonLocalVoices
:
nonLocalVoices
}
}
});
});
dispatch
(
'save'
);
dispatch
(
'save'
);
...
@@ -290,16 +294,27 @@
...
@@ -290,16 +294,27 @@
<
select
<
select
class
=
"w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
class
=
"w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
bind
:
value
={
speaker
}
bind
:
value
={
speaker
}
placeholder
=
"Select a voice"
>
>
<
option
value
=
""
selected
>{$
i18n
.
t
(
'Default'
)}</
option
>
<
option
value
=
""
selected
={
speaker
!== ''}>{$i18n.t('Default')}</option>
{#
each
voices
.
filter
((
v
)
=>
v
.
localService
===
true
)
as
voice
}
{#
each
voices
.
filter
((
v
)
=>
nonLocalVoices
||
v
.
localService
===
true
)
as
voice
}
<
option
value
={
voice
.
name
}
class
=
"bg-gray-100 dark:bg-gray-700"
>{
voice
.
name
}</
option
<
option
value
={
voice
.
name
}
class
=
"bg-gray-100 dark:bg-gray-700"
selected
={
speaker
===
voice
.
name
}>{
voice
.
name
}</
option
>
>
{/
each
}
{/
each
}
</
select
>
</
select
>
</
div
>
</
div
>
</
div
>
</
div
>
<
div
class
=
"flex items-center justify-between mb-1"
>
<
div
class
=
"text-sm"
>
{$
i18n
.
t
(
'Allow non-local voices'
)}
</
div
>
<
div
class
=
"mt-1"
>
<
Switch
bind
:
state
={
nonLocalVoices
}
/>
</
div
>
</
div
>
</
div
>
</
div
>
{:
else
if
TTSEngine
===
'openai'
}
{:
else
if
TTSEngine
===
'openai'
}
<
div
>
<
div
>
...
...
src/lib/i18n/locales/ar-BH/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"جميع المستخدمين"
,
"All Users"
:
"جميع المستخدمين"
,
"Allow"
:
"يسمح"
,
"Allow"
:
"يسمح"
,
"Allow Chat Deletion"
:
"يستطيع حذف المحادثات"
,
"Allow Chat Deletion"
:
"يستطيع حذف المحادثات"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"الأحرف الأبجدية الرقمية والواصلات"
,
"alphanumeric characters and hyphens"
:
"الأحرف الأبجدية الرقمية والواصلات"
,
"Already have an account?"
:
"هل تملك حساب ؟"
,
"Already have an account?"
:
"هل تملك حساب ؟"
,
"an assistant"
:
"مساعد"
,
"an assistant"
:
"مساعد"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"تجريبي"
,
"Experimental"
:
"تجريبي"
,
"Export"
:
"تصدير"
,
"Export"
:
"تصدير"
,
"Export All Chats (All Users)"
:
"تصدير جميع الدردشات (جميع المستخدمين)"
,
"Export All Chats (All Users)"
:
"تصدير جميع الدردشات (جميع المستخدمين)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"تصدير جميع الدردشات"
,
"Export Chats"
:
"تصدير جميع الدردشات"
,
"Export Documents Mapping"
:
"تصدير وثائق الخرائط"
,
"Export Documents Mapping"
:
"تصدير وثائق الخرائط"
,
"Export Models"
:
"نماذج التصدير"
,
"Export Models"
:
"نماذج التصدير"
,
...
...
src/lib/i18n/locales/bg-BG/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"Всички Потребители"
,
"All Users"
:
"Всички Потребители"
,
"Allow"
:
"Позволи"
,
"Allow"
:
"Позволи"
,
"Allow Chat Deletion"
:
"Позволи Изтриване на Чат"
,
"Allow Chat Deletion"
:
"Позволи Изтриване на Чат"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"алфанумерични знаци и тире"
,
"alphanumeric characters and hyphens"
:
"алфанумерични знаци и тире"
,
"Already have an account?"
:
"Вече имате акаунт? "
,
"Already have an account?"
:
"Вече имате акаунт? "
,
"an assistant"
:
"асистент"
,
"an assistant"
:
"асистент"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Експериментално"
,
"Experimental"
:
"Експериментално"
,
"Export"
:
"Износ"
,
"Export"
:
"Износ"
,
"Export All Chats (All Users)"
:
"Експортване на всички чатове (За всички потребители)"
,
"Export All Chats (All Users)"
:
"Експортване на всички чатове (За всички потребители)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"Експортване на чатове"
,
"Export Chats"
:
"Експортване на чатове"
,
"Export Documents Mapping"
:
"Експортване на документен мапинг"
,
"Export Documents Mapping"
:
"Експортване на документен мапинг"
,
"Export Models"
:
"Експортиране на модели"
,
"Export Models"
:
"Експортиране на модели"
,
...
...
src/lib/i18n/locales/bn-BD/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"সব ইউজার"
,
"All Users"
:
"সব ইউজার"
,
"Allow"
:
"অনুমোদন"
,
"Allow"
:
"অনুমোদন"
,
"Allow Chat Deletion"
:
"চ্যাট ডিলিট করতে দিন"
,
"Allow Chat Deletion"
:
"চ্যাট ডিলিট করতে দিন"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন"
,
"alphanumeric characters and hyphens"
:
"ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন"
,
"Already have an account?"
:
"আগে থেকেই একাউন্ট আছে?"
,
"Already have an account?"
:
"আগে থেকেই একাউন্ট আছে?"
,
"an assistant"
:
"একটা এসিস্ট্যান্ট"
,
"an assistant"
:
"একটা এসিস্ট্যান্ট"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"পরিক্ষামূলক"
,
"Experimental"
:
"পরিক্ষামূলক"
,
"Export"
:
"রপ্তানি"
,
"Export"
:
"রপ্তানি"
,
"Export All Chats (All Users)"
:
"সব চ্যাট এক্সপোর্ট করুন (সব ইউজারের)"
,
"Export All Chats (All Users)"
:
"সব চ্যাট এক্সপোর্ট করুন (সব ইউজারের)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"চ্যাটগুলো এক্সপোর্ট করুন"
,
"Export Chats"
:
"চ্যাটগুলো এক্সপোর্ট করুন"
,
"Export Documents Mapping"
:
"ডকুমেন্টসমূহ ম্যাপিং এক্সপোর্ট করুন"
,
"Export Documents Mapping"
:
"ডকুমেন্টসমূহ ম্যাপিং এক্সপোর্ট করুন"
,
"Export Models"
:
"রপ্তানি মডেল"
,
"Export Models"
:
"রপ্তানি মডেল"
,
...
...
src/lib/i18n/locales/ca-ES/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"Tots els Usuaris"
,
"All Users"
:
"Tots els Usuaris"
,
"Allow"
:
"Permet"
,
"Allow"
:
"Permet"
,
"Allow Chat Deletion"
:
"Permet la Supressió del Xat"
,
"Allow Chat Deletion"
:
"Permet la Supressió del Xat"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"caràcters alfanumèrics i guions"
,
"alphanumeric characters and hyphens"
:
"caràcters alfanumèrics i guions"
,
"Already have an account?"
:
"Ja tens un compte?"
,
"Already have an account?"
:
"Ja tens un compte?"
,
"an assistant"
:
"un assistent"
,
"an assistant"
:
"un assistent"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Experimental"
,
"Experimental"
:
"Experimental"
,
"Export"
:
"Exportar"
,
"Export"
:
"Exportar"
,
"Export All Chats (All Users)"
:
"Exporta Tots els Xats (Tots els Usuaris)"
,
"Export All Chats (All Users)"
:
"Exporta Tots els Xats (Tots els Usuaris)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"Exporta Xats"
,
"Export Chats"
:
"Exporta Xats"
,
"Export Documents Mapping"
:
"Exporta el Mapatge de Documents"
,
"Export Documents Mapping"
:
"Exporta el Mapatge de Documents"
,
"Export Models"
:
"Models d'exportació"
,
"Export Models"
:
"Models d'exportació"
,
...
...
src/lib/i18n/locales/ceb-PH/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"Ang tanan nga mga tiggamit"
,
"All Users"
:
"Ang tanan nga mga tiggamit"
,
"Allow"
:
"Sa pagtugot"
,
"Allow"
:
"Sa pagtugot"
,
"Allow Chat Deletion"
:
"Tugoti nga mapapas ang mga chat"
,
"Allow Chat Deletion"
:
"Tugoti nga mapapas ang mga chat"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"alphanumeric nga mga karakter ug hyphen"
,
"alphanumeric characters and hyphens"
:
"alphanumeric nga mga karakter ug hyphen"
,
"Already have an account?"
:
"Naa na kay account ?"
,
"Already have an account?"
:
"Naa na kay account ?"
,
"an assistant"
:
"usa ka katabang"
,
"an assistant"
:
"usa ka katabang"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Eksperimento"
,
"Experimental"
:
"Eksperimento"
,
"Export"
:
""
,
"Export"
:
""
,
"Export All Chats (All Users)"
:
"I-export ang tanan nga mga chat (Tanan nga tiggamit)"
,
"Export All Chats (All Users)"
:
"I-export ang tanan nga mga chat (Tanan nga tiggamit)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"I-export ang mga chat"
,
"Export Chats"
:
"I-export ang mga chat"
,
"Export Documents Mapping"
:
"I-export ang pagmapa sa dokumento"
,
"Export Documents Mapping"
:
"I-export ang pagmapa sa dokumento"
,
"Export Models"
:
""
,
"Export Models"
:
""
,
...
...
src/lib/i18n/locales/de-DE/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"Alle Benutzer"
,
"All Users"
:
"Alle Benutzer"
,
"Allow"
:
"Erlauben"
,
"Allow"
:
"Erlauben"
,
"Allow Chat Deletion"
:
"Chat Löschung erlauben"
,
"Allow Chat Deletion"
:
"Chat Löschung erlauben"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"alphanumerische Zeichen und Bindestriche"
,
"alphanumeric characters and hyphens"
:
"alphanumerische Zeichen und Bindestriche"
,
"Already have an account?"
:
"Hast du vielleicht schon ein Account?"
,
"Already have an account?"
:
"Hast du vielleicht schon ein Account?"
,
"an assistant"
:
"ein Assistent"
,
"an assistant"
:
"ein Assistent"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Experimentell"
,
"Experimental"
:
"Experimentell"
,
"Export"
:
"Exportieren"
,
"Export"
:
"Exportieren"
,
"Export All Chats (All Users)"
:
"Alle Chats exportieren (alle Benutzer)"
,
"Export All Chats (All Users)"
:
"Alle Chats exportieren (alle Benutzer)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"Chats exportieren"
,
"Export Chats"
:
"Chats exportieren"
,
"Export Documents Mapping"
:
"Dokumentenmapping exportieren"
,
"Export Documents Mapping"
:
"Dokumentenmapping exportieren"
,
"Export Models"
:
"Modelle exportieren"
,
"Export Models"
:
"Modelle exportieren"
,
...
...
src/lib/i18n/locales/dg-DG/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"All Users"
,
"All Users"
:
"All Users"
,
"Allow"
:
"Allow"
,
"Allow"
:
"Allow"
,
"Allow Chat Deletion"
:
"Allow Delete Chats"
,
"Allow Chat Deletion"
:
"Allow Delete Chats"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"so alpha, many hyphen"
,
"alphanumeric characters and hyphens"
:
"so alpha, many hyphen"
,
"Already have an account?"
:
"Such account exists?"
,
"Already have an account?"
:
"Such account exists?"
,
"an assistant"
:
"such assistant"
,
"an assistant"
:
"such assistant"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Much Experiment"
,
"Experimental"
:
"Much Experiment"
,
"Export"
:
""
,
"Export"
:
""
,
"Export All Chats (All Users)"
:
"Export All Chats (All Doggos)"
,
"Export All Chats (All Users)"
:
"Export All Chats (All Doggos)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"Export Barks"
,
"Export Chats"
:
"Export Barks"
,
"Export Documents Mapping"
:
"Export Mappings of Dogos"
,
"Export Documents Mapping"
:
"Export Mappings of Dogos"
,
"Export Models"
:
""
,
"Export Models"
:
""
,
...
...
src/lib/i18n/locales/en-GB/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
""
,
"All Users"
:
""
,
"Allow"
:
""
,
"Allow"
:
""
,
"Allow Chat Deletion"
:
""
,
"Allow Chat Deletion"
:
""
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
""
,
"alphanumeric characters and hyphens"
:
""
,
"Already have an account?"
:
""
,
"Already have an account?"
:
""
,
"an assistant"
:
""
,
"an assistant"
:
""
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
""
,
"Experimental"
:
""
,
"Export"
:
""
,
"Export"
:
""
,
"Export All Chats (All Users)"
:
""
,
"Export All Chats (All Users)"
:
""
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
""
,
"Export Chats"
:
""
,
"Export Documents Mapping"
:
""
,
"Export Documents Mapping"
:
""
,
"Export Models"
:
""
,
"Export Models"
:
""
,
...
...
src/lib/i18n/locales/en-US/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
""
,
"All Users"
:
""
,
"Allow"
:
""
,
"Allow"
:
""
,
"Allow Chat Deletion"
:
""
,
"Allow Chat Deletion"
:
""
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
""
,
"alphanumeric characters and hyphens"
:
""
,
"Already have an account?"
:
""
,
"Already have an account?"
:
""
,
"an assistant"
:
""
,
"an assistant"
:
""
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
""
,
"Experimental"
:
""
,
"Export"
:
""
,
"Export"
:
""
,
"Export All Chats (All Users)"
:
""
,
"Export All Chats (All Users)"
:
""
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
""
,
"Export Chats"
:
""
,
"Export Documents Mapping"
:
""
,
"Export Documents Mapping"
:
""
,
"Export Models"
:
""
,
"Export Models"
:
""
,
...
...
src/lib/i18n/locales/es-ES/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"Todos los Usuarios"
,
"All Users"
:
"Todos los Usuarios"
,
"Allow"
:
"Permitir"
,
"Allow"
:
"Permitir"
,
"Allow Chat Deletion"
:
"Permitir Borrar Chats"
,
"Allow Chat Deletion"
:
"Permitir Borrar Chats"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"caracteres alfanuméricos y guiones"
,
"alphanumeric characters and hyphens"
:
"caracteres alfanuméricos y guiones"
,
"Already have an account?"
:
"¿Ya tienes una cuenta?"
,
"Already have an account?"
:
"¿Ya tienes una cuenta?"
,
"an assistant"
:
"un asistente"
,
"an assistant"
:
"un asistente"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Experimental"
,
"Experimental"
:
"Experimental"
,
"Export"
:
"Exportar"
,
"Export"
:
"Exportar"
,
"Export All Chats (All Users)"
:
"Exportar todos los chats (Todos los usuarios)"
,
"Export All Chats (All Users)"
:
"Exportar todos los chats (Todos los usuarios)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"Exportar Chats"
,
"Export Chats"
:
"Exportar Chats"
,
"Export Documents Mapping"
:
"Exportar el mapeo de documentos"
,
"Export Documents Mapping"
:
"Exportar el mapeo de documentos"
,
"Export Models"
:
"Modelos de exportación"
,
"Export Models"
:
"Modelos de exportación"
,
...
...
src/lib/i18n/locales/fa-IR/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"همه کاربران"
,
"All Users"
:
"همه کاربران"
,
"Allow"
:
"اجازه دادن"
,
"Allow"
:
"اجازه دادن"
,
"Allow Chat Deletion"
:
"اجازه حذف گپ"
,
"Allow Chat Deletion"
:
"اجازه حذف گپ"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"حروف الفبایی و خط فاصله"
,
"alphanumeric characters and hyphens"
:
"حروف الفبایی و خط فاصله"
,
"Already have an account?"
:
"از قبل حساب کاربری دارید؟"
,
"Already have an account?"
:
"از قبل حساب کاربری دارید؟"
,
"an assistant"
:
"یک دستیار"
,
"an assistant"
:
"یک دستیار"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"آزمایشی"
,
"Experimental"
:
"آزمایشی"
,
"Export"
:
"صادرات"
,
"Export"
:
"صادرات"
,
"Export All Chats (All Users)"
:
"اکسپورت از همه گپ
\u
200cها(همه کاربران)"
,
"Export All Chats (All Users)"
:
"اکسپورت از همه گپ
\u
200cها(همه کاربران)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"اکسپورت از گپ
\u
200cها"
,
"Export Chats"
:
"اکسپورت از گپ
\u
200cها"
,
"Export Documents Mapping"
:
"اکسپورت از نگاشت اسناد"
,
"Export Documents Mapping"
:
"اکسپورت از نگاشت اسناد"
,
"Export Models"
:
"مدل های صادرات"
,
"Export Models"
:
"مدل های صادرات"
,
...
...
src/lib/i18n/locales/fi-FI/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"Kaikki käyttäjät"
,
"All Users"
:
"Kaikki käyttäjät"
,
"Allow"
:
"Salli"
,
"Allow"
:
"Salli"
,
"Allow Chat Deletion"
:
"Salli keskustelujen poisto"
,
"Allow Chat Deletion"
:
"Salli keskustelujen poisto"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"kirjaimia, numeroita ja väliviivoja"
,
"alphanumeric characters and hyphens"
:
"kirjaimia, numeroita ja väliviivoja"
,
"Already have an account?"
:
"Onko sinulla jo tili?"
,
"Already have an account?"
:
"Onko sinulla jo tili?"
,
"an assistant"
:
"avustaja"
,
"an assistant"
:
"avustaja"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Kokeellinen"
,
"Experimental"
:
"Kokeellinen"
,
"Export"
:
"Vienti"
,
"Export"
:
"Vienti"
,
"Export All Chats (All Users)"
:
"Vie kaikki keskustelut (kaikki käyttäjät)"
,
"Export All Chats (All Users)"
:
"Vie kaikki keskustelut (kaikki käyttäjät)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"Vie keskustelut"
,
"Export Chats"
:
"Vie keskustelut"
,
"Export Documents Mapping"
:
"Vie asiakirjakartoitus"
,
"Export Documents Mapping"
:
"Vie asiakirjakartoitus"
,
"Export Models"
:
"Vie malleja"
,
"Export Models"
:
"Vie malleja"
,
...
...
src/lib/i18n/locales/fr-CA/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"Tous les utilisateurs"
,
"All Users"
:
"Tous les utilisateurs"
,
"Allow"
:
"Autoriser"
,
"Allow"
:
"Autoriser"
,
"Allow Chat Deletion"
:
"Autoriser la suppression des discussions"
,
"Allow Chat Deletion"
:
"Autoriser la suppression des discussions"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"caractères alphanumériques et tirets"
,
"alphanumeric characters and hyphens"
:
"caractères alphanumériques et tirets"
,
"Already have an account?"
:
"Vous avez déjà un compte ?"
,
"Already have an account?"
:
"Vous avez déjà un compte ?"
,
"an assistant"
:
"un assistant"
,
"an assistant"
:
"un assistant"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Expérimental"
,
"Experimental"
:
"Expérimental"
,
"Export"
:
"Exportation"
,
"Export"
:
"Exportation"
,
"Export All Chats (All Users)"
:
"Exporter toutes les discussions (Tous les utilisateurs)"
,
"Export All Chats (All Users)"
:
"Exporter toutes les discussions (Tous les utilisateurs)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"Exporter les discussions"
,
"Export Chats"
:
"Exporter les discussions"
,
"Export Documents Mapping"
:
"Exporter le mappage des documents"
,
"Export Documents Mapping"
:
"Exporter le mappage des documents"
,
"Export Models"
:
"Modèles d’exportation"
,
"Export Models"
:
"Modèles d’exportation"
,
...
...
src/lib/i18n/locales/fr-FR/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"Tous les Utilisateurs"
,
"All Users"
:
"Tous les Utilisateurs"
,
"Allow"
:
"Autoriser"
,
"Allow"
:
"Autoriser"
,
"Allow Chat Deletion"
:
"Autoriser la suppression du chat"
,
"Allow Chat Deletion"
:
"Autoriser la suppression du chat"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"caractères alphanumériques et tirets"
,
"alphanumeric characters and hyphens"
:
"caractères alphanumériques et tirets"
,
"Already have an account?"
:
"Vous avez déjà un compte ?"
,
"Already have an account?"
:
"Vous avez déjà un compte ?"
,
"an assistant"
:
"un assistant"
,
"an assistant"
:
"un assistant"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Expérimental"
,
"Experimental"
:
"Expérimental"
,
"Export"
:
"Exportation"
,
"Export"
:
"Exportation"
,
"Export All Chats (All Users)"
:
"Exporter Tous les Chats (Tous les Utilisateurs)"
,
"Export All Chats (All Users)"
:
"Exporter Tous les Chats (Tous les Utilisateurs)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"Exporter les Chats"
,
"Export Chats"
:
"Exporter les Chats"
,
"Export Documents Mapping"
:
"Exporter la Correspondance des Documents"
,
"Export Documents Mapping"
:
"Exporter la Correspondance des Documents"
,
"Export Models"
:
"Exporter les Modèles"
,
"Export Models"
:
"Exporter les Modèles"
,
...
...
src/lib/i18n/locales/he-IL/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"כל המשתמשים"
,
"All Users"
:
"כל המשתמשים"
,
"Allow"
:
"אפשר"
,
"Allow"
:
"אפשר"
,
"Allow Chat Deletion"
:
"אפשר מחיקת צ'אט"
,
"Allow Chat Deletion"
:
"אפשר מחיקת צ'אט"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"תווים אלפאנומריים ומקפים"
,
"alphanumeric characters and hyphens"
:
"תווים אלפאנומריים ומקפים"
,
"Already have an account?"
:
"כבר יש לך חשבון?"
,
"Already have an account?"
:
"כבר יש לך חשבון?"
,
"an assistant"
:
"עוזר"
,
"an assistant"
:
"עוזר"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"ניסיוני"
,
"Experimental"
:
"ניסיוני"
,
"Export"
:
"ייצא"
,
"Export"
:
"ייצא"
,
"Export All Chats (All Users)"
:
"ייצוא כל הצ'אטים (כל המשתמשים)"
,
"Export All Chats (All Users)"
:
"ייצוא כל הצ'אטים (כל המשתמשים)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"ייצוא צ'אטים"
,
"Export Chats"
:
"ייצוא צ'אטים"
,
"Export Documents Mapping"
:
"ייצוא מיפוי מסמכים"
,
"Export Documents Mapping"
:
"ייצוא מיפוי מסמכים"
,
"Export Models"
:
"ייצוא מודלים"
,
"Export Models"
:
"ייצוא מודלים"
,
...
...
src/lib/i18n/locales/hi-IN/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"सभी उपयोगकर्ता"
,
"All Users"
:
"सभी उपयोगकर्ता"
,
"Allow"
:
"अनुमति दें"
,
"Allow"
:
"अनुमति दें"
,
"Allow Chat Deletion"
:
"चैट हटाने की अनुमति दें"
,
"Allow Chat Deletion"
:
"चैट हटाने की अनुमति दें"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"अल्फ़ान्यूमेरिक वर्ण और हाइफ़न"
,
"alphanumeric characters and hyphens"
:
"अल्फ़ान्यूमेरिक वर्ण और हाइफ़न"
,
"Already have an account?"
:
"क्या आपके पास पहले से एक खाता मौजूद है?"
,
"Already have an account?"
:
"क्या आपके पास पहले से एक खाता मौजूद है?"
,
"an assistant"
:
"एक सहायक"
,
"an assistant"
:
"एक सहायक"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"प्रयोगात्मक"
,
"Experimental"
:
"प्रयोगात्मक"
,
"Export"
:
"निर्यातित माल"
,
"Export"
:
"निर्यातित माल"
,
"Export All Chats (All Users)"
:
"सभी चैट निर्यात करें (सभी उपयोगकर्ताओं की)"
,
"Export All Chats (All Users)"
:
"सभी चैट निर्यात करें (सभी उपयोगकर्ताओं की)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"चैट निर्यात करें"
,
"Export Chats"
:
"चैट निर्यात करें"
,
"Export Documents Mapping"
:
"निर्यात दस्तावेज़ मैपिंग"
,
"Export Documents Mapping"
:
"निर्यात दस्तावेज़ मैपिंग"
,
"Export Models"
:
"निर्यात मॉडल"
,
"Export Models"
:
"निर्यात मॉडल"
,
...
...
src/lib/i18n/locales/hr-HR/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"Svi korisnici"
,
"All Users"
:
"Svi korisnici"
,
"Allow"
:
"Dopusti"
,
"Allow"
:
"Dopusti"
,
"Allow Chat Deletion"
:
"Dopusti brisanje razgovora"
,
"Allow Chat Deletion"
:
"Dopusti brisanje razgovora"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"alfanumerički znakovi i crtice"
,
"alphanumeric characters and hyphens"
:
"alfanumerički znakovi i crtice"
,
"Already have an account?"
:
"Već imate račun?"
,
"Already have an account?"
:
"Već imate račun?"
,
"an assistant"
:
"asistent"
,
"an assistant"
:
"asistent"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Eksperimentalno"
,
"Experimental"
:
"Eksperimentalno"
,
"Export"
:
"Izvoz"
,
"Export"
:
"Izvoz"
,
"Export All Chats (All Users)"
:
"Izvoz svih razgovora (svi korisnici)"
,
"Export All Chats (All Users)"
:
"Izvoz svih razgovora (svi korisnici)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"Izvoz razgovora"
,
"Export Chats"
:
"Izvoz razgovora"
,
"Export Documents Mapping"
:
"Izvoz mapiranja dokumenata"
,
"Export Documents Mapping"
:
"Izvoz mapiranja dokumenata"
,
"Export Models"
:
"Izvezi modele"
,
"Export Models"
:
"Izvezi modele"
,
...
...
src/lib/i18n/locales/it-IT/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"Tutti gli utenti"
,
"All Users"
:
"Tutti gli utenti"
,
"Allow"
:
"Consenti"
,
"Allow"
:
"Consenti"
,
"Allow Chat Deletion"
:
"Consenti l'eliminazione della chat"
,
"Allow Chat Deletion"
:
"Consenti l'eliminazione della chat"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"caratteri alfanumerici e trattini"
,
"alphanumeric characters and hyphens"
:
"caratteri alfanumerici e trattini"
,
"Already have an account?"
:
"Hai già un account?"
,
"Already have an account?"
:
"Hai già un account?"
,
"an assistant"
:
"un assistente"
,
"an assistant"
:
"un assistente"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"Sperimentale"
,
"Experimental"
:
"Sperimentale"
,
"Export"
:
"Esportazione"
,
"Export"
:
"Esportazione"
,
"Export All Chats (All Users)"
:
"Esporta tutte le chat (tutti gli utenti)"
,
"Export All Chats (All Users)"
:
"Esporta tutte le chat (tutti gli utenti)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"Esporta chat"
,
"Export Chats"
:
"Esporta chat"
,
"Export Documents Mapping"
:
"Esporta mappatura documenti"
,
"Export Documents Mapping"
:
"Esporta mappatura documenti"
,
"Export Models"
:
"Esporta modelli"
,
"Export Models"
:
"Esporta modelli"
,
...
...
src/lib/i18n/locales/ja-JP/translation.json
View file @
de03bf83
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
"All Users"
:
"すべてのユーザー"
,
"All Users"
:
"すべてのユーザー"
,
"Allow"
:
"許可"
,
"Allow"
:
"許可"
,
"Allow Chat Deletion"
:
"チャットの削除を許可"
,
"Allow Chat Deletion"
:
"チャットの削除を許可"
,
"Allow non-local voices"
:
""
,
"alphanumeric characters and hyphens"
:
"英数字とハイフン"
,
"alphanumeric characters and hyphens"
:
"英数字とハイフン"
,
"Already have an account?"
:
"すでにアカウントをお持ちですか?"
,
"Already have an account?"
:
"すでにアカウントをお持ちですか?"
,
"an assistant"
:
"アシスタント"
,
"an assistant"
:
"アシスタント"
,
...
@@ -206,6 +207,7 @@
...
@@ -206,6 +207,7 @@
"Experimental"
:
"実験的"
,
"Experimental"
:
"実験的"
,
"Export"
:
"輸出"
,
"Export"
:
"輸出"
,
"Export All Chats (All Users)"
:
"すべてのチャットをエクスポート (すべてのユーザー)"
,
"Export All Chats (All Users)"
:
"すべてのチャットをエクスポート (すべてのユーザー)"
,
"Export chat (.json)"
:
""
,
"Export Chats"
:
"チャットをエクスポート"
,
"Export Chats"
:
"チャットをエクスポート"
,
"Export Documents Mapping"
:
"ドキュメントマッピングをエクスポート"
,
"Export Documents Mapping"
:
"ドキュメントマッピングをエクスポート"
,
"Export Models"
:
"モデルのエクスポート"
,
"Export Models"
:
"モデルのエクスポート"
,
...
...
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