mirror of
https://github.com/open-webui/open-webui.git
synced 2025-03-18 05:42:01 +01:00
chore: format
This commit is contained in:
parent
a38ce75eda
commit
3adfa29f7d
@ -927,6 +927,12 @@ USER_PERMISSIONS_FEATURES_IMAGE_GENERATION = (
|
||||
== "true"
|
||||
)
|
||||
|
||||
USER_PERMISSIONS_FEATURES_CODE_INTERPRETER = (
|
||||
os.environ.get("USER_PERMISSIONS_FEATURES_CODE_INTERPRETER", "True").lower()
|
||||
== "true"
|
||||
)
|
||||
|
||||
|
||||
DEFAULT_USER_PERMISSIONS = {
|
||||
"workspace": {
|
||||
"models": USER_PERMISSIONS_WORKSPACE_MODELS_ACCESS,
|
||||
@ -944,6 +950,7 @@ DEFAULT_USER_PERMISSIONS = {
|
||||
"features": {
|
||||
"web_search": USER_PERMISSIONS_FEATURES_WEB_SEARCH,
|
||||
"image_generation": USER_PERMISSIONS_FEATURES_IMAGE_GENERATION,
|
||||
"code_interpreter": USER_PERMISSIONS_FEATURES_CODE_INTERPRETER,
|
||||
},
|
||||
}
|
||||
|
||||
|
@ -42,6 +42,7 @@ def validate_url(url: Union[str, Sequence[str]]):
|
||||
else:
|
||||
return False
|
||||
|
||||
|
||||
def safe_validate_urls(url: Sequence[str]) -> Sequence[str]:
|
||||
valid_urls = []
|
||||
for u in url:
|
||||
@ -52,6 +53,7 @@ def safe_validate_urls(url: Sequence[str]) -> Sequence[str]:
|
||||
continue
|
||||
return valid_urls
|
||||
|
||||
|
||||
def resolve_hostname(hostname):
|
||||
# Get address information
|
||||
addr_info = socket.getaddrinfo(hostname, None)
|
||||
|
@ -79,6 +79,7 @@ class ChatPermissions(BaseModel):
|
||||
class FeaturesPermissions(BaseModel):
|
||||
web_search: bool = True
|
||||
image_generation: bool = True
|
||||
code_interpreter: bool = True
|
||||
|
||||
|
||||
class UserPermissions(BaseModel):
|
||||
|
@ -61,7 +61,8 @@
|
||||
},
|
||||
features: {
|
||||
web_search: true,
|
||||
image_generation: true
|
||||
image_generation: true,
|
||||
code_interpreter: true
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -45,7 +45,8 @@
|
||||
},
|
||||
features: {
|
||||
web_search: true,
|
||||
image_generation: true
|
||||
image_generation: true,
|
||||
code_interpreter: true
|
||||
}
|
||||
};
|
||||
export let userIds = [];
|
||||
|
@ -22,7 +22,8 @@
|
||||
},
|
||||
features: {
|
||||
web_search: true,
|
||||
image_generation: true
|
||||
image_generation: true,
|
||||
code_interpreter: true
|
||||
}
|
||||
};
|
||||
|
||||
@ -257,5 +258,13 @@
|
||||
|
||||
<Switch bind:state={permissions.features.image_generation} />
|
||||
</div>
|
||||
|
||||
<div class=" flex w-full justify-between my-2 pr-2">
|
||||
<div class=" self-center text-xs font-medium">
|
||||
{$i18n.t('Code Interpreter')}
|
||||
</div>
|
||||
|
||||
<Switch bind:state={permissions.features.code_interpreter} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -453,7 +453,7 @@
|
||||
<span class="relative inline-flex rounded-full size-2 bg-teal-500" />
|
||||
</span>
|
||||
</div>
|
||||
<div class=" translate-y-[0.5px]">{$i18n.t('Image generation')}</div>
|
||||
<div class=" translate-y-[0.5px]">{$i18n.t('Generate an image')}</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
@ -469,7 +469,7 @@
|
||||
<span class="relative inline-flex rounded-full size-2 bg-green-500" />
|
||||
</span>
|
||||
</div>
|
||||
<div class=" translate-y-[0.5px]">{$i18n.t('Code interpreter')}</div>
|
||||
<div class=" translate-y-[0.5px]">{$i18n.t('Execute code for analysis')}</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
@ -1167,22 +1167,24 @@
|
||||
</Tooltip>
|
||||
{/if}
|
||||
|
||||
<Tooltip content={$i18n.t('Executes code for analysis')} placement="top">
|
||||
<button
|
||||
on:click|preventDefault={() =>
|
||||
(codeInterpreterEnabled = !codeInterpreterEnabled)}
|
||||
type="button"
|
||||
class="px-1.5 sm:px-2.5 py-1.5 flex gap-1.5 items-center text-sm rounded-full font-medium transition-colors duration-300 focus:outline-none max-w-full overflow-hidden {codeInterpreterEnabled
|
||||
? 'bg-gray-100 dark:bg-gray-500/20 text-gray-600 dark:text-gray-400'
|
||||
: 'bg-transparent text-gray-600 dark:text-gray-300 border-gray-200 hover:bg-gray-100 dark:hover:bg-gray-800 '}"
|
||||
>
|
||||
<CommandLine className="size-5" strokeWidth="1.75" />
|
||||
<span
|
||||
class="hidden sm:block whitespace-nowrap overflow-hidden text-ellipsis translate-y-[0.5px] mr-0.5"
|
||||
>{$i18n.t('Code Intepreter')}</span
|
||||
{#if $_user.role === 'admin' || $_user?.permissions?.features?.code_interpreter}
|
||||
<Tooltip content={$i18n.t('Execute code for analysis')} placement="top">
|
||||
<button
|
||||
on:click|preventDefault={() =>
|
||||
(codeInterpreterEnabled = !codeInterpreterEnabled)}
|
||||
type="button"
|
||||
class="px-1.5 sm:px-2.5 py-1.5 flex gap-1.5 items-center text-sm rounded-full font-medium transition-colors duration-300 focus:outline-none max-w-full overflow-hidden {codeInterpreterEnabled
|
||||
? 'bg-gray-100 dark:bg-gray-500/20 text-gray-600 dark:text-gray-400'
|
||||
: 'bg-transparent text-gray-600 dark:text-gray-300 border-gray-200 hover:bg-gray-100 dark:hover:bg-gray-800 '}"
|
||||
>
|
||||
</button>
|
||||
</Tooltip>
|
||||
<CommandLine className="size-5" strokeWidth="1.75" />
|
||||
<span
|
||||
class="hidden sm:block whitespace-nowrap overflow-hidden text-ellipsis translate-y-[0.5px] mr-0.5"
|
||||
>{$i18n.t('Code Interpreter')}</span
|
||||
>
|
||||
</button>
|
||||
</Tooltip>
|
||||
{/if}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "أغلق",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "مجموعة",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "تجريبي",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "تصدير",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "توليد الصور (تجريبي)",
|
||||
"Image Generation Engine": "محرك توليد الصور",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Затвори",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Колекция",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Експериментално",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Износ",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Генерация на изображения (Експериментално)",
|
||||
"Image Generation Engine": "Двигател за генериране на изображения",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "বন্ধ",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "সংগ্রহ",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "পরিক্ষামূলক",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "রপ্তানি",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "ইমেজ জেনারেশন (পরিক্ষামূলক)",
|
||||
"Image Generation Engine": "ইমেজ জেনারেশন ইঞ্জিন",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Tancar",
|
||||
"Code execution": "Execució de codi",
|
||||
"Code formatted successfully": "Codi formatat correctament",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Col·lecció",
|
||||
"Color": "Color",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Exemple: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Exemple: sAMAccountName o uid o userPrincipalName",
|
||||
"Exclude": "Excloure",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Experimental",
|
||||
"Explore the cosmos": "Explorar el cosmos",
|
||||
"Export": "Exportar",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Despertar la curiositat",
|
||||
"Image": "Imatge",
|
||||
"Image Compression": "Compressió d'imatges",
|
||||
"Image generation": "Generació d'imatges",
|
||||
"Image Generation": "Generació d'imatges",
|
||||
"Image Generation (Experimental)": "Generació d'imatges (Experimental)",
|
||||
"Image Generation Engine": "Motor de generació d'imatges",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Suod nga",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Koleksyon",
|
||||
"Color": "",
|
||||
"ComfyUI": "",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Eksperimento",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Pagmugna og hulagway (Eksperimento)",
|
||||
"Image Generation Engine": "Makina sa paghimo og imahe",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Zavřít",
|
||||
"Code execution": "Provádění kódu",
|
||||
"Code formatted successfully": "Kód byl úspěšně naformátován.",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "",
|
||||
"Color": "Barva",
|
||||
"ComfyUI": "ComfyUI.",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Vyloučit",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Experimentální",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Exportovat",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Generování obrázků (experimentální)",
|
||||
"Image Generation Engine": "Engine pro generování obrázků",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Luk",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Kode formateret korrekt",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Samling",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Eksperimentel",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Eksportér",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Billedgenerering (eksperimentel)",
|
||||
"Image Generation Engine": "Billedgenereringsengine",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Schließen",
|
||||
"Code execution": "Codeausführung",
|
||||
"Code formatted successfully": "Code erfolgreich formatiert",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Kollektion",
|
||||
"Color": "Farbe",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Beispiel: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Beispiel: sAMAccountName or uid or userPrincipalName",
|
||||
"Exclude": "Ausschließen",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Experimentell",
|
||||
"Explore the cosmos": "Erforschen Sie das Universum",
|
||||
"Export": "Exportieren",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Neugier entfachen",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Bildgenerierung (experimentell)",
|
||||
"Image Generation Engine": "Bildgenerierungs-Engine",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Close",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Collection",
|
||||
"Color": "",
|
||||
"ComfyUI": "",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Much Experiment",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Image Wow (Much Experiment)",
|
||||
"Image Generation Engine": "Image Engine",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Κλείσιμο",
|
||||
"Code execution": "Εκτέλεση κώδικα",
|
||||
"Code formatted successfully": "Ο κώδικας μορφοποιήθηκε επιτυχώς",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Συλλογή",
|
||||
"Color": "Χρώμα",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Παράδειγμα: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Παράδειγμα: sAMAccountName ή uid ή userPrincipalName",
|
||||
"Exclude": "Εξαίρεση",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Πειραματικό",
|
||||
"Explore the cosmos": "Εξερευνήστε το σύμπαν",
|
||||
"Export": "Εξαγωγή",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Ξύπνημα της περιέργειας",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Δημιουργία Εικόνας (Πειραματικό)",
|
||||
"Image Generation Engine": "Μηχανή Δημιουργίας Εικόνας",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "",
|
||||
"Color": "",
|
||||
"ComfyUI": "",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "",
|
||||
"Image Generation Engine": "",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "",
|
||||
"Color": "",
|
||||
"ComfyUI": "",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "",
|
||||
"Image Generation Engine": "",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Cerrar",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Se ha formateado correctamente el código.",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Colección",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Experimental",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Exportar",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Generación de imágenes (experimental)",
|
||||
"Image Generation Engine": "Motor de generación de imágenes",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Itxi",
|
||||
"Code execution": "Kodearen exekuzioa",
|
||||
"Code formatted successfully": "Kodea ongi formateatu da",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Bilduma",
|
||||
"Color": "Kolorea",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Adibidea: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Adibidea: sAMAccountName edo uid edo userPrincipalName",
|
||||
"Exclude": "Baztertu",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Esperimentala",
|
||||
"Explore the cosmos": "Esploratu kosmosa",
|
||||
"Export": "Esportatu",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Piztu jakin-mina",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Irudi Sorkuntza (Esperimentala)",
|
||||
"Image Generation Engine": "Irudi Sorkuntza Motorea",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "بسته",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "مجموعه",
|
||||
"Color": "",
|
||||
"ComfyUI": "کومیوآی",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "آزمایشی",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "برون\u200cریزی",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "تولید تصویر (آزمایشی)",
|
||||
"Image Generation Engine": "موتور تولید تصویر",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Sulje",
|
||||
"Code execution": "Koodin suorittaminen",
|
||||
"Code formatted successfully": "Koodin muotoilu onnistui",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Kokoelma",
|
||||
"Color": "Väri",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Esimerkki: ou=käyttäjät,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Esimerkki: sAMAccountName tai uid tai userPrincipalName",
|
||||
"Exclude": "Jätä pois",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Kokeellinen",
|
||||
"Explore the cosmos": "Tutki avaruutta",
|
||||
"Export": "Vie",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Sytytä uteliaisuus",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Kuvagenerointi (kokeellinen)",
|
||||
"Image Generation Engine": "Kuvagenerointimoottori",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Fermer",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Le code a été formaté avec succès",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Collection",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Expérimental",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Exportation",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Génération d'images (expérimental)",
|
||||
"Image Generation Engine": "Moteur de génération d'images",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Fermer",
|
||||
"Code execution": "Exécution de code",
|
||||
"Code formatted successfully": "Le code a été formaté avec succès",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Collection",
|
||||
"Color": "Couleur",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Exemple: ou=utilisateurs,dc=foo,dc=exemple",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Exemple: sAMAccountName ou uid ou userPrincipalName",
|
||||
"Exclude": "Exclure",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Expérimental",
|
||||
"Explore the cosmos": "Explorer le cosmos",
|
||||
"Export": "Exportation",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Éveiller la curiosité",
|
||||
"Image": "Image",
|
||||
"Image Compression": "Compression d'image",
|
||||
"Image generation": "Génération d'images",
|
||||
"Image Generation": "Génération d'images",
|
||||
"Image Generation (Experimental)": "Génération d'images (expérimental)",
|
||||
"Image Generation Engine": "Moteur de génération d'images",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "סגור",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "אוסף",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "ניסיוני",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "ייצא",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "יצירת תמונות (ניסיוני)",
|
||||
"Image Generation Engine": "מנוע יצירת תמונות",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "बंद करना",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "संग्रह",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "प्रयोगात्मक",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "निर्यातित माल",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "छवि निर्माण (प्रायोगिक)",
|
||||
"Image Generation Engine": "छवि निर्माण इंजन",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Zatvori",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Kolekcija",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Eksperimentalno",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Izvoz",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Generiranje slika (eksperimentalno)",
|
||||
"Image Generation Engine": "Stroj za generiranje slika",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Bezárás",
|
||||
"Code execution": "Kód végrehajtás",
|
||||
"Code formatted successfully": "Kód sikeresen formázva",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Gyűjtemény",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Kizárás",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Kísérleti",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Exportálás",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Képgenerálás (kísérleti)",
|
||||
"Image Generation Engine": "Képgenerálási motor",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Tutup",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Kode berhasil diformat",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Koleksi",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Percobaan",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Ekspor",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Pembuatan Gambar (Eksperimental)",
|
||||
"Image Generation Engine": "Mesin Pembuat Gambar",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Dún",
|
||||
"Code execution": "Cód a fhorghníomhú",
|
||||
"Code formatted successfully": "Cód formáidithe go rathúil",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Bailiúchán",
|
||||
"Color": "Dath",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Sampla: ou=úsáideoirí,dc=foo,dc=sampla",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Sampla: sAMAaccountName nó uid nó userPrincipalName",
|
||||
"Exclude": "Eisigh",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Turgnamhach",
|
||||
"Explore the cosmos": "Déan iniúchadh ar an cosmos",
|
||||
"Export": "Easpórtáil",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Las fiosracht",
|
||||
"Image": "",
|
||||
"Image Compression": "Comhbhrú Íomhá",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Giniúint Íomhá (Turgnaimh)",
|
||||
"Image Generation Engine": "Inneall Giniúna Íomh",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Chiudi",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Collezione",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Sperimentale",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Esportazione",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Generazione di immagini (sperimentale)",
|
||||
"Image Generation Engine": "Motore di generazione immagini",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "閉じる",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "コードフォーマットに成功しました",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "コレクション",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "実験的",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "エクスポート",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "画像生成 (実験的)",
|
||||
"Image Generation Engine": "画像生成エンジン",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "დახურვა",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "ნაკრები",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "ექსპერიმენტალური",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "ექსპორტი",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "სურათების გენერაცია (ექსპერიმენტული)",
|
||||
"Image Generation Engine": "სურათის გენერაციის ძრავა",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "닫기",
|
||||
"Code execution": "코드 실행",
|
||||
"Code formatted successfully": "성공적으로 코드가 생성되었습니다",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "컬렉션",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "미포함",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "실험적",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "내보내기",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "이미지",
|
||||
"Image Compression": "이미지 압축",
|
||||
"Image generation": "이미지 생성",
|
||||
"Image Generation": "이미지 생성",
|
||||
"Image Generation (Experimental)": "이미지 생성(실험적)",
|
||||
"Image Generation Engine": "이미지 생성 엔진",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Uždaryti",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Kodas suformatuotas sėkmingai",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Kolekcija",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Eksperimentinis",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Eksportuoti",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Vaizdų generavimas (eksperimentinis)",
|
||||
"Image Generation Engine": "Vaizdų generavimo variklis",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Tutup",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Kod berjaya diformatkan",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Koleksi",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Percubaan",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Eksport",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Penjanaan Imej (Percubaan)",
|
||||
"Image Generation Engine": "Enjin Penjanaan Imej",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Lukk",
|
||||
"Code execution": "Kodekjøring",
|
||||
"Code formatted successfully": "Koden er formatert",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Samling",
|
||||
"Color": "Farge",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Eksempel: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Eksempel: sAMAccountName eller uid eller userPrincipalName",
|
||||
"Exclude": "Utelukk",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Eksperimentell",
|
||||
"Explore the cosmos": "Utforsk verdensrommet",
|
||||
"Export": "Eksporter",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Vekk nysgjerrigheten",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Bildegenerering (eksperimentell)",
|
||||
"Image Generation Engine": "Bildegenereringsmotor",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Sluiten",
|
||||
"Code execution": "Code uitvoeren",
|
||||
"Code formatted successfully": "Code succesvol geformateerd",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Verzameling",
|
||||
"Color": "Kleur",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Voorbeeld: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Voorbeeld: sAMAccountName or uid or userPrincipalName",
|
||||
"Exclude": "Sluit uit",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Experimenteel",
|
||||
"Explore the cosmos": "Ontdek de kosmos",
|
||||
"Export": "Exporteren",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Wakker nieuwsgierigheid aan",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Afbeeldingsgeneratie (Experimenteel)",
|
||||
"Image Generation Engine": "Afbeeldingsgeneratie Engine",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "ਬੰਦ ਕਰੋ",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "ਸੰਗ੍ਰਹਿ",
|
||||
"Color": "",
|
||||
"ComfyUI": "ਕੰਫੀਯੂਆਈ",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "ਪਰਮਾਣੂਕ੍ਰਿਤ",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "ਨਿਰਯਾਤ",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "ਚਿੱਤਰ ਜਨਰੇਸ਼ਨ (ਪਰਮਾਣੂਕ੍ਰਿਤ)",
|
||||
"Image Generation Engine": "ਚਿੱਤਰ ਜਨਰੇਸ਼ਨ ਇੰਜਣ",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Zamknij",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Kolekcja",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Eksperymentalne",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Eksport",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Generowanie obrazu (eksperymentalne)",
|
||||
"Image Generation Engine": "Silnik generowania obrazu",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Fechar",
|
||||
"Code execution": "Execução de código",
|
||||
"Code formatted successfully": "Código formatado com sucesso",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Coleção",
|
||||
"Color": "Cor",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Exemplo: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Exemplo: sAMAccountName ou uid ou userPrincipalName",
|
||||
"Exclude": "Excluir",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Experimental",
|
||||
"Explore the cosmos": "Explorar o cosmos",
|
||||
"Export": "Exportar",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Desperte a curiosidade",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Geração de Imagem (Experimental)",
|
||||
"Image Generation Engine": "Motor de Geração de Imagem",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Fechar",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Coleção",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Experimental",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Exportar",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Geração de Imagens (Experimental)",
|
||||
"Image Generation Engine": "Mecanismo de Geração de Imagens",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Închide",
|
||||
"Code execution": "Executarea codului",
|
||||
"Code formatted successfully": "Cod formatat cu succes",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Colecție",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Exclude",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Experimental",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Exportă",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Generare Imagine (Experimental)",
|
||||
"Image Generation Engine": "Motor de Generare a Imaginilor",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Закрыть",
|
||||
"Code execution": "Выполнение кода",
|
||||
"Code formatted successfully": "Код успешно отформатирован",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Коллекция",
|
||||
"Color": "Цвет",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Исключать",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Экспериментальное",
|
||||
"Explore the cosmos": "Исследуйте космос",
|
||||
"Export": "Экспорт",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Разожгите любопытство",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Генерация изображений (Экспериментально)",
|
||||
"Image Generation Engine": "Механизм генерации изображений",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Zavrieť",
|
||||
"Code execution": "Vykonávanie kódu",
|
||||
"Code formatted successfully": "Kód bol úspešne naformátovaný.",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "",
|
||||
"Color": "Farba",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Vylúčiť",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Experimentálne",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Exportovať",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Generovanie obrázkov (experimentálne)",
|
||||
"Image Generation Engine": "Engine na generovanie obrázkov",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Затвори",
|
||||
"Code execution": "Извршавање кода",
|
||||
"Code formatted successfully": "Код форматиран успешно",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Колекција",
|
||||
"Color": "Боја",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Експериментално",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Извоз",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Покрени знатижељу",
|
||||
"Image": "Слика",
|
||||
"Image Compression": "Компресија слике",
|
||||
"Image generation": "Стварање слике",
|
||||
"Image Generation": "Стварање слике",
|
||||
"Image Generation (Experimental)": "Стварање слика (експериментално)",
|
||||
"Image Generation Engine": "Мотор за стварање слика",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Stäng",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Samling",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Experimentell",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Export",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Bildgenerering (experimentell)",
|
||||
"Image Generation Engine": "Bildgenereringsmotor",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "ปิด",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "จัดรูปแบบโค้ดสำเร็จแล้ว",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "คอลเลคชัน",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "การทดลอง",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "ส่งออก",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "การสร้างภาพ (การทดลอง)",
|
||||
"Image Generation Engine": "เครื่องยนต์การสร้างภาพ",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "",
|
||||
"Color": "",
|
||||
"ComfyUI": "",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "",
|
||||
"Image Generation Engine": "",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Kapat",
|
||||
"Code execution": "Kod yürütme",
|
||||
"Code formatted successfully": "Kod başarıyla biçimlendirildi",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Koleksiyon",
|
||||
"Color": "Renk",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Örnek: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Örnek: sAMAccountName or uid or userPrincipalName",
|
||||
"Exclude": "Hariç tut",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Deneysel",
|
||||
"Explore the cosmos": "Evreni keşfet",
|
||||
"Export": "Dışa Aktar",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Merak uyandırın",
|
||||
"Image": "",
|
||||
"Image Compression": "Görüntü Sıkıştırma",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Görüntü Oluşturma (Deneysel)",
|
||||
"Image Generation Engine": "Görüntü Oluşturma Motoru",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Закрити",
|
||||
"Code execution": "Виконання коду",
|
||||
"Code formatted successfully": "Код успішно відформатовано",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Колекція",
|
||||
"Color": "Колір",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "Приклад: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Приклад: sAMAccountName або uid або userPrincipalName",
|
||||
"Exclude": "Виключити",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Експериментальне",
|
||||
"Explore the cosmos": "Досліджуйте космос",
|
||||
"Export": "Експорт",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "Запаліть цікавість",
|
||||
"Image": "Зображення",
|
||||
"Image Compression": "Стиснення зображень",
|
||||
"Image generation": "Генерація зображень",
|
||||
"Image Generation": "Генерація зображень",
|
||||
"Image Generation (Experimental)": "Генерування зображень (експериментально)",
|
||||
"Image Generation Engine": "Механізм генерації зображень",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "بند کریں",
|
||||
"Code execution": "کوڈ کا نفاذ",
|
||||
"Code formatted successfully": "کوڈ کامیابی سے فارمیٹ ہو گیا",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "کلیکشن",
|
||||
"Color": "",
|
||||
"ComfyUI": "کومفی یو آئی",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "خارج کریں",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "تجرباتی",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "برآمد کریں",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "تصویر کی تخلیق (تجرباتی)",
|
||||
"Image Generation Engine": "امیج جنریشن انجن",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "Đóng",
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Mã được định dạng thành công",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "Tổng hợp mọi tài liệu",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "Thử nghiệm",
|
||||
"Explore the cosmos": "",
|
||||
"Export": "Xuất khẩu",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "",
|
||||
"Image": "",
|
||||
"Image Compression": "",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image Generation (Experimental)": "Tạo ảnh (thử nghiệm)",
|
||||
"Image Generation Engine": "Công cụ tạo ảnh",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "关闭",
|
||||
"Code execution": "代码执行",
|
||||
"Code formatted successfully": "代码格式化成功",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "文件集",
|
||||
"Color": "颜色",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "例如:ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "例如:sAMAccountName 或 uid 或 userPrincipalName",
|
||||
"Exclude": "排除",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "实验性",
|
||||
"Explore the cosmos": "探索宇宙",
|
||||
"Export": "导出",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "点燃好奇心",
|
||||
"Image": "图像生成",
|
||||
"Image Compression": "图像压缩",
|
||||
"Image generation": "图像生成",
|
||||
"Image Generation": "图像生成",
|
||||
"Image Generation (Experimental)": "图像生成(实验性)",
|
||||
"Image Generation Engine": "图像生成引擎",
|
||||
|
@ -175,8 +175,7 @@
|
||||
"Close": "關閉",
|
||||
"Code execution": "程式碼執行",
|
||||
"Code formatted successfully": "程式碼格式化成功",
|
||||
"Code Intepreter": "",
|
||||
"Code interpreter": "",
|
||||
"Code Interpreter": "",
|
||||
"Collection": "收藏",
|
||||
"Color": "顏色",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -402,7 +401,7 @@
|
||||
"Example: ou=users,dc=foo,dc=example": "範例:ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "範例:sAMAccountName 或 uid 或 userPrincipalName",
|
||||
"Exclude": "排除",
|
||||
"Executes code for analysis": "",
|
||||
"Execute code for analysis": "",
|
||||
"Experimental": "實驗性功能",
|
||||
"Explore the cosmos": "探索宇宙",
|
||||
"Export": "匯出",
|
||||
@ -502,7 +501,6 @@
|
||||
"Ignite curiosity": "點燃好奇心",
|
||||
"Image": "圖片",
|
||||
"Image Compression": "圖片壓縮",
|
||||
"Image generation": "圖片生成",
|
||||
"Image Generation": "圖片生成",
|
||||
"Image Generation (Experimental)": "圖片生成(實驗性功能)",
|
||||
"Image Generation Engine": "圖片生成引擎",
|
||||
|
Loading…
x
Reference in New Issue
Block a user