chore: format
This commit is contained in:
@@ -827,9 +827,7 @@ class ChatTable:
|
||||
else:
|
||||
query = query.order_by(Chat.updated_at.desc(), Chat.id)
|
||||
|
||||
query = query.with_entities(
|
||||
Chat.id, Chat.title, Chat.updated_at, Chat.created_at, Chat.last_read_at
|
||||
)
|
||||
query = query.with_entities(Chat.id, Chat.title, Chat.updated_at, Chat.created_at, Chat.last_read_at)
|
||||
|
||||
if skip:
|
||||
query = query.offset(skip)
|
||||
@@ -1263,9 +1261,7 @@ class ChatTable:
|
||||
|
||||
query = query.order_by(Chat.updated_at.desc(), Chat.id)
|
||||
|
||||
query = query.with_entities(
|
||||
Chat.id, Chat.title, Chat.updated_at, Chat.created_at, Chat.last_read_at
|
||||
)
|
||||
query = query.with_entities(Chat.id, Chat.title, Chat.updated_at, Chat.created_at, Chat.last_read_at)
|
||||
|
||||
if skip:
|
||||
query = query.offset(skip)
|
||||
@@ -1348,9 +1344,7 @@ class ChatTable:
|
||||
|
||||
query = query.order_by(Chat.updated_at.desc(), Chat.id)
|
||||
|
||||
query = query.with_entities(
|
||||
Chat.id, Chat.title, Chat.updated_at, Chat.created_at, Chat.last_read_at
|
||||
)
|
||||
query = query.with_entities(Chat.id, Chat.title, Chat.updated_at, Chat.created_at, Chat.last_read_at)
|
||||
|
||||
if skip:
|
||||
query = query.offset(skip)
|
||||
|
||||
@@ -218,9 +218,7 @@ class FeedbackTable:
|
||||
# Apply model_id filter (exact match)
|
||||
model_id = filter.get('model_id')
|
||||
if model_id:
|
||||
query = query.filter(
|
||||
Feedback.data['model_id'].as_string() == model_id
|
||||
)
|
||||
query = query.filter(Feedback.data['model_id'].as_string() == model_id)
|
||||
|
||||
order_by = filter.get('order_by')
|
||||
direction = filter.get('direction')
|
||||
|
||||
@@ -321,10 +321,7 @@ async def export_all_feedbacks(
|
||||
):
|
||||
feedbacks = Feedbacks.get_all_feedbacks(db=db)
|
||||
if model_id:
|
||||
feedbacks = [
|
||||
f for f in feedbacks
|
||||
if f.data and f.data.get('model_id') == model_id
|
||||
]
|
||||
feedbacks = [f for f in feedbacks if f.data and f.data.get('model_id') == model_id]
|
||||
return feedbacks
|
||||
|
||||
|
||||
|
||||
@@ -1357,9 +1357,8 @@ class OAuthManager:
|
||||
client = self.get_client(provider)
|
||||
if client is None:
|
||||
raise HTTPException(404)
|
||||
redirect_uri = (
|
||||
(client.server_metadata or {}).get('redirect_uri')
|
||||
or request.url_for('oauth_login_callback', provider=provider)
|
||||
redirect_uri = (client.server_metadata or {}).get('redirect_uri') or request.url_for(
|
||||
'oauth_login_callback', provider=provider
|
||||
)
|
||||
|
||||
kwargs = {}
|
||||
|
||||
@@ -7,9 +7,7 @@ _ALLOWED_STATIC_PATHS = (
|
||||
)
|
||||
|
||||
# External URL prefixes that are explicitly trusted for profile images
|
||||
_ALLOWED_URL_PREFIXES = (
|
||||
'https://www.gravatar.com/avatar/',
|
||||
)
|
||||
_ALLOWED_URL_PREFIXES = ('https://www.gravatar.com/avatar/',)
|
||||
|
||||
|
||||
def validate_profile_image_url(url: str) -> str:
|
||||
|
||||
@@ -414,7 +414,7 @@ export const updateUserProfile = async (token: string, profile: object) => {
|
||||
console.error(err);
|
||||
error = err.detail;
|
||||
if (Array.isArray(error)) {
|
||||
error = error.map((e: { msg?: string }) => e.msg).join("; ");
|
||||
error = error.map((e: { msg?: string }) => e.msg).join('; ');
|
||||
}
|
||||
return null;
|
||||
});
|
||||
|
||||
@@ -189,7 +189,13 @@ export const getFeedbackModelIds = async (token: string = '') => {
|
||||
return res;
|
||||
};
|
||||
|
||||
export const getFeedbackItems = async (token: string = '', orderBy, direction, page, modelId: string = '') => {
|
||||
export const getFeedbackItems = async (
|
||||
token: string = '',
|
||||
orderBy,
|
||||
direction,
|
||||
page,
|
||||
modelId: string = ''
|
||||
) => {
|
||||
let error = null;
|
||||
|
||||
const searchParams = new URLSearchParams();
|
||||
@@ -235,14 +241,17 @@ export const exportAllFeedbacks = async (token: string = '', modelId: string = '
|
||||
const searchParams = new URLSearchParams();
|
||||
if (modelId) searchParams.append('model_id', modelId);
|
||||
|
||||
const res = await fetch(`${WEBUI_API_BASE_URL}/evaluations/feedbacks/all/export?${searchParams.toString()}`, {
|
||||
method: 'GET',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
authorization: `Bearer ${token}`
|
||||
const res = await fetch(
|
||||
`${WEBUI_API_BASE_URL}/evaluations/feedbacks/all/export?${searchParams.toString()}`,
|
||||
{
|
||||
method: 'GET',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
authorization: `Bearer ${token}`
|
||||
}
|
||||
}
|
||||
})
|
||||
)
|
||||
.then(async (res) => {
|
||||
if (!res.ok) throw await res.json();
|
||||
return res.json();
|
||||
|
||||
@@ -176,10 +176,9 @@
|
||||
: s;
|
||||
};
|
||||
|
||||
return [
|
||||
headers.join(','),
|
||||
...rows.map((r) => headers.map((h) => escape(r[h])).join(','))
|
||||
].join('\n');
|
||||
return [headers.join(','), ...rows.map((r) => headers.map((h) => escape(r[h])).join(','))].join(
|
||||
'\n'
|
||||
);
|
||||
};
|
||||
|
||||
const exportHandler = async (format: 'json' | 'csv' = 'json') => {
|
||||
|
||||
@@ -42,7 +42,6 @@
|
||||
let contentContainerElement;
|
||||
let floatingButtonsElement;
|
||||
|
||||
|
||||
let sourceIds = [];
|
||||
$: getSourceIds(sources);
|
||||
|
||||
|
||||
@@ -497,7 +497,12 @@
|
||||
>
|
||||
{#snippet child({ wrapperProps, props, open })}
|
||||
{#if open}
|
||||
<div {...wrapperProps} style="{wrapperProps.style ?? ''}{$mobile ? '; left: 0.5rem !important; width: calc(100vw - 1rem) !important;' : ''}">
|
||||
<div
|
||||
{...wrapperProps}
|
||||
style="{wrapperProps.style ?? ''}{$mobile
|
||||
? '; left: 0.5rem !important; width: calc(100vw - 1rem) !important;'
|
||||
: ''}"
|
||||
>
|
||||
<div
|
||||
{...props}
|
||||
class="{props.class} z-40 {$mobile
|
||||
|
||||
@@ -850,6 +850,8 @@
|
||||
"Export": "تصدير",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "تصدير جميع الدردشات (جميع المستخدمين)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "تصدير جميع الدردشات",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -850,6 +850,8 @@
|
||||
"Export": "تصدير",
|
||||
"Export All Archived Chats": "تصدير جميع المحادثات المؤرشفة",
|
||||
"Export All Chats (All Users)": "تصدير جميع الدردشات (جميع المستخدمين)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "تصدير المحادثة (.json)",
|
||||
"Export Chats": "تصدير جميع الدردشات",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "İxrac et",
|
||||
"Export All Archived Chats": "Bütün arxivləşdirilmiş çatları ixrac et",
|
||||
"Export All Chats (All Users)": "Bütün çatları ixrac et (Bütün istifadəçilər)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Çatı ixrac et (.json)",
|
||||
"Export Chats": "Çatları İxrac Et",
|
||||
"Export Config": "Konfiqurasiyanı İxrac Et",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Износ",
|
||||
"Export All Archived Chats": "Износ на всички архивирани чатове",
|
||||
"Export All Chats (All Users)": "Експортване на всички чатове (за всички потребители)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Експортиране на чат (.json)",
|
||||
"Export Chats": "Експортване на чатове",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "রপ্তানি",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "সব চ্যাট এক্সপোর্ট করুন (সব ইউজারের)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "চ্যাটগুলো এক্সপোর্ট করুন",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -845,6 +845,8 @@
|
||||
"Export": "ཕྱིར་གཏོང་།",
|
||||
"Export All Archived Chats": "ཡིག་མཛོད་དུ་བཞག་པའི་ཁ་བརྡ་ཡོངས་རྫོགས་ཕྱིར་གཏོང་།",
|
||||
"Export All Chats (All Users)": "ཁ་བརྡ་ཡོངས་རྫོགས་ཕྱིར་གཏོང་། (བེད་སྤྱོད་མཁན་ཡོངས་)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "ཁ་བརྡ་ཕྱིར་གཏོང་ (.json)",
|
||||
"Export Chats": "ཁ་བརྡ་ཕྱིར་གཏོང་།",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Izvoz",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Izvoz svih razgovora (svi korisnici)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Izvoz četa (.json)",
|
||||
"Export Chats": "Izvoz razgovora",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Exportar",
|
||||
"Export All Archived Chats": "Exportar tots els xats arxivats",
|
||||
"Export All Chats (All Users)": "Exportar tots els xats (Tots els usuaris)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exportar el xat (.json)",
|
||||
"Export Chats": "Exportar els xats",
|
||||
"Export Config": "Exportar la configuració",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "I-export ang tanan nga mga chat (Tanan nga tiggamit)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "I-export ang mga chat",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -848,6 +848,8 @@
|
||||
"Export": "Exportovat",
|
||||
"Export All Archived Chats": "Exportovat všechny archivované konverzace",
|
||||
"Export All Chats (All Users)": "Exportovat všechny konverzace (všichni uživatelé)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exportovat konverzaci (.json)",
|
||||
"Export Chats": "Exportovat konverzace",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Eksportér",
|
||||
"Export All Archived Chats": "Eksportér alle arkiverede chats",
|
||||
"Export All Chats (All Users)": "Eksportér alle chats (alle brugere)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Eksportér chat (.json)",
|
||||
"Export Chats": "Eksportér chats",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Exportieren",
|
||||
"Export All Archived Chats": "Alle archivierten Chats exportieren",
|
||||
"Export All Chats (All Users)": "Alle Chats exportieren (Alle Benutzer)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Chat exportieren (.json)",
|
||||
"Export Chats": "Chats exportieren",
|
||||
"Export Config": "Konfiguration exportieren",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Export All Chats (All Doggos)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "Export Barks",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Εξαγωγή",
|
||||
"Export All Archived Chats": "Εξαγωγή Όλων των Αρχειοθετημένων Συνομιλιών",
|
||||
"Export All Chats (All Users)": "Εξαγωγή Όλων των Συνομιλιών (Όλοι οι Χρήστες)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Εξαγωγή συνομιλίας (.json)",
|
||||
"Export Chats": "Εξαγωγή Συνομιλιών",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Exportar",
|
||||
"Export All Archived Chats": "Exportar Todos los Chats Archivados",
|
||||
"Export All Chats (All Users)": "Exportar Todos los Chats (Todos los Usuarios)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exportar chat (.json)",
|
||||
"Export Chats": "Exportar Chats",
|
||||
"Export Config": "Exportar Config",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Ekspordi",
|
||||
"Export All Archived Chats": "Ekspordi kõik arhiveeritud vestlused",
|
||||
"Export All Chats (All Users)": "Ekspordi kõik vestlused (kõik kasutajad)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Ekspordi vestlus (.json)",
|
||||
"Export Chats": "Ekspordi vestlused",
|
||||
"Export Config": "Ekspordi seadistus",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Esportatu",
|
||||
"Export All Archived Chats": "Esportatu Artxibatutako Txat Guztiak",
|
||||
"Export All Chats (All Users)": "Esportatu Txat Guztiak (Erabiltzaile Guztiak)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Esportatu txata (.json)",
|
||||
"Export Chats": "Esportatu Txatak",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "خروجی گرفتن",
|
||||
"Export All Archived Chats": "خروجی گرفتن تمام گفتگوهای بایگانی شده",
|
||||
"Export All Chats (All Users)": "خروجی گرفتن همه گفتگو\u200cها (همه کاربران)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "خروجی گرفتن گفتگو (json)",
|
||||
"Export Chats": "خروجی گرفتن گفتگوها",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Vie",
|
||||
"Export All Archived Chats": "Vie kaikki arkistoidut keskustelut",
|
||||
"Export All Chats (All Users)": "Vie kaikki keskustelut (kaikki käyttäjät)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Vie keskustelu (.json)",
|
||||
"Export Chats": "Vie keskustelut",
|
||||
"Export Config": "Vie asetukset",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Exportation",
|
||||
"Export All Archived Chats": "Exporter toutes les conversations archivées",
|
||||
"Export All Chats (All Users)": "Exporter toutes les conversations (de tous les utilisateurs)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exporter la conversation (.json)",
|
||||
"Export Chats": "Exporter les conversations",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Exporter",
|
||||
"Export All Archived Chats": "Exporter toutes les conversations archivées",
|
||||
"Export All Chats (All Users)": "Exporter toutes les conversations (de tous les utilisateurs)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exporter la conversation (.json)",
|
||||
"Export Chats": "Exporter les conversations",
|
||||
"Export Config": "Exporter la configuration",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Exportar",
|
||||
"Export All Archived Chats": "Exportar todos os chats Arquivados",
|
||||
"Export All Chats (All Users)": "Exportar todos os chats (Todos os usuarios)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exportar chat (.json)",
|
||||
"Export Chats": "Exportar Chats",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "ייצא",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "ייצוא כל הצ'אטים (כל המשתמשים)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "ייצוא צ'אטים",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "निर्यातित माल",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "सभी चैट निर्यात करें (सभी उपयोगकर्ताओं की)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "चैट निर्यात करें",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Izvoz",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Izvoz svih razgovora (svi korisnici)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Izvoz četa (.json)",
|
||||
"Export Chats": "Izvoz razgovora",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Exportálás",
|
||||
"Export All Archived Chats": "Minden archivált csevegés exportálása",
|
||||
"Export All Chats (All Users)": "Minden beszélgetés exportálása (minden felhasználó)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Beszélgetés exportálása (.json)",
|
||||
"Export Chats": "Beszélgetések exportálása",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -845,6 +845,8 @@
|
||||
"Export": "Ekspor",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Ekspor Semua Obrolan (Semua Pengguna)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Ekspor obrolan (.json)",
|
||||
"Export Chats": "Ekspor Obrolan",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Easpórtáil",
|
||||
"Export All Archived Chats": "Easpórtáil Gach Comhrá Cartlainne",
|
||||
"Export All Chats (All Users)": "Easpórtáil gach comhrá (Gach Úsáideoir)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Easpórtáil comhrá (.json)",
|
||||
"Export Chats": "Comhráite Easpórtá",
|
||||
"Export Config": "Cumraíocht Easpórtála",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Esportazione",
|
||||
"Export All Archived Chats": "Esporta Tutte le Chat Archiviate",
|
||||
"Export All Chats (All Users)": "Esporta Tutte le Chat (Tutti gli Utenti)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Esporta chat (.json)",
|
||||
"Export Chats": "Esporta Chat",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -845,6 +845,8 @@
|
||||
"Export": "エクスポート",
|
||||
"Export All Archived Chats": "すべてのアーカイブチャットをエクスポート",
|
||||
"Export All Chats (All Users)": "すべてのチャットをエクスポート (すべてのユーザー)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "チャットをエクスポート(.json)",
|
||||
"Export Chats": "チャットをエクスポート",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "გატანა",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "ყველა ჩატის გატანა (ყველა მომხმარებელი)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "ჩატების გატანა",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Asifeḍ",
|
||||
"Export All Archived Chats": "Kter akk Archived Chats",
|
||||
"Export All Chats (All Users)": "Kter akk idiwenniyen (n yiseqdacen akk)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Kter asqerdec (.json)",
|
||||
"Export Chats": "Sifeḍ idiwenniyen",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -845,6 +845,8 @@
|
||||
"Export": "내보내기",
|
||||
"Export All Archived Chats": "모든 보관된 채팅 내보내기",
|
||||
"Export All Chats (All Users)": "모든 채팅 내보내기(모든 사용자)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "채팅 내보내기 (.json)",
|
||||
"Export Chats": "채팅 내보내기",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -848,6 +848,8 @@
|
||||
"Export": "Eksportuoti",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Eksportuoti visų naudotojų visus pokalbius",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Eksportuoti pokalbį (.json)",
|
||||
"Export Chats": "Eksportuoti pokalbius",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Eksportēt",
|
||||
"Export All Archived Chats": "Eksportēt visas arhivētās tērzēšanas",
|
||||
"Export All Chats (All Users)": "Eksportēt visas tērzēšanas (visi lietotāji)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Eksportēt tērzēšanu (.json)",
|
||||
"Export Chats": "Eksportēt tērzēšanas",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -845,6 +845,8 @@
|
||||
"Export": "Eksport",
|
||||
"Export All Archived Chats": "Eksport Semua Sembang Tersimpan",
|
||||
"Export All Chats (All Users)": "Eksport Semua Perbualan (Semua Pengguna)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Eksport perbualan (.json)",
|
||||
"Export Chats": "Eksport Perbualan",
|
||||
"Export Config": "Eksport Konfigurasi",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Eksporter",
|
||||
"Export All Archived Chats": "Eksporter alle arkiverte chatter",
|
||||
"Export All Chats (All Users)": "Eksporter alle chatter (alle brukere)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Eksporter chat (.json)",
|
||||
"Export Chats": "Eksporter chatter",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Exporteren",
|
||||
"Export All Archived Chats": "Exporteer alle gearchiveerde chats",
|
||||
"Export All Chats (All Users)": "Exporteer alle chats (Alle gebruikers)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exporteer chat (.json)",
|
||||
"Export Chats": "Exporteer chats",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "ਨਿਰਯਾਤ",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "ਸਾਰੀਆਂ ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ (ਸਾਰੇ ਉਪਭੋਗਤਾ)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -848,6 +848,8 @@
|
||||
"Export": "Eksportuj",
|
||||
"Export All Archived Chats": "Eksportuj wszystkie zarchiwizowane czaty",
|
||||
"Export All Chats (All Users)": "Eksportuj wszystkie czaty (Wszyscy użytkownicy)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Eksportuj czat (.json)",
|
||||
"Export Chats": "Eksportuj czaty",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Exportar",
|
||||
"Export All Archived Chats": "Exportar todos os chats arquivados",
|
||||
"Export All Chats (All Users)": "Exportar Todos os Chats (Todos os Usuários)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exportar chat (.json)",
|
||||
"Export Chats": "Exportar Chats",
|
||||
"Export Config": "Exportar Configuração",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Exportar",
|
||||
"Export All Archived Chats": "Exportar Todas as Conversas Arquivadas",
|
||||
"Export All Chats (All Users)": "Exportar Todas as Conversas (Todos os Utilizadores)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exportar Conversa (.json)",
|
||||
"Export Chats": "Exportar Conversas",
|
||||
"Export Config": "Exportar Configuração",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Exportă",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Exportă Toate Conversațiile (Toți Utilizatorii)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exportă conversația (.json)",
|
||||
"Export Chats": "Exportă Conversațiile",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -848,6 +848,8 @@
|
||||
"Export": "Экспорт",
|
||||
"Export All Archived Chats": "Экспортировать ВСЕ Архивированные Чаты",
|
||||
"Export All Chats (All Users)": "Экспортировать все чаты (всех пользователей)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Экспортировать чат (.json)",
|
||||
"Export Chats": "Экспортировать чаты",
|
||||
"Export Config": "Экспортировать конфигурации",
|
||||
|
||||
@@ -848,6 +848,8 @@
|
||||
"Export": "Exportovať",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Exportovať všetky konverzácie (všetci užívatelia)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exportovať konverzáciu (.json)",
|
||||
"Export Chats": "Exportovať konverzácie",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -847,6 +847,8 @@
|
||||
"Export": "Извоз",
|
||||
"Export All Archived Chats": "Извези све архиве",
|
||||
"Export All Chats (All Users)": "Извези сва ћаскања (сви корисници)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Извези ћаскање (.json)",
|
||||
"Export Chats": "Извези ћаскања",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Export",
|
||||
"Export All Archived Chats": "Exportera alla arkiverade chattar",
|
||||
"Export All Chats (All Users)": "Exportera alla chattar (alla användare)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Exportera chatt (.json)",
|
||||
"Export Chats": "Exportera chattar",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "ஏற்றுமதி",
|
||||
"Export All Archived Chats": "அனைத்து காப்பகப்படுத்தப்பட்ட அரட்டைகளையும் ஏற்றுமதி செய்யவும்",
|
||||
"Export All Chats (All Users)": "அனைத்து அரட்டைகளையும் ஏற்றுமதி செய் (அனைத்து பயனர்களும்)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "ஏற்றுமதி அரட்டை (.json)",
|
||||
"Export Chats": "அரட்டைகளை ஏற்றுமதி செய்யவும்",
|
||||
"Export Config": "ஏற்றுமதி கட்டமைப்பு",
|
||||
|
||||
@@ -845,6 +845,8 @@
|
||||
"Export": "ส่งออก",
|
||||
"Export All Archived Chats": "ส่งออกแชทที่เก็บถาวรทั้งหมด",
|
||||
"Export All Chats (All Users)": "ส่งออกการแชททั้งหมด (ผู้ใช้ทั้งหมด)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "ส่งออกการสนทนา (.json)",
|
||||
"Export Chats": "ส่งออกการสนทนา",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Eksport",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "",
|
||||
"Export Chats": "",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Dışa Aktar",
|
||||
"Export All Archived Chats": "Tüm Arşivlenmiş Sohbetleri Dışa Aktar",
|
||||
"Export All Chats (All Users)": "Tüm Sohbetleri Dışa Aktar (Tüm Kullanıcılar)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Sohbeti dışa aktar (.json)",
|
||||
"Export Chats": "Sohbetleri Dışa Aktar",
|
||||
"Export Config": "Yapılandırmayı Dışa Aktar",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "چىقىرىش",
|
||||
"Export All Archived Chats": "بارلىق ئارخىپلانغان سۆھبەتلەرنى چىقىرىش",
|
||||
"Export All Chats (All Users)": "بارلىق سۆھبەتلەرنى چىقىرىش (بارلىق ئىشلەتكۈچىلەر)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "سۆھبەت چىقىرىش (.json)",
|
||||
"Export Chats": "سۆھبەتلەرنى چىقىرىش",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -848,6 +848,8 @@
|
||||
"Export": "Експорт",
|
||||
"Export All Archived Chats": "Експорт всіх архівованих чатів",
|
||||
"Export All Chats (All Users)": "Експорт всіх чатів (всіх користувачів)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Експорт чату (.json)",
|
||||
"Export Chats": "Експорт чатів",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "برآمد کریں",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "تمام چیٹس برآمد کریں (تمام صارفین)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "چیٹ برآمد کریں (.json)",
|
||||
"Export Chats": "چیٹس برآمد کریں",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Экспорт",
|
||||
"Export All Archived Chats": "Барча архивланган суҳбатларни экспорт қилиш",
|
||||
"Export All Chats (All Users)": "Барча суҳбатларни экспорт қилиш (барча фойдаланувчилар)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Чатни экспорт қилиш (.жсон)",
|
||||
"Export Chats": "Чатларни экспорт қилиш",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -846,6 +846,8 @@
|
||||
"Export": "Eksport",
|
||||
"Export All Archived Chats": "Barcha arxivlangan suhbatlarni eksport qilish",
|
||||
"Export All Chats (All Users)": "Barcha suhbatlarni eksport qilish (barcha foydalanuvchilar)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Chatni eksport qilish (.json)",
|
||||
"Export Chats": "Chatlarni eksport qilish",
|
||||
"Export Config": "",
|
||||
|
||||
@@ -845,6 +845,8 @@
|
||||
"Export": "Xuất khẩu",
|
||||
"Export All Archived Chats": "Xuất Tất cả Chat Đã Lưu trữ",
|
||||
"Export All Chats (All Users)": "Tải về tất cả nội dung chat (tất cả mọi người)",
|
||||
"Export as CSV": "",
|
||||
"Export as JSON": "",
|
||||
"Export chat (.json)": "Tải chat (.json)",
|
||||
"Export Chats": "Tải nội dung chat về máy",
|
||||
"Export Config": "",
|
||||
|
||||
Reference in New Issue
Block a user