mirror of
https://github.com/open-webui/open-webui
synced 2025-02-20 20:07:28 +00:00
feat: add LDAP_ATTRIBUTE_FOR_MAIL to env-configuration
This commit is contained in:
parent
88614ec70a
commit
ab6dffffd0
@ -1931,6 +1931,12 @@ LDAP_SERVER_PORT = PersistentConfig(
|
||||
int(os.environ.get("LDAP_SERVER_PORT", "389")),
|
||||
)
|
||||
|
||||
LDAP_ATTRIBUTE_FOR_MAIL = PersistentConfig(
|
||||
"LDAP_ATTRIBUTE_FOR_MAIL",
|
||||
"ldap.server.attribute_for_mail",
|
||||
os.environ.get("LDAP_ATTRIBUTE_FOR_MAIL", "mail"),
|
||||
)
|
||||
|
||||
LDAP_ATTRIBUTE_FOR_USERNAME = PersistentConfig(
|
||||
"LDAP_ATTRIBUTE_FOR_USERNAME",
|
||||
"ldap.server.attribute_for_username",
|
||||
|
@ -225,6 +225,7 @@ from open_webui.config import (
|
||||
LDAP_SERVER_LABEL,
|
||||
LDAP_SERVER_HOST,
|
||||
LDAP_SERVER_PORT,
|
||||
LDAP_ATTRIBUTE_FOR_MAIL,
|
||||
LDAP_ATTRIBUTE_FOR_USERNAME,
|
||||
LDAP_SEARCH_FILTERS,
|
||||
LDAP_SEARCH_BASE,
|
||||
@ -437,6 +438,7 @@ app.state.config.ENABLE_LDAP = ENABLE_LDAP
|
||||
app.state.config.LDAP_SERVER_LABEL = LDAP_SERVER_LABEL
|
||||
app.state.config.LDAP_SERVER_HOST = LDAP_SERVER_HOST
|
||||
app.state.config.LDAP_SERVER_PORT = LDAP_SERVER_PORT
|
||||
app.state.config.LDAP_ATTRIBUTE_FOR_MAIL = LDAP_ATTRIBUTE_FOR_MAIL
|
||||
app.state.config.LDAP_ATTRIBUTE_FOR_USERNAME = LDAP_ATTRIBUTE_FOR_USERNAME
|
||||
app.state.config.LDAP_APP_DN = LDAP_APP_DN
|
||||
app.state.config.LDAP_APP_PASSWORD = LDAP_APP_PASSWORD
|
||||
|
@ -170,6 +170,7 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
|
||||
LDAP_SERVER_LABEL = request.app.state.config.LDAP_SERVER_LABEL
|
||||
LDAP_SERVER_HOST = request.app.state.config.LDAP_SERVER_HOST
|
||||
LDAP_SERVER_PORT = request.app.state.config.LDAP_SERVER_PORT
|
||||
LDAP_ATTRIBUTE_FOR_MAIL = request.app.state.config.LDAP_ATTRIBUTE_FOR_MAIL
|
||||
LDAP_ATTRIBUTE_FOR_USERNAME = request.app.state.config.LDAP_ATTRIBUTE_FOR_USERNAME
|
||||
LDAP_SEARCH_BASE = request.app.state.config.LDAP_SEARCH_BASE
|
||||
LDAP_SEARCH_FILTERS = request.app.state.config.LDAP_SEARCH_FILTERS
|
||||
@ -218,7 +219,11 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
|
||||
search_success = connection_app.search(
|
||||
search_base=LDAP_SEARCH_BASE,
|
||||
search_filter=f"(&({LDAP_ATTRIBUTE_FOR_USERNAME}={escape_filter_chars(form_data.user.lower())}){LDAP_SEARCH_FILTERS})",
|
||||
attributes=[f"{LDAP_ATTRIBUTE_FOR_USERNAME}", "mail", "cn"],
|
||||
attributes=[
|
||||
f"{LDAP_ATTRIBUTE_FOR_USERNAME}",
|
||||
f"{LDAP_ATTRIBUTE_FOR_MAIL}",
|
||||
"cn",
|
||||
],
|
||||
)
|
||||
|
||||
if not search_success:
|
||||
@ -226,7 +231,9 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
|
||||
|
||||
entry = connection_app.entries[0]
|
||||
username = str(entry[f"{LDAP_ATTRIBUTE_FOR_USERNAME}"]).lower()
|
||||
mail = str(entry["mail"])
|
||||
mail = str(entry[f"{LDAP_ATTRIBUTE_FOR_MAIL}"])
|
||||
if not mail or mail == "" or mail == "[]":
|
||||
raise HTTPException(400, f"User {form_data.user} does not have mail.")
|
||||
cn = str(entry["cn"])
|
||||
user_dn = entry.entry_dn
|
||||
|
||||
@ -691,6 +698,7 @@ class LdapServerConfig(BaseModel):
|
||||
label: str
|
||||
host: str
|
||||
port: Optional[int] = None
|
||||
attribute_for_mail: str = "mail"
|
||||
attribute_for_username: str = "uid"
|
||||
app_dn: str
|
||||
app_dn_password: str
|
||||
@ -707,6 +715,7 @@ async def get_ldap_server(request: Request, user=Depends(get_admin_user)):
|
||||
"label": request.app.state.config.LDAP_SERVER_LABEL,
|
||||
"host": request.app.state.config.LDAP_SERVER_HOST,
|
||||
"port": request.app.state.config.LDAP_SERVER_PORT,
|
||||
"attribute_for_mail": request.app.state.config.LDAP_ATTRIBUTE_FOR_MAIL,
|
||||
"attribute_for_username": request.app.state.config.LDAP_ATTRIBUTE_FOR_USERNAME,
|
||||
"app_dn": request.app.state.config.LDAP_APP_DN,
|
||||
"app_dn_password": request.app.state.config.LDAP_APP_PASSWORD,
|
||||
@ -725,6 +734,7 @@ async def update_ldap_server(
|
||||
required_fields = [
|
||||
"label",
|
||||
"host",
|
||||
"attribute_for_mail",
|
||||
"attribute_for_username",
|
||||
"app_dn",
|
||||
"app_dn_password",
|
||||
@ -743,6 +753,7 @@ async def update_ldap_server(
|
||||
request.app.state.config.LDAP_SERVER_LABEL = form_data.label
|
||||
request.app.state.config.LDAP_SERVER_HOST = form_data.host
|
||||
request.app.state.config.LDAP_SERVER_PORT = form_data.port
|
||||
request.app.state.config.LDAP_ATTRIBUTE_FOR_MAIL = form_data.attribute_for_mail
|
||||
request.app.state.config.LDAP_ATTRIBUTE_FOR_USERNAME = (
|
||||
form_data.attribute_for_username
|
||||
)
|
||||
@ -758,6 +769,7 @@ async def update_ldap_server(
|
||||
"label": request.app.state.config.LDAP_SERVER_LABEL,
|
||||
"host": request.app.state.config.LDAP_SERVER_HOST,
|
||||
"port": request.app.state.config.LDAP_SERVER_PORT,
|
||||
"attribute_for_mail": request.app.state.config.LDAP_ATTRIBUTE_FOR_MAIL,
|
||||
"attribute_for_username": request.app.state.config.LDAP_ATTRIBUTE_FOR_USERNAME,
|
||||
"app_dn": request.app.state.config.LDAP_APP_DN,
|
||||
"app_dn_password": request.app.state.config.LDAP_APP_PASSWORD,
|
||||
|
@ -28,6 +28,7 @@
|
||||
label: '',
|
||||
host: '',
|
||||
port: '',
|
||||
attribute_for_mail: 'mail',
|
||||
attribute_for_username: 'uid',
|
||||
app_dn: '',
|
||||
app_dn_password: '',
|
||||
@ -342,6 +343,26 @@
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex w-full gap-2">
|
||||
<div class="w-full">
|
||||
<div class=" self-center text-xs font-medium min-w-fit mb-1">
|
||||
{$i18n.t('Attribute for Mail')}
|
||||
</div>
|
||||
<Tooltip
|
||||
content={$i18n.t(
|
||||
'The LDAP attribute that maps to the mail that users use to sign in.'
|
||||
)}
|
||||
placement="top-start"
|
||||
>
|
||||
<input
|
||||
class="w-full bg-transparent outline-none py-0.5"
|
||||
required
|
||||
placeholder={$i18n.t('Example: mail')}
|
||||
bind:value={LDAP_SERVER.attribute_for_mail}
|
||||
/>
|
||||
</Tooltip>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex w-full gap-2">
|
||||
<div class="w-full">
|
||||
<div class=" self-center text-xs font-medium min-w-fit mb-1">
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "أرفق ملف",
|
||||
"Attention to detail": "انتبه للتفاصيل",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "صوتي",
|
||||
"August": "أغسطس",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Прикачване на файл",
|
||||
"Attention to detail": "Внимание към детайлите",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Аудио",
|
||||
"August": "Август",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "ফাইল যুক্ত করুন",
|
||||
"Attention to detail": "বিস্তারিত বিশেষতা",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "অডিও",
|
||||
"August": "আগস্ট",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Assistent",
|
||||
"Attach file": "Adjuntar arxiu",
|
||||
"Attention to detail": "Atenció al detall",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Atribut per al Nom d'usuari",
|
||||
"Audio": "Àudio",
|
||||
"August": "Agost",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Avaluacions",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemple: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemple: TOTS",
|
||||
"Example: mail": "",
|
||||
"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",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "La mida del lot determina quantes sol·licituds de text es processen alhora. Una mida de lot més gran pot augmentar el rendiment i la velocitat del model, però també requereix més memòria. (Per defecte: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Els desenvolupadors d'aquest complement són voluntaris apassionats de la comunitat. Si trobeu útil aquest complement, considereu contribuir al seu desenvolupament.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "La classificació d'avaluació es basa en el sistema de qualificació Elo i s'actualitza en temps real.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "L'atribut LDAP que mapeja el nom d'usuari amb l'usuari que vol iniciar sessió",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "La classificació està actualment en versió beta i és possible que s'ajustin els càlculs de la puntuació a mesura que es perfeccioni l'algorisme.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La mida màxima del fitxer en MB. Si la mida del fitxer supera aquest límit, el fitxer no es carregarà.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Ilakip ang usa ka file",
|
||||
"Attention to detail": "Pagtagad sa mga detalye",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Audio",
|
||||
"August": "",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Ano, jak vám mohu pomoci?",
|
||||
"Attach file": "Připojit soubor",
|
||||
"Attention to detail": "Pozornost k detailům",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Zvuk",
|
||||
"August": "Srpen",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Hodnocení",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Vyloučit",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Vývojáři stojící za tímto pluginem jsou zapálení dobrovolníci z komunity. Pokud považujete tento plugin za užitečný, zvažte příspěvek k jeho vývoji.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Hodnotící žebříček je založen na systému hodnocení Elo a je aktualizován v reálném čase.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Žebříček je v současné době v beta verzi a můžeme upravit výpočty hodnocení, jak budeme zdokonalovat algoritmus.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maximální velikost souboru v MB. Pokud velikost souboru překročí tento limit, soubor nebude nahrán.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Vedhæft fil",
|
||||
"Attention to detail": "Detajleorientering",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Lyd",
|
||||
"August": "august",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Udviklerne bag dette plugin er passionerede frivillige fra fællesskabet. Hvis du finder dette plugin nyttigt, kan du overveje at bidrage til dets udvikling.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Den maksimale filstørrelse i MB. Hvis filstørrelsen overstiger denne grænse, uploades filen ikke.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Assistent",
|
||||
"Attach file": "Datei anhängen",
|
||||
"Attention to detail": "Aufmerksamkeit für Details",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Attribut für Benutzername",
|
||||
"Audio": "Audio",
|
||||
"August": "August",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Evaluationen",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Beispiel: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Beispiel: ALL",
|
||||
"Example: mail": "",
|
||||
"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",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Die Batch-Größe bestimmt, wie viele Textanfragen gleichzeitig verarbeitet werden. Eine größere Batch-Größe kann die Leistung und Geschwindigkeit des Modells erhöhen, erfordert jedoch auch mehr Speicher. (Standard: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Die Entwickler hinter diesem Plugin sind leidenschaftliche Freiwillige aus der Community. Wenn Sie dieses Plugin hilfreich finden, erwägen Sie bitte, zu seiner Entwicklung beizutragen.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Die Bewertungs-Bestenliste basiert auf dem Elo-Bewertungssystem und wird in Echtzeit aktualisiert.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "Das LDAP-Attribut, das dem Benutzernamen zugeordnet ist, den Benutzer zum Anmelden verwenden.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Die Bestenliste befindet sich derzeit in der Beta-Phase, und es ist möglich, dass wir die Bewertungsberechnungen anpassen, während wir den Algorithmus verfeinern.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Die maximale Dateigröße in MB. Wenn die Dateigröße dieses Limit überschreitet, wird die Datei nicht hochgeladen.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Attach file",
|
||||
"Attention to detail": "",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Audio",
|
||||
"August": "",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Βοηθός",
|
||||
"Attach file": "Συνημμένο αρχείο",
|
||||
"Attention to detail": "Προσοχή στη λεπτομέρεια",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Ιδιότητα για Όνομα Χρήστη",
|
||||
"Audio": "Ήχος",
|
||||
"August": "Αύγουστος",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Αξιολογήσεις",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Παράδειγμα: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Παράδειγμα: ALL",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "Παράδειγμα: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Παράδειγμα: sAMAccountName ή uid ή userPrincipalName",
|
||||
"Exclude": "Εξαίρεση",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Το μέγεθος παρτίδας καθορίζει πόσες αιτήσεις κειμένου επεξεργάζονται μαζί ταυτόχρονα. Ένα μεγαλύτερο μέγεθος παρτίδας μπορεί να αυξήσει την απόδοση και την ταχύτητα του μοντέλου, αλλά απαιτεί επίσης περισσότερη μνήμη. (Προεπιλογή: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Οι προγραμματιστές πίσω από αυτό το plugin είναι παθιασμένοι εθελοντές από την κοινότητα. Αν βρείτε αυτό το plugin χρήσιμο, παρακαλώ σκεφτείτε να συνεισφέρετε στην ανάπτυξή του.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Η κατάταξη αξιολόγησης βασίζεται στο σύστημα βαθμολόγησης Elo και ενημερώνεται σε πραγματικό χρόνο.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "Το χαρακτηριστικό LDAP που αντιστοιχεί στο όνομα χρήστη που χρησιμοποιούν οι χρήστες για να συνδεθούν.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Η κατάταξη είναι αυτή τη στιγμή σε beta, και ενδέχεται να προσαρμόσουμε τους υπολογισμούς βαθμολογίας καθώς βελτιώνουμε τον αλγόριθμο.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Το μέγιστο μέγεθος αρχείου σε MB. Αν το μέγεθος του αρχείου υπερβαίνει αυτό το όριο, το αρχείο δεν θα ανεβεί.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "",
|
||||
"Attention to detail": "",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "",
|
||||
"August": "",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "",
|
||||
"Attention to detail": "",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "",
|
||||
"August": "",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Adjuntar archivo",
|
||||
"Attention to detail": "Detalle preciso",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Audio",
|
||||
"August": "Agosto",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Los desarrolladores de este plugin son apasionados voluntarios de la comunidad. Si encuentras este plugin útil, por favor considere contribuir a su desarrollo.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "El tamaño máximo del archivo en MB. Si el tamaño del archivo supera este límite, el archivo no se subirá.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Laguntzailea",
|
||||
"Attach file": "Erantsi fitxategia",
|
||||
"Attention to detail": "Xehetasunei arreta",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Erabiltzaile-izenerako atributua",
|
||||
"Audio": "Audioa",
|
||||
"August": "Abuztua",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Ebaluazioak",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Adibidea: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Adibidea: GUZTIAK",
|
||||
"Example: mail": "",
|
||||
"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",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Sorta tamainak zehazten du zenbat testu eskaera prozesatzen diren batera aldi berean. Sorta tamaina handiago batek modeloaren errendimendua eta abiadura handitu ditzake, baina memoria gehiago behar du. (Lehenetsia: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Plugin honen atzean dauden garatzaileak komunitateko boluntario sutsuak dira. Plugin hau baliagarria iruditzen bazaizu, mesedez kontuan hartu bere garapenean laguntzea.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Ebaluazio sailkapena Elo sailkapen sisteman oinarritzen da eta denbora errealean eguneratzen da.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "Erabiltzaileek saioa hasteko erabiltzen duten erabiltzaile-izenarekin mapeatzen den LDAP atributua.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Sailkapena beta fasean dago, eta balorazioen kalkuluak doitu ditzakegu algoritmoa fintzen dugun heinean.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Fitxategiaren gehienezko tamaina MB-tan. Fitxategiaren tamainak muga hau gainditzen badu, fitxategia ez da kargatuko.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "دستیار",
|
||||
"Attach file": "پیوست پرونده",
|
||||
"Attention to detail": "دقیق",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "صدا",
|
||||
"August": "آگوست",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Avustaja",
|
||||
"Attach file": "Liitä tiedosto",
|
||||
"Attention to detail": "Huomio yksityiskohtiin",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Käyttäjänimi-määritämä",
|
||||
"Audio": "Ääni",
|
||||
"August": "elokuu",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Arvioinnit",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Esimerkki: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Esimerkki: KAIKKI",
|
||||
"Example: mail": "",
|
||||
"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",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Erän koko määrittää, kuinka monta tekstipyyntöä käsitellään yhdessä kerralla. Suurempi erän koko voi parantaa mallin suorituskykyä ja nopeutta, mutta se vaatii myös enemmän muistia. (Oletus: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Tämän lisäosan takana olevat kehittäjät ovat intohimoisia vapaaehtoisyhteisöstä. Jos koet tämän lisäosan hyödylliseksi, harkitse sen kehittämisen tukemista.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Arviointitulosluettelo perustuu Elo-luokitusjärjestelmään ja päivittyy reaaliajassa.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "LDAP-määrite, joka vastaa käyttäjien kirjautumiskäyttäjänimeä.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Tulosluettelo on tällä hetkellä beta-vaiheessa, ja voimme säätää pisteytyksen laskentaa hienostaessamme algoritmia.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Enimmäistiedostokoko megatavuissa. Jos tiedoston koko ylittää tämän rajan, tiedostoa ei ladata.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Joindre un document",
|
||||
"Attention to detail": "Attention aux détails",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Audio",
|
||||
"August": "Août",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Assistant",
|
||||
"Attach file": "Joindre un document",
|
||||
"Attention to detail": "Attention aux détails",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Attribut pour le nom d'utilisateur",
|
||||
"Audio": "Audio",
|
||||
"August": "Août",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Évaluations",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemple: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemple: TOUS",
|
||||
"Example: mail": "",
|
||||
"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",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "La taille de lot détermine combien de demandes de texte sont traitées ensemble en une fois. Une taille de lot plus grande peut augmenter les performances et la vitesse du modèle, mais elle nécessite également plus de mémoire. (Par défaut : 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Les développeurs de ce plugin sont des bénévoles passionnés issus de la communauté. Si vous trouvez ce plugin utile, merci de contribuer à son développement.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Le classement d'évaluation est basé sur le système de notation Elo et est mis à jour en temps réel.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "L'attribut LDAP qui correspond au nom d'utilisateur que les utilisateurs utilisent pour se connecter.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Le classement est actuellement en version bêta et nous pouvons ajuster les calculs de notation à mesure que nous peaufinons l'algorithme.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La taille maximale du fichier en Mo. Si la taille du fichier dépasse cette limite, le fichier ne sera pas téléchargé.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "צרף קובץ",
|
||||
"Attention to detail": "תשומת לב לפרטים",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "אודיו",
|
||||
"August": "אוגוסט",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "फ़ाइल atta",
|
||||
"Attention to detail": "विस्तार पर ध्यान",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "ऑडियो",
|
||||
"August": "अगस्त",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Priloži datoteku",
|
||||
"Attention to detail": "Pažnja na detalje",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Audio",
|
||||
"August": "Kolovoz",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Asszisztens",
|
||||
"Attach file": "Fájl csatolása",
|
||||
"Attention to detail": "Részletekre való odafigyelés",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Hang",
|
||||
"August": "Augusztus",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Értékelések",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Kizárás",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "A bővítmény fejlesztői lelkes önkéntesek a közösségből. Ha hasznosnak találja ezt a bővítményt, kérjük, fontolja meg a fejlesztéséhez való hozzájárulást.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Az értékelési ranglista az Elo értékelési rendszeren alapul és valós időben frissül.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "A ranglista jelenleg béta verzióban van, és az algoritmus finomítása során módosíthatjuk az értékelési számításokat.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "A maximális fájlméret MB-ban. Ha a fájlméret meghaladja ezt a limitet, a fájl nem lesz feltöltve.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Lampirkan file",
|
||||
"Attention to detail": "Perhatian terhadap detail",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Audio",
|
||||
"August": "Agustus",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Cúntóir",
|
||||
"Attach file": "Ceangail comhad",
|
||||
"Attention to detail": "Aird ar mhionsonraí",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Tréith don Ainm Úsáideora",
|
||||
"Audio": "Fuaim",
|
||||
"August": "Lúnasa",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Meastóireachtaí",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Sampla: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Sampla: GACH",
|
||||
"Example: mail": "",
|
||||
"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",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Cinneann méid an bhaisc cé mhéad iarratas téacs a phróiseáiltear le chéile ag an am céanna. Is féidir le méid baisc níos airde feidhmíocht agus luas an mhúnla a mhéadú, ach éilíonn sé níos mó cuimhne freisin. (Réamhshocrú: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Is deonacha paiseanta ón bpobal iad na forbróirí taobh thiar den bhreiseán seo. Má aimsíonn an breiseán seo cabhrach leat, smaoinigh ar rannchuidiú lena fhorbairt.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Tá an clár ceannairí meastóireachta bunaithe ar chóras rátála Elo agus déantar é a nuashonrú i bhfíor-am.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "An tréith LDAP a mhapálann don ainm úsáideora a úsáideann úsáideoirí chun síniú isteach.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Tá an clár ceannairí i béite faoi láthair, agus d'fhéadfaimis na ríomhanna rátála a choigeartú de réir mar a dhéanfaimid an t-algartam a bheachtú.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Uasmhéid an chomhaid i MB. Má sháraíonn méid an chomhaid an teorainn seo, ní uaslódófar an comhad.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Allega file",
|
||||
"Attention to detail": "Attenzione ai dettagli",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Audio",
|
||||
"August": "Agosto",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "ファイルを添付する",
|
||||
"Attention to detail": "詳細に注意する",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "オーディオ",
|
||||
"August": "8月",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "ფაილის ჩაწერა",
|
||||
"Attention to detail": "დეტალური მიმართვა",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "ხმოვანი",
|
||||
"August": "აგვისტო",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "어시스턴트",
|
||||
"Attach file": "파일 첨부",
|
||||
"Attention to detail": "세부 사항에 대한 주의",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "오디오",
|
||||
"August": "8월",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "평가",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "미포함",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "이 플러그인 뒤에 있는 개발자는 커뮤니티에서 활동하는 단순한 열정적인 일반인들입니다. 만약 플러그인이 도움 되었다면, 플러그인 개발에 기여를 고려해주세요!",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "평가 리더보드는 Elo 평가 시스템을 기반으로 하고 실시간으로 업데이트됩니다",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "리더보드는 베타테스트중에 있습니다, 평가 기준이 알고리즘 수정과 함께 변할 수 있습니다",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "최대 파일 크기(MB). 만약 파일 크기가 한도를 초과할 시, 파일은 업로드되지 않습니다",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Pridėti failą",
|
||||
"Attention to detail": "Dėmesys detalėms",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Audio įrašas",
|
||||
"August": "Rugpjūtis",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Šis modulis kuriamas savanorių. Palaikykite jų darbus finansiškai arba prisidėdami kodu.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Kepilkan Fail",
|
||||
"Attention to detail": "Perincian",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Audio",
|
||||
"August": "Ogos",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Pembangun di sebalik 'plugin' ini adalah sukarelawan yang bersemangat daripada komuniti. Jika anda mendapati 'plugin' ini membantu, sila pertimbangkan untuk menyumbang kepada pembangunannya.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Assistent",
|
||||
"Attach file": "Legg ved fil",
|
||||
"Attention to detail": "Fokus på detaljer",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Attributt for brukernavn",
|
||||
"Audio": "Lyd",
|
||||
"August": "august",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Vurderinger",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Eksempel: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Eksempel: ALL",
|
||||
"Example: mail": "",
|
||||
"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",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Batchstørrelsen avgjør hvor mange tekstforespørsler som behandles samtidig. En høyere batchstørrelse kan øke ytelsen og hastigheten til modellen, men det krever også mer minne. (Standard: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Utviklerne bak denne utvidelsen er lidenskapelige frivillige fra fellesskapet. Hvis du finner denne utvidelsen nyttig, vennligst vurder å bidra til utviklingen.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Ledertavlens over evalueringer er basert på Elo-rangeringssystemet, og oppdateres i sanntid.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "LDAP-attributtet som tilsvarer brukernavnet som brukerne bruker for å logge på.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Ledertavlen er for øyeblikket i betaversjon, og vi kommer kanskje til å justere beregningene etter hvert som vi forbedrer algoritmen.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Den maksimale filstørrelsen i MB. Hvis en filstørrelse overskrider denne grensen, blir ikke filen lastet opp.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Assistent",
|
||||
"Attach file": "Voeg een bestand toe",
|
||||
"Attention to detail": "Attention to detail",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Attribuut voor gebruikersnaam",
|
||||
"Audio": "Audio",
|
||||
"August": "Augustus",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Beoordelingen",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Voorbeeld: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Voorbeeld: ALL",
|
||||
"Example: mail": "",
|
||||
"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",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "De batchgrootte bepaalt hoeveel tekstverzoeken tegelijk worden verwerkt. Een hogere batchgrootte kan de prestaties en snelheid van het model verhogen, maar vereist ook meer geheugen. (Standaard: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "De ontwikkelaars achter deze plugin zijn gepassioneerde vrijwilligers uit de gemeenschap. Als je deze plugin nuttig vindt, overweeg dan om bij te dragen aan de ontwikkeling ervan.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Het beoordelingsklassement is gebaseerd op het Elo-classificatiesysteem en wordt in realtime bijgewerkt.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "Het LDAP-attribuut dat de gebruikersnaam koppelt die gebruikers gebruiken om in te loggen.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Het leaderboard is momenteel in bèta en we kunnen de ratingberekeningen aanpassen naarmate we het algoritme verfijnen.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "De maximale bestandsgrootte in MB. Als het bestand groter is dan deze limiet, wordt het bestand niet geüpload.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "ਫਾਈਲ ਜੋੜੋ",
|
||||
"Attention to detail": "ਵੇਰਵੇ 'ਤੇ ਧਿਆਨ",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "ਆਡੀਓ",
|
||||
"August": "ਅਗਸਤ",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Dołącz plik",
|
||||
"Attention to detail": "Dbałość o szczegóły",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Dźwięk",
|
||||
"August": "Sierpień",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Assistente",
|
||||
"Attach file": "Anexar arquivo",
|
||||
"Attention to detail": "Atenção aos detalhes",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Atribuir para nome de usuário",
|
||||
"Audio": "Áudio",
|
||||
"August": "Agosto",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Avaliações",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemplo: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemplo: ALL",
|
||||
"Example: mail": "",
|
||||
"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",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "O tamanho do lote (batch size) determina quantas solicitações de texto são processadas juntas de uma vez. Um tamanho de lote maior pode aumentar o desempenho e a velocidade do modelo, mas também requer mais memória. (Padrão: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Os desenvolvedores por trás deste plugin são voluntários apaixonados da comunidade. Se você achar este plugin útil, considere contribuir para o seu desenvolvimento.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "A evolução do ranking de avaliação é baseada no sistema Elo e será atualizada em tempo real.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "O atributo LDAP que mapeia para o nome de usuário que os usuários usam para fazer login.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "O ranking atual está em beta, e podemos ajustar as contas de avaliação como refinamos o algoritmo.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Máximo tamanho de arquivo em MB. Se o tamanho do arquivo exceder este limite, o arquivo não será enviado.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Anexar ficheiro",
|
||||
"Attention to detail": "Detalhado",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Áudio",
|
||||
"August": "Agosto",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Asistent",
|
||||
"Attach file": "Atașează fișier",
|
||||
"Attention to detail": "Atenție la detalii",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Audio",
|
||||
"August": "August",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Evaluări",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Exclude",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Dezvoltatorii din spatele acestui plugin sunt voluntari pasionați din comunitate. Dacă considerați acest plugin util, vă rugăm să luați în considerare contribuția la dezvoltarea sa.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Clasamentul de evaluare se bazează pe sistemul de rating Elo și este actualizat în timp real.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Clasamentul este în prezent în versiune beta și este posibil să ajustăm calculul evaluărilor pe măsură ce rafinăm algoritmul.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Dimensiunea maximă a fișierului în MB. Dacă dimensiunea fișierului depășește această limită, fișierul nu va fi încărcat.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Ассистент",
|
||||
"Attach file": "Прикрепить файл",
|
||||
"Attention to detail": "Внимание к деталям",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Атрибут для имени пользователя",
|
||||
"Audio": "Аудио",
|
||||
"August": "Август",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Оценки",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Исключать",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Разработчики этого плагина - увлеченные волонтеры из сообщества. Если вы считаете этот плагин полезным, пожалуйста, подумайте о том, чтобы внести свой вклад в его разработку.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Максимальный размер файла в МБ. Если размер файла превысит это ограничение, файл не будет загружен.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Asistent",
|
||||
"Attach file": "Pripojiť súbor",
|
||||
"Attention to detail": "Pozornosť k detailom",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Zvuk",
|
||||
"August": "August",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Hodnotenia",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Vylúčiť",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Vývojári stojaci za týmto pluginom sú zapálení dobrovoľníci z komunity. Ak považujete tento plugin za užitočný, zvážte príspevok na jeho vývoj.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Hodnotiaca tabuľka je založená na systéme hodnotenia Elo a aktualizuje sa v reálnom čase.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Hodnotiaca tabuľka je momentálne v beta verzii a môžeme upraviť výpočty hodnotenia, ako budeme zdokonaľovať algoritmus.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maximálna veľkosť súboru v MB. Ak veľkosť súboru presiahne tento limit, súbor nebude nahraný.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Помоћник",
|
||||
"Attach file": "Приложи датотеку",
|
||||
"Attention to detail": "Пажња на детаље",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Особина корисника",
|
||||
"Audio": "Звук",
|
||||
"August": "Август",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Процењивања",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Bifoga fil",
|
||||
"Attention to detail": "Detaljerad uppmärksamhet",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Ljud",
|
||||
"August": "augusti",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "แนบไฟล์",
|
||||
"Attention to detail": "ใส่ใจในรายละเอียด",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "เสียง",
|
||||
"August": "สิงหาคม",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "นักพัฒนาที่อยู่เบื้องหลังปลั๊กอินนี้เป็นอาสาสมัครที่มีชื่นชอบการแบ่งบัน หากคุณพบว่าปลั๊กอินนี้มีประโยชน์ โปรดพิจารณาสนับสนุนการพัฒนาของเขา",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "",
|
||||
"Attention to detail": "",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "",
|
||||
"August": "",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Asistan",
|
||||
"Attach file": "Dosya ekle",
|
||||
"Attention to detail": "Ayrıntılara dikkat",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Kullanıcı Adı için Özellik",
|
||||
"Audio": "Ses",
|
||||
"August": "Ağustos",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Değerlendirmeler",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "Hariç tut",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Bu eklentinin arkasındaki geliştiriciler topluluktan tutkulu gönüllülerdir. Bu eklentinin yararlı olduğunu düşünüyorsanız, gelişimine katkıda bulunmayı düşünün.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "MB cinsinden maksimum dosya boyutu. Dosya boyutu bu sınırı aşarsa, dosya yüklenmeyecektir.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "Асистент",
|
||||
"Attach file": "Прикріпити файл",
|
||||
"Attention to detail": "Увага до деталей",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "Атрибут для імені користувача",
|
||||
"Audio": "Аудіо",
|
||||
"August": "Серпень",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "Оцінювання",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Приклад: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Приклад: ВСІ",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "Приклад: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Приклад: sAMAccountName або uid або userPrincipalName",
|
||||
"Exclude": "Виключити",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Розмір пакету визначає, скільки текстових запитів обробляється одночасно. Більший розмір пакету може підвищити продуктивність та швидкість моделі, але також вимагає більше пам'яті. (За замовчуванням: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Розробники цього плагіна - пристрасні волонтери зі спільноти. Якщо ви вважаєте цей плагін корисним, будь ласка, зробіть свій внесок у його розвиток.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Таблиця лідерів оцінки базується на системі рейтингу Ело і оновлюється в реальному часі.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "LDAP-атрибут, який відповідає за ім'я користувача, яке використовують користувачі для входу.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Таблиця лідерів наразі в бета-версії, і ми можемо коригувати розрахунки рейтингів у міру вдосконалення алгоритму.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Максимальний розмір файлу в МБ. Якщо розмір файлу перевищує цей ліміт, файл не буде завантажено.",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "اسسٹنٹ",
|
||||
"Attach file": "فائل منسلک کریں",
|
||||
"Attention to detail": "تفصیل پر توجہ",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "آڈیو",
|
||||
"August": "اگست",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "تشخیصات",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "خارج کریں",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "اس پلگ ان کے پیچھے موجود ڈویلپرز کمیونٹی کے پرجوش رضاکار ہیں اگر آپ کو یہ پلگ ان مددگار لگتا ہے تو برائے مہربانی اس کی ترقی میں اپنا حصہ ڈالنے پر غور کریں",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "تشخیصی لیڈربورڈ ایلو ریٹنگ سسٹم پر مبنی ہے اور یہ حقیقی وقت میں اپ ڈیٹ ہوتا ہے",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "لیڈر بورڈ اس وقت بیٹا مرحلے میں ہے، اور جیسے جیسے ہم الگورتھم کو بہتر بنائیں گے ہم ریٹنگ کیلکولیشن کو ایڈجسٹ کرسکتے ہیں",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "زیادہ سے زیادہ فائل سائز ایم بی میں اگر فائل سائز اس حد سے تجاوز کر جاتا ہے، تو فائل اپ لوڈ نہیں ہوگی",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "",
|
||||
"Attach file": "Đính kèm file",
|
||||
"Attention to detail": "Có sự chú ý đến chi tiết của vấn đề",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "",
|
||||
"Audio": "Âm thanh",
|
||||
"August": "Tháng 8",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Exclude": "",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Các nhà phát triển đằng sau plugin này là những tình nguyện viên nhiệt huyết của cộng đồng. Nếu bạn thấy plugin này hữu ích, vui lòng cân nhắc đóng góp cho sự phát triển của nó.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "AI模型",
|
||||
"Attach file": "添加文件",
|
||||
"Attention to detail": "注重细节",
|
||||
"Attribute for Mail": "邮箱属性",
|
||||
"Attribute for Username": "用户名属性",
|
||||
"Audio": "语音",
|
||||
"August": "八月",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "竞技场评估",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "例如:(&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "例如:ALL",
|
||||
"Example: mail": "例如:mail",
|
||||
"Example: ou=users,dc=foo,dc=example": "例如:ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "例如:sAMAccountName 或 uid 或 userPrincipalName",
|
||||
"Exclude": "排除",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Batch size 决定了同时处理多少个文本请求。Batch size 越大,模型的性能和速度越快,但也需要更多内存。 (默认值:512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "本插件的背后开发者是社区中热情的志愿者。如果此插件有帮助到您,烦请考虑一下为它的开发做出贡献。",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "排行榜基于 Elo 评级系统并实时更新。",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "映射到用户登录时使用的邮箱的 LDAP 属性。",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "映射到用户登录时使用的用户名的 LDAP 属性。",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "排行榜目前处于 Beta 测试阶段,我们可能会在完善算法后调整评分计算方法。",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "最大文件大小(MB)。如果文件大小超过此限制,则无法上传该文件。",
|
||||
|
@ -90,6 +90,7 @@
|
||||
"Assistant": "助手",
|
||||
"Attach file": "附加檔案",
|
||||
"Attention to detail": "注重細節",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Username": "使用者名稱屬性",
|
||||
"Audio": "音訊",
|
||||
"August": "8 月",
|
||||
@ -390,6 +391,7 @@
|
||||
"Evaluations": "評估",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "範例:(&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "範例:ALL",
|
||||
"Example: mail": "範例:mail",
|
||||
"Example: ou=users,dc=foo,dc=example": "範例:ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "範例:sAMAccountName 或 uid 或 userPrincipalName",
|
||||
"Exclude": "排除",
|
||||
@ -896,6 +898,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "批次大小決定一次處理多少文字請求。較高的批次大小可以提高模型的效能和速度,但也需要更多記憶體。(預設:512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "這個外掛背後的開發者是來自社群的熱情志願者。如果您覺得這個外掛很有幫助,請考慮為其開發做出貢獻。",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "評估排行榜基於 Elo 評分系統,並即時更新。",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "映射到使用者用於登入的使用者名稱的 LDAP 屬性。",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "排行榜目前處於測試階段,我們可能會在改進演算法時調整評分計算方式。",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "檔案大小上限(MB)。如果檔案大小超過此限制,檔案將不會被上傳。",
|
||||
|
Loading…
Reference in New Issue
Block a user