fix(web): logic of disabling credential login (#244)
* fix(web): logic of disabling credential login If credentials are disabled, then don't show the email login form at all. If credentials are disabled and no social providers are present, show message saying none are available. * chore: update lang --------- Co-authored-by: Henry <henry_ball@hotmail.co.uk>
This commit is contained in:
@@ -329,6 +329,7 @@ checksums:
|
|||||||
Newsletter/singular: dcfb9666301924431ac8ae88e5b6f9d7
|
Newsletter/singular: dcfb9666301924431ac8ae88e5b6f9d7
|
||||||
Next%20Steps/singular: 12392fe73ae60b6e5a9d851256b8477e
|
Next%20Steps/singular: 12392fe73ae60b6e5a9d851256b8477e
|
||||||
No%20%7B0%7D/singular: a7a95e1dfdb4396da9e2be0e27f42323
|
No%20%7B0%7D/singular: a7a95e1dfdb4396da9e2be0e27f42323
|
||||||
|
No%20authentication%20methods%20are%20currently%20available/singular: f718c896810da3612202887f9a4374fa
|
||||||
No%20boards%20found/singular: e044088d2c51b6bdf660fafa86ee1e17
|
No%20boards%20found/singular: e044088d2c51b6bdf660fafa86ee1e17
|
||||||
No%20credit%20card%20required/singular: 2090aa4171dc0b60735069f89b592883
|
No%20credit%20card%20required/singular: 2090aa4171dc0b60735069f89b592883
|
||||||
No%20lists/singular: cedf633d99c77ff4356e089f2d98c0a6
|
No%20lists/singular: cedf633d99c77ff4356e089f2d98c0a6
|
||||||
|
|||||||
@@ -358,7 +358,16 @@ export function Auth({ setIsMagicLinkSent, isSignUp }: AuthProps) {
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<form onSubmit={handleSubmit(onSubmit)}>
|
<form onSubmit={handleSubmit(onSubmit)}>
|
||||||
{socialProviders?.length !== 0 && (
|
{!isCredentialsEnabled && socialProviders?.length === 0 && (
|
||||||
|
<div className="flex w-full items-center gap-4">
|
||||||
|
<div className="h-[1px] w-1/3 bg-light-600 dark:bg-dark-600" />
|
||||||
|
<span className="text-center text-sm text-light-900 dark:text-dark-900">
|
||||||
|
{t`No authentication methods are currently available`}
|
||||||
|
</span>
|
||||||
|
<div className="h-[1px] w-1/3 bg-light-600 dark:bg-dark-600" />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{!isCredentialsEnabled && socialProviders?.length !== 0 && (
|
||||||
<div className="mb-[1.5rem] flex w-full items-center gap-4">
|
<div className="mb-[1.5rem] flex w-full items-center gap-4">
|
||||||
<div className="h-[1px] w-full bg-light-600 dark:bg-dark-600" />
|
<div className="h-[1px] w-full bg-light-600 dark:bg-dark-600" />
|
||||||
<span className="text-sm text-light-900 dark:text-dark-900">
|
<span className="text-sm text-light-900 dark:text-dark-900">
|
||||||
@@ -381,46 +390,52 @@ export function Auth({ setIsMagicLinkSent, isSignUp }: AuthProps) {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<div>
|
|
||||||
<Input
|
|
||||||
{...register("email", { required: true })}
|
|
||||||
placeholder={t`Enter your email address`}
|
|
||||||
/>
|
|
||||||
{errors.email && (
|
|
||||||
<p className="mt-2 text-xs text-red-400">
|
|
||||||
{t`Please enter a valid email address`}
|
|
||||||
</p>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
{isCredentialsEnabled && (
|
{isCredentialsEnabled && (
|
||||||
<div>
|
<>
|
||||||
<Input
|
<div>
|
||||||
type="password"
|
<Input
|
||||||
{...register("password", { required: true })}
|
{...register("email", { required: true })}
|
||||||
placeholder={t`Enter your password`}
|
placeholder={t`Enter your email address`}
|
||||||
/>
|
/>
|
||||||
{errors.password && (
|
{errors.email && (
|
||||||
<p className="mt-2 text-xs text-red-400">
|
<p className="mt-2 text-xs text-red-400">
|
||||||
{errors.password.message ?? t`Please enter a valid password`}
|
{t`Please enter a valid email address`}
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<Input
|
||||||
|
type="password"
|
||||||
|
{...register("password", { required: true })}
|
||||||
|
placeholder={t`Enter your password`}
|
||||||
|
/>
|
||||||
|
{errors.password && (
|
||||||
|
<p className="mt-2 text-xs text-red-400">
|
||||||
|
{errors.password.message ??
|
||||||
|
t`Please enter a valid password`}
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
)}
|
)}
|
||||||
{loginError && (
|
{loginError && (
|
||||||
<p className="mt-2 text-xs text-red-400">{loginError}</p>
|
<p className="mt-2 text-xs text-red-400">{loginError}</p>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-[1.5rem] flex items-center gap-4">
|
{isCredentialsEnabled && (
|
||||||
<Button
|
<div className="mt-[1.5rem] flex items-center gap-4">
|
||||||
isLoading={isLoginWithEmailPending}
|
<Button
|
||||||
fullWidth
|
isLoading={isLoginWithEmailPending}
|
||||||
size="lg"
|
fullWidth
|
||||||
variant="secondary"
|
size="lg"
|
||||||
>
|
variant="secondary"
|
||||||
{isSignUp ? t`Sign up with ` : t`Continue with `}
|
>
|
||||||
{isMagicLinkMode ? t`magic link` : t`email`}
|
{isSignUp ? t`Sign up with ` : t`Continue with `}
|
||||||
</Button>
|
{isMagicLinkMode ? t`magic link` : t`email`}
|
||||||
</div>
|
</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -519,7 +519,7 @@ msgstr "Kontaktiere uns"
|
|||||||
msgid "Content Creation"
|
msgid "Content Creation"
|
||||||
msgstr "Content-Erstellung"
|
msgstr "Content-Erstellung"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Continue with "
|
msgid "Continue with "
|
||||||
msgstr "Fortfahren mit "
|
msgstr "Fortfahren mit "
|
||||||
|
|
||||||
@@ -790,7 +790,7 @@ msgstr "Workspace-URL bearbeiten"
|
|||||||
msgid "Editing"
|
msgid "Editing"
|
||||||
msgstr "Bearbeitung"
|
msgstr "Bearbeitung"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "email"
|
msgid "email"
|
||||||
msgstr "E-Mail"
|
msgstr "E-Mail"
|
||||||
|
|
||||||
@@ -810,11 +810,11 @@ msgstr "Geben Sie Ihr aktuelles Passwort ein"
|
|||||||
msgid "Enter your current password and choose a new secure password."
|
msgid "Enter your current password and choose a new secure password."
|
||||||
msgstr "Geben Sie Ihr aktuelles Passwort ein und wählen Sie ein neues sicheres Passwort."
|
msgstr "Geben Sie Ihr aktuelles Passwort ein und wählen Sie ein neues sicheres Passwort."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:387
|
#: src/components/AuthForm.tsx:398
|
||||||
msgid "Enter your email address"
|
msgid "Enter your email address"
|
||||||
msgstr "Gib deine E-Mail-Adresse ein"
|
msgstr "Gib deine E-Mail-Adresse ein"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:375
|
#: src/components/AuthForm.tsx:384
|
||||||
msgid "Enter your name"
|
msgid "Enter your name"
|
||||||
msgstr "Gib deinen Namen ein"
|
msgstr "Gib deinen Namen ein"
|
||||||
|
|
||||||
@@ -822,7 +822,7 @@ msgstr "Gib deinen Namen ein"
|
|||||||
msgid "Enter your new password"
|
msgid "Enter your new password"
|
||||||
msgstr "Geben Sie Ihr neues Passwort ein"
|
msgstr "Geben Sie Ihr neues Passwort ein"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:400
|
#: src/components/AuthForm.tsx:411
|
||||||
msgid "Enter your password"
|
msgid "Enter your password"
|
||||||
msgstr "Gib dein Passwort ein"
|
msgstr "Gib dein Passwort ein"
|
||||||
|
|
||||||
@@ -1326,7 +1326,7 @@ msgstr "Von Teams weltweit geliebt"
|
|||||||
msgid "Low Priority"
|
msgid "Low Priority"
|
||||||
msgstr "Niedrige Priorität"
|
msgstr "Niedrige Priorität"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "magic link"
|
msgid "magic link"
|
||||||
msgstr "Magic Link"
|
msgstr "Magic Link"
|
||||||
|
|
||||||
@@ -1457,6 +1457,10 @@ msgstr "Nächste Schritte"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Keine {0}"
|
msgstr "Keine {0}"
|
||||||
|
|
||||||
|
#: src/components/AuthForm.tsx:365
|
||||||
|
msgid "No authentication methods are currently available"
|
||||||
|
msgstr "Derzeit sind keine Authentifizierungsmethoden verfügbar"
|
||||||
|
|
||||||
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
||||||
msgid "No boards found"
|
msgid "No boards found"
|
||||||
msgstr "Keine Boards gefunden"
|
msgstr "Keine Boards gefunden"
|
||||||
@@ -1497,7 +1501,7 @@ msgstr "Open Source"
|
|||||||
msgid "Open Source Friends"
|
msgid "Open Source Friends"
|
||||||
msgstr "Open-Source-Freunde"
|
msgstr "Open-Source-Freunde"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:365
|
#: src/components/AuthForm.tsx:374
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "oder"
|
msgstr "oder"
|
||||||
|
|
||||||
@@ -1579,15 +1583,15 @@ msgstr "Plattform"
|
|||||||
msgid "Please confirm your new password"
|
msgid "Please confirm your new password"
|
||||||
msgstr "Bitte bestätigen Sie Ihr neues Passwort"
|
msgstr "Bitte bestätigen Sie Ihr neues Passwort"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:391
|
#: src/components/AuthForm.tsx:402
|
||||||
msgid "Please enter a valid email address"
|
msgid "Please enter a valid email address"
|
||||||
msgstr "Bitte gib eine gültige E-Mail-Adresse ein"
|
msgstr "Bitte gib eine gültige E-Mail-Adresse ein"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:379
|
#: src/components/AuthForm.tsx:388
|
||||||
msgid "Please enter a valid name"
|
msgid "Please enter a valid name"
|
||||||
msgstr "Bitte gib einen gültigen Namen ein"
|
msgstr "Bitte gib einen gültigen Namen ein"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:404
|
#: src/components/AuthForm.tsx:416
|
||||||
msgid "Please enter a valid password"
|
msgid "Please enter a valid password"
|
||||||
msgstr "Bitte gib ein gültiges Passwort ein"
|
msgstr "Bitte gib ein gültiges Passwort ein"
|
||||||
|
|
||||||
@@ -1886,7 +1890,7 @@ msgstr "Registrierung deaktiviert"
|
|||||||
msgid "Sign up is currently disabled. Please try again later."
|
msgid "Sign up is currently disabled. Please try again later."
|
||||||
msgstr "Die Registrierung ist derzeit deaktiviert. Bitte versuche es später erneut."
|
msgstr "Die Registrierung ist derzeit deaktiviert. Bitte versuche es später erneut."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Sign up with "
|
msgid "Sign up with "
|
||||||
msgstr "Registrieren mit "
|
msgstr "Registrieren mit "
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -584,7 +584,7 @@ msgstr "Contact us"
|
|||||||
msgid "Content Creation"
|
msgid "Content Creation"
|
||||||
msgstr "Content Creation"
|
msgstr "Content Creation"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Continue with "
|
msgid "Continue with "
|
||||||
msgstr "Continue with "
|
msgstr "Continue with "
|
||||||
|
|
||||||
@@ -879,7 +879,7 @@ msgstr "Edit workspace URL"
|
|||||||
msgid "Editing"
|
msgid "Editing"
|
||||||
msgstr "Editing"
|
msgstr "Editing"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "email"
|
msgid "email"
|
||||||
msgstr "email"
|
msgstr "email"
|
||||||
|
|
||||||
@@ -899,11 +899,11 @@ msgstr "Enter your current password"
|
|||||||
msgid "Enter your current password and choose a new secure password."
|
msgid "Enter your current password and choose a new secure password."
|
||||||
msgstr "Enter your current password and choose a new secure password."
|
msgstr "Enter your current password and choose a new secure password."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:387
|
#: src/components/AuthForm.tsx:398
|
||||||
msgid "Enter your email address"
|
msgid "Enter your email address"
|
||||||
msgstr "Enter your email address"
|
msgstr "Enter your email address"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:375
|
#: src/components/AuthForm.tsx:384
|
||||||
msgid "Enter your name"
|
msgid "Enter your name"
|
||||||
msgstr "Enter your name"
|
msgstr "Enter your name"
|
||||||
|
|
||||||
@@ -911,7 +911,7 @@ msgstr "Enter your name"
|
|||||||
msgid "Enter your new password"
|
msgid "Enter your new password"
|
||||||
msgstr "Enter your new password"
|
msgstr "Enter your new password"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:400
|
#: src/components/AuthForm.tsx:411
|
||||||
msgid "Enter your password"
|
msgid "Enter your password"
|
||||||
msgstr "Enter your password"
|
msgstr "Enter your password"
|
||||||
|
|
||||||
@@ -1437,7 +1437,7 @@ msgstr "Loved by teams worldwide"
|
|||||||
msgid "Low Priority"
|
msgid "Low Priority"
|
||||||
msgstr "Low Priority"
|
msgstr "Low Priority"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "magic link"
|
msgid "magic link"
|
||||||
msgstr "magic link"
|
msgstr "magic link"
|
||||||
|
|
||||||
@@ -1584,6 +1584,10 @@ msgstr "Next Steps"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "No {0}"
|
msgstr "No {0}"
|
||||||
|
|
||||||
|
#: src/components/AuthForm.tsx:365
|
||||||
|
msgid "No authentication methods are currently available"
|
||||||
|
msgstr "No authentication methods are currently available"
|
||||||
|
|
||||||
#: src/views/boards/components/BoardsList.tsx:35
|
#: src/views/boards/components/BoardsList.tsx:35
|
||||||
#~ msgid "No boards"
|
#~ msgid "No boards"
|
||||||
#~ msgstr "No boards"
|
#~ msgstr "No boards"
|
||||||
@@ -1628,7 +1632,7 @@ msgstr "Open source"
|
|||||||
msgid "Open Source Friends"
|
msgid "Open Source Friends"
|
||||||
msgstr "Open Source Friends"
|
msgstr "Open Source Friends"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:365
|
#: src/components/AuthForm.tsx:374
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "or"
|
msgstr "or"
|
||||||
|
|
||||||
@@ -1710,15 +1714,15 @@ msgstr "Platform"
|
|||||||
msgid "Please confirm your new password"
|
msgid "Please confirm your new password"
|
||||||
msgstr "Please confirm your new password"
|
msgstr "Please confirm your new password"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:391
|
#: src/components/AuthForm.tsx:402
|
||||||
msgid "Please enter a valid email address"
|
msgid "Please enter a valid email address"
|
||||||
msgstr "Please enter a valid email address"
|
msgstr "Please enter a valid email address"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:379
|
#: src/components/AuthForm.tsx:388
|
||||||
msgid "Please enter a valid name"
|
msgid "Please enter a valid name"
|
||||||
msgstr "Please enter a valid name"
|
msgstr "Please enter a valid name"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:404
|
#: src/components/AuthForm.tsx:416
|
||||||
msgid "Please enter a valid password"
|
msgid "Please enter a valid password"
|
||||||
msgstr "Please enter a valid password"
|
msgstr "Please enter a valid password"
|
||||||
|
|
||||||
@@ -2037,7 +2041,7 @@ msgstr "Sign up disabled"
|
|||||||
msgid "Sign up is currently disabled. Please try again later."
|
msgid "Sign up is currently disabled. Please try again later."
|
||||||
msgstr "Sign up is currently disabled. Please try again later."
|
msgstr "Sign up is currently disabled. Please try again later."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Sign up with "
|
msgid "Sign up with "
|
||||||
msgstr "Sign up with "
|
msgstr "Sign up with "
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -519,7 +519,7 @@ msgstr "Contáctanos"
|
|||||||
msgid "Content Creation"
|
msgid "Content Creation"
|
||||||
msgstr "Creación de contenido"
|
msgstr "Creación de contenido"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Continue with "
|
msgid "Continue with "
|
||||||
msgstr "Continuar con "
|
msgstr "Continuar con "
|
||||||
|
|
||||||
@@ -790,7 +790,7 @@ msgstr "Editar URL del espacio de trabajo"
|
|||||||
msgid "Editing"
|
msgid "Editing"
|
||||||
msgstr "Editando"
|
msgstr "Editando"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "email"
|
msgid "email"
|
||||||
msgstr "correo electrónico"
|
msgstr "correo electrónico"
|
||||||
|
|
||||||
@@ -810,11 +810,11 @@ msgstr "Introduce tu contraseña actual"
|
|||||||
msgid "Enter your current password and choose a new secure password."
|
msgid "Enter your current password and choose a new secure password."
|
||||||
msgstr "Introduce tu contraseña actual y elige una nueva contraseña segura."
|
msgstr "Introduce tu contraseña actual y elige una nueva contraseña segura."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:387
|
#: src/components/AuthForm.tsx:398
|
||||||
msgid "Enter your email address"
|
msgid "Enter your email address"
|
||||||
msgstr "Introduce tu dirección de correo electrónico"
|
msgstr "Introduce tu dirección de correo electrónico"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:375
|
#: src/components/AuthForm.tsx:384
|
||||||
msgid "Enter your name"
|
msgid "Enter your name"
|
||||||
msgstr "Introduce tu nombre"
|
msgstr "Introduce tu nombre"
|
||||||
|
|
||||||
@@ -822,7 +822,7 @@ msgstr "Introduce tu nombre"
|
|||||||
msgid "Enter your new password"
|
msgid "Enter your new password"
|
||||||
msgstr "Introduce tu nueva contraseña"
|
msgstr "Introduce tu nueva contraseña"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:400
|
#: src/components/AuthForm.tsx:411
|
||||||
msgid "Enter your password"
|
msgid "Enter your password"
|
||||||
msgstr "Introduce tu contraseña"
|
msgstr "Introduce tu contraseña"
|
||||||
|
|
||||||
@@ -1326,7 +1326,7 @@ msgstr "Amado por equipos en todo el mundo"
|
|||||||
msgid "Low Priority"
|
msgid "Low Priority"
|
||||||
msgstr "Prioridad baja"
|
msgstr "Prioridad baja"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "magic link"
|
msgid "magic link"
|
||||||
msgstr "enlace mágico"
|
msgstr "enlace mágico"
|
||||||
|
|
||||||
@@ -1457,6 +1457,10 @@ msgstr "Próximos pasos"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Sin {0}"
|
msgstr "Sin {0}"
|
||||||
|
|
||||||
|
#: src/components/AuthForm.tsx:365
|
||||||
|
msgid "No authentication methods are currently available"
|
||||||
|
msgstr "No hay métodos de autenticación disponibles actualmente"
|
||||||
|
|
||||||
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
||||||
msgid "No boards found"
|
msgid "No boards found"
|
||||||
msgstr "No se encontraron tableros"
|
msgstr "No se encontraron tableros"
|
||||||
@@ -1497,7 +1501,7 @@ msgstr "Código abierto"
|
|||||||
msgid "Open Source Friends"
|
msgid "Open Source Friends"
|
||||||
msgstr "Amigos de código abierto"
|
msgstr "Amigos de código abierto"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:365
|
#: src/components/AuthForm.tsx:374
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "o"
|
msgstr "o"
|
||||||
|
|
||||||
@@ -1579,15 +1583,15 @@ msgstr "Plataforma"
|
|||||||
msgid "Please confirm your new password"
|
msgid "Please confirm your new password"
|
||||||
msgstr "Por favor, confirma tu nueva contraseña"
|
msgstr "Por favor, confirma tu nueva contraseña"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:391
|
#: src/components/AuthForm.tsx:402
|
||||||
msgid "Please enter a valid email address"
|
msgid "Please enter a valid email address"
|
||||||
msgstr "Por favor, introduce una dirección de correo electrónico válida"
|
msgstr "Por favor, introduce una dirección de correo electrónico válida"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:379
|
#: src/components/AuthForm.tsx:388
|
||||||
msgid "Please enter a valid name"
|
msgid "Please enter a valid name"
|
||||||
msgstr "Por favor, introduce un nombre válido"
|
msgstr "Por favor, introduce un nombre válido"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:404
|
#: src/components/AuthForm.tsx:416
|
||||||
msgid "Please enter a valid password"
|
msgid "Please enter a valid password"
|
||||||
msgstr "Por favor, introduce una contraseña válida"
|
msgstr "Por favor, introduce una contraseña válida"
|
||||||
|
|
||||||
@@ -1886,7 +1890,7 @@ msgstr "Registro deshabilitado"
|
|||||||
msgid "Sign up is currently disabled. Please try again later."
|
msgid "Sign up is currently disabled. Please try again later."
|
||||||
msgstr "El registro está actualmente deshabilitado. Por favor, inténtalo de nuevo más tarde."
|
msgstr "El registro está actualmente deshabilitado. Por favor, inténtalo de nuevo más tarde."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Sign up with "
|
msgid "Sign up with "
|
||||||
msgstr "Registrarse con "
|
msgstr "Registrarse con "
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -519,7 +519,7 @@ msgstr "Contactez-nous"
|
|||||||
msgid "Content Creation"
|
msgid "Content Creation"
|
||||||
msgstr "Création de contenu"
|
msgstr "Création de contenu"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Continue with "
|
msgid "Continue with "
|
||||||
msgstr "Continuer avec "
|
msgstr "Continuer avec "
|
||||||
|
|
||||||
@@ -790,7 +790,7 @@ msgstr "Modifier l'URL de l'espace de travail"
|
|||||||
msgid "Editing"
|
msgid "Editing"
|
||||||
msgstr "Édition"
|
msgstr "Édition"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "email"
|
msgid "email"
|
||||||
msgstr "e-mail"
|
msgstr "e-mail"
|
||||||
|
|
||||||
@@ -810,11 +810,11 @@ msgstr "Saisissez votre mot de passe actuel"
|
|||||||
msgid "Enter your current password and choose a new secure password."
|
msgid "Enter your current password and choose a new secure password."
|
||||||
msgstr "Saisissez votre mot de passe actuel et choisissez un nouveau mot de passe sécurisé."
|
msgstr "Saisissez votre mot de passe actuel et choisissez un nouveau mot de passe sécurisé."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:387
|
#: src/components/AuthForm.tsx:398
|
||||||
msgid "Enter your email address"
|
msgid "Enter your email address"
|
||||||
msgstr "Saisissez votre adresse e-mail"
|
msgstr "Saisissez votre adresse e-mail"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:375
|
#: src/components/AuthForm.tsx:384
|
||||||
msgid "Enter your name"
|
msgid "Enter your name"
|
||||||
msgstr "Saisissez votre nom"
|
msgstr "Saisissez votre nom"
|
||||||
|
|
||||||
@@ -822,7 +822,7 @@ msgstr "Saisissez votre nom"
|
|||||||
msgid "Enter your new password"
|
msgid "Enter your new password"
|
||||||
msgstr "Saisissez votre nouveau mot de passe"
|
msgstr "Saisissez votre nouveau mot de passe"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:400
|
#: src/components/AuthForm.tsx:411
|
||||||
msgid "Enter your password"
|
msgid "Enter your password"
|
||||||
msgstr "Saisissez votre mot de passe"
|
msgstr "Saisissez votre mot de passe"
|
||||||
|
|
||||||
@@ -1326,7 +1326,7 @@ msgstr "Adoré par les équipes du monde entier"
|
|||||||
msgid "Low Priority"
|
msgid "Low Priority"
|
||||||
msgstr "Priorité basse"
|
msgstr "Priorité basse"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "magic link"
|
msgid "magic link"
|
||||||
msgstr "lien magique"
|
msgstr "lien magique"
|
||||||
|
|
||||||
@@ -1457,6 +1457,10 @@ msgstr "Prochaines étapes"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Aucun {0}"
|
msgstr "Aucun {0}"
|
||||||
|
|
||||||
|
#: src/components/AuthForm.tsx:365
|
||||||
|
msgid "No authentication methods are currently available"
|
||||||
|
msgstr "Aucune méthode d'authentification n'est actuellement disponible"
|
||||||
|
|
||||||
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
||||||
msgid "No boards found"
|
msgid "No boards found"
|
||||||
msgstr "Aucun tableau trouvé"
|
msgstr "Aucun tableau trouvé"
|
||||||
@@ -1497,7 +1501,7 @@ msgstr "Open source"
|
|||||||
msgid "Open Source Friends"
|
msgid "Open Source Friends"
|
||||||
msgstr "Amis Open Source"
|
msgstr "Amis Open Source"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:365
|
#: src/components/AuthForm.tsx:374
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "ou"
|
msgstr "ou"
|
||||||
|
|
||||||
@@ -1579,15 +1583,15 @@ msgstr "Plateforme"
|
|||||||
msgid "Please confirm your new password"
|
msgid "Please confirm your new password"
|
||||||
msgstr "Veuillez confirmer votre nouveau mot de passe"
|
msgstr "Veuillez confirmer votre nouveau mot de passe"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:391
|
#: src/components/AuthForm.tsx:402
|
||||||
msgid "Please enter a valid email address"
|
msgid "Please enter a valid email address"
|
||||||
msgstr "Veuillez saisir une adresse e-mail valide"
|
msgstr "Veuillez saisir une adresse e-mail valide"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:379
|
#: src/components/AuthForm.tsx:388
|
||||||
msgid "Please enter a valid name"
|
msgid "Please enter a valid name"
|
||||||
msgstr "Veuillez saisir un nom valide"
|
msgstr "Veuillez saisir un nom valide"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:404
|
#: src/components/AuthForm.tsx:416
|
||||||
msgid "Please enter a valid password"
|
msgid "Please enter a valid password"
|
||||||
msgstr "Veuillez saisir un mot de passe valide"
|
msgstr "Veuillez saisir un mot de passe valide"
|
||||||
|
|
||||||
@@ -1886,7 +1890,7 @@ msgstr "Inscription désactivée"
|
|||||||
msgid "Sign up is currently disabled. Please try again later."
|
msgid "Sign up is currently disabled. Please try again later."
|
||||||
msgstr "L'inscription est actuellement désactivée. Veuillez réessayer plus tard."
|
msgstr "L'inscription est actuellement désactivée. Veuillez réessayer plus tard."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Sign up with "
|
msgid "Sign up with "
|
||||||
msgstr "S'inscrire avec "
|
msgstr "S'inscrire avec "
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -519,7 +519,7 @@ msgstr "Contattaci"
|
|||||||
msgid "Content Creation"
|
msgid "Content Creation"
|
||||||
msgstr "Creazione contenuti"
|
msgstr "Creazione contenuti"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Continue with "
|
msgid "Continue with "
|
||||||
msgstr "Continua con "
|
msgstr "Continua con "
|
||||||
|
|
||||||
@@ -790,7 +790,7 @@ msgstr "Modifica URL dell'area di lavoro"
|
|||||||
msgid "Editing"
|
msgid "Editing"
|
||||||
msgstr "Modifica"
|
msgstr "Modifica"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "email"
|
msgid "email"
|
||||||
msgstr "email"
|
msgstr "email"
|
||||||
|
|
||||||
@@ -810,11 +810,11 @@ msgstr "Inserisci la tua password attuale"
|
|||||||
msgid "Enter your current password and choose a new secure password."
|
msgid "Enter your current password and choose a new secure password."
|
||||||
msgstr "Inserisci la tua password attuale e scegli una nuova password sicura."
|
msgstr "Inserisci la tua password attuale e scegli una nuova password sicura."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:387
|
#: src/components/AuthForm.tsx:398
|
||||||
msgid "Enter your email address"
|
msgid "Enter your email address"
|
||||||
msgstr "Inserisci il tuo indirizzo email"
|
msgstr "Inserisci il tuo indirizzo email"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:375
|
#: src/components/AuthForm.tsx:384
|
||||||
msgid "Enter your name"
|
msgid "Enter your name"
|
||||||
msgstr "Inserisci il tuo nome"
|
msgstr "Inserisci il tuo nome"
|
||||||
|
|
||||||
@@ -822,7 +822,7 @@ msgstr "Inserisci il tuo nome"
|
|||||||
msgid "Enter your new password"
|
msgid "Enter your new password"
|
||||||
msgstr "Inserisci la tua nuova password"
|
msgstr "Inserisci la tua nuova password"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:400
|
#: src/components/AuthForm.tsx:411
|
||||||
msgid "Enter your password"
|
msgid "Enter your password"
|
||||||
msgstr "Inserisci la tua password"
|
msgstr "Inserisci la tua password"
|
||||||
|
|
||||||
@@ -1326,7 +1326,7 @@ msgstr "Amato dai team di tutto il mondo"
|
|||||||
msgid "Low Priority"
|
msgid "Low Priority"
|
||||||
msgstr "Bassa priorità"
|
msgstr "Bassa priorità"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "magic link"
|
msgid "magic link"
|
||||||
msgstr "link magico"
|
msgstr "link magico"
|
||||||
|
|
||||||
@@ -1457,6 +1457,10 @@ msgstr "Prossimi passi"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Nessun {0}"
|
msgstr "Nessun {0}"
|
||||||
|
|
||||||
|
#: src/components/AuthForm.tsx:365
|
||||||
|
msgid "No authentication methods are currently available"
|
||||||
|
msgstr "Nessun metodo di autenticazione è attualmente disponibile"
|
||||||
|
|
||||||
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
||||||
msgid "No boards found"
|
msgid "No boards found"
|
||||||
msgstr "Nessuna bacheca trovata"
|
msgstr "Nessuna bacheca trovata"
|
||||||
@@ -1497,7 +1501,7 @@ msgstr "Open source"
|
|||||||
msgid "Open Source Friends"
|
msgid "Open Source Friends"
|
||||||
msgstr "Amici Open Source"
|
msgstr "Amici Open Source"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:365
|
#: src/components/AuthForm.tsx:374
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "o"
|
msgstr "o"
|
||||||
|
|
||||||
@@ -1579,15 +1583,15 @@ msgstr "Piattaforma"
|
|||||||
msgid "Please confirm your new password"
|
msgid "Please confirm your new password"
|
||||||
msgstr "Conferma la tua nuova password"
|
msgstr "Conferma la tua nuova password"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:391
|
#: src/components/AuthForm.tsx:402
|
||||||
msgid "Please enter a valid email address"
|
msgid "Please enter a valid email address"
|
||||||
msgstr "Inserisci un indirizzo email valido"
|
msgstr "Inserisci un indirizzo email valido"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:379
|
#: src/components/AuthForm.tsx:388
|
||||||
msgid "Please enter a valid name"
|
msgid "Please enter a valid name"
|
||||||
msgstr "Inserisci un nome valido"
|
msgstr "Inserisci un nome valido"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:404
|
#: src/components/AuthForm.tsx:416
|
||||||
msgid "Please enter a valid password"
|
msgid "Please enter a valid password"
|
||||||
msgstr "Inserisci una password valida"
|
msgstr "Inserisci una password valida"
|
||||||
|
|
||||||
@@ -1886,7 +1890,7 @@ msgstr "Registrazione disabilitata"
|
|||||||
msgid "Sign up is currently disabled. Please try again later."
|
msgid "Sign up is currently disabled. Please try again later."
|
||||||
msgstr "La registrazione è attualmente disabilitata. Riprova più tardi."
|
msgstr "La registrazione è attualmente disabilitata. Riprova più tardi."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Sign up with "
|
msgid "Sign up with "
|
||||||
msgstr "Registrati con "
|
msgstr "Registrati con "
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -519,7 +519,7 @@ msgstr "Neem contact op"
|
|||||||
msgid "Content Creation"
|
msgid "Content Creation"
|
||||||
msgstr "Content creatie"
|
msgstr "Content creatie"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Continue with "
|
msgid "Continue with "
|
||||||
msgstr "Doorgaan met "
|
msgstr "Doorgaan met "
|
||||||
|
|
||||||
@@ -790,7 +790,7 @@ msgstr "Werkruimte-URL bewerken"
|
|||||||
msgid "Editing"
|
msgid "Editing"
|
||||||
msgstr "Bewerken"
|
msgstr "Bewerken"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "email"
|
msgid "email"
|
||||||
msgstr "e-mail"
|
msgstr "e-mail"
|
||||||
|
|
||||||
@@ -810,11 +810,11 @@ msgstr "Voer je huidige wachtwoord in"
|
|||||||
msgid "Enter your current password and choose a new secure password."
|
msgid "Enter your current password and choose a new secure password."
|
||||||
msgstr "Voer je huidige wachtwoord in en kies een nieuw veilig wachtwoord."
|
msgstr "Voer je huidige wachtwoord in en kies een nieuw veilig wachtwoord."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:387
|
#: src/components/AuthForm.tsx:398
|
||||||
msgid "Enter your email address"
|
msgid "Enter your email address"
|
||||||
msgstr "Voer je e-mailadres in"
|
msgstr "Voer je e-mailadres in"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:375
|
#: src/components/AuthForm.tsx:384
|
||||||
msgid "Enter your name"
|
msgid "Enter your name"
|
||||||
msgstr "Voer je naam in"
|
msgstr "Voer je naam in"
|
||||||
|
|
||||||
@@ -822,7 +822,7 @@ msgstr "Voer je naam in"
|
|||||||
msgid "Enter your new password"
|
msgid "Enter your new password"
|
||||||
msgstr "Voer je nieuwe wachtwoord in"
|
msgstr "Voer je nieuwe wachtwoord in"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:400
|
#: src/components/AuthForm.tsx:411
|
||||||
msgid "Enter your password"
|
msgid "Enter your password"
|
||||||
msgstr "Voer je wachtwoord in"
|
msgstr "Voer je wachtwoord in"
|
||||||
|
|
||||||
@@ -1326,7 +1326,7 @@ msgstr "Geliefd door teams wereldwijd"
|
|||||||
msgid "Low Priority"
|
msgid "Low Priority"
|
||||||
msgstr "Lage prioriteit"
|
msgstr "Lage prioriteit"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "magic link"
|
msgid "magic link"
|
||||||
msgstr "magische link"
|
msgstr "magische link"
|
||||||
|
|
||||||
@@ -1457,6 +1457,10 @@ msgstr "Volgende stappen"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Geen {0}"
|
msgstr "Geen {0}"
|
||||||
|
|
||||||
|
#: src/components/AuthForm.tsx:365
|
||||||
|
msgid "No authentication methods are currently available"
|
||||||
|
msgstr "Er zijn momenteel geen authenticatiemethoden beschikbaar"
|
||||||
|
|
||||||
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
||||||
msgid "No boards found"
|
msgid "No boards found"
|
||||||
msgstr "Geen borden gevonden"
|
msgstr "Geen borden gevonden"
|
||||||
@@ -1497,7 +1501,7 @@ msgstr "Open source"
|
|||||||
msgid "Open Source Friends"
|
msgid "Open Source Friends"
|
||||||
msgstr "Open Source Vrienden"
|
msgstr "Open Source Vrienden"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:365
|
#: src/components/AuthForm.tsx:374
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "of"
|
msgstr "of"
|
||||||
|
|
||||||
@@ -1579,15 +1583,15 @@ msgstr "Platform"
|
|||||||
msgid "Please confirm your new password"
|
msgid "Please confirm your new password"
|
||||||
msgstr "Bevestig je nieuwe wachtwoord"
|
msgstr "Bevestig je nieuwe wachtwoord"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:391
|
#: src/components/AuthForm.tsx:402
|
||||||
msgid "Please enter a valid email address"
|
msgid "Please enter a valid email address"
|
||||||
msgstr "Voer een geldig e-mailadres in"
|
msgstr "Voer een geldig e-mailadres in"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:379
|
#: src/components/AuthForm.tsx:388
|
||||||
msgid "Please enter a valid name"
|
msgid "Please enter a valid name"
|
||||||
msgstr "Voer een geldige naam in"
|
msgstr "Voer een geldige naam in"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:404
|
#: src/components/AuthForm.tsx:416
|
||||||
msgid "Please enter a valid password"
|
msgid "Please enter a valid password"
|
||||||
msgstr "Voer een geldig wachtwoord in"
|
msgstr "Voer een geldig wachtwoord in"
|
||||||
|
|
||||||
@@ -1886,7 +1890,7 @@ msgstr "Registreren uitgeschakeld"
|
|||||||
msgid "Sign up is currently disabled. Please try again later."
|
msgid "Sign up is currently disabled. Please try again later."
|
||||||
msgstr "Registreren is momenteel uitgeschakeld. Probeer het later opnieuw."
|
msgstr "Registreren is momenteel uitgeschakeld. Probeer het later opnieuw."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Sign up with "
|
msgid "Sign up with "
|
||||||
msgstr "Registreren met "
|
msgstr "Registreren met "
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -524,7 +524,7 @@ msgstr "Skontaktuj się z nami"
|
|||||||
msgid "Content Creation"
|
msgid "Content Creation"
|
||||||
msgstr "Tworzenie treści"
|
msgstr "Tworzenie treści"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Continue with "
|
msgid "Continue with "
|
||||||
msgstr "Kontynuuj z "
|
msgstr "Kontynuuj z "
|
||||||
|
|
||||||
@@ -795,7 +795,7 @@ msgstr "Edytuj URL przestrzeni roboczej"
|
|||||||
msgid "Editing"
|
msgid "Editing"
|
||||||
msgstr "Edycja"
|
msgstr "Edycja"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "email"
|
msgid "email"
|
||||||
msgstr "email"
|
msgstr "email"
|
||||||
|
|
||||||
@@ -815,11 +815,11 @@ msgstr "Wprowadź swoje obecne hasło"
|
|||||||
msgid "Enter your current password and choose a new secure password."
|
msgid "Enter your current password and choose a new secure password."
|
||||||
msgstr "Wprowadź swoje obecne hasło i wybierz nowe, bezpieczne hasło."
|
msgstr "Wprowadź swoje obecne hasło i wybierz nowe, bezpieczne hasło."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:387
|
#: src/components/AuthForm.tsx:398
|
||||||
msgid "Enter your email address"
|
msgid "Enter your email address"
|
||||||
msgstr "Wprowadź swój adres e-mail"
|
msgstr "Wprowadź swój adres e-mail"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:375
|
#: src/components/AuthForm.tsx:384
|
||||||
msgid "Enter your name"
|
msgid "Enter your name"
|
||||||
msgstr "Wprowadź swoje imię"
|
msgstr "Wprowadź swoje imię"
|
||||||
|
|
||||||
@@ -827,7 +827,7 @@ msgstr "Wprowadź swoje imię"
|
|||||||
msgid "Enter your new password"
|
msgid "Enter your new password"
|
||||||
msgstr "Wprowadź swoje nowe hasło"
|
msgstr "Wprowadź swoje nowe hasło"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:400
|
#: src/components/AuthForm.tsx:411
|
||||||
msgid "Enter your password"
|
msgid "Enter your password"
|
||||||
msgstr "Wprowadź swoje hasło"
|
msgstr "Wprowadź swoje hasło"
|
||||||
|
|
||||||
@@ -1331,7 +1331,7 @@ msgstr "Uwielbiane przez zespoły na całym świecie"
|
|||||||
msgid "Low Priority"
|
msgid "Low Priority"
|
||||||
msgstr "Niski priorytet"
|
msgstr "Niski priorytet"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "magic link"
|
msgid "magic link"
|
||||||
msgstr "magiczny link"
|
msgstr "magiczny link"
|
||||||
|
|
||||||
@@ -1462,6 +1462,10 @@ msgstr "Następne kroki"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Brak {0}"
|
msgstr "Brak {0}"
|
||||||
|
|
||||||
|
#: src/components/AuthForm.tsx:365
|
||||||
|
msgid "No authentication methods are currently available"
|
||||||
|
msgstr "Obecnie brak dostępnych metod uwierzytelniania"
|
||||||
|
|
||||||
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
||||||
msgid "No boards found"
|
msgid "No boards found"
|
||||||
msgstr "Nie znaleziono tablic"
|
msgstr "Nie znaleziono tablic"
|
||||||
@@ -1502,7 +1506,7 @@ msgstr "Otwartoźródłowe"
|
|||||||
msgid "Open Source Friends"
|
msgid "Open Source Friends"
|
||||||
msgstr "Przyjaciele Open Source"
|
msgstr "Przyjaciele Open Source"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:365
|
#: src/components/AuthForm.tsx:374
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "lub"
|
msgstr "lub"
|
||||||
|
|
||||||
@@ -1584,15 +1588,15 @@ msgstr "Platforma"
|
|||||||
msgid "Please confirm your new password"
|
msgid "Please confirm your new password"
|
||||||
msgstr "Proszę potwierdzić nowe hasło"
|
msgstr "Proszę potwierdzić nowe hasło"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:391
|
#: src/components/AuthForm.tsx:402
|
||||||
msgid "Please enter a valid email address"
|
msgid "Please enter a valid email address"
|
||||||
msgstr "Proszę wprowadzić prawidłowy adres e-mail"
|
msgstr "Proszę wprowadzić prawidłowy adres e-mail"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:379
|
#: src/components/AuthForm.tsx:388
|
||||||
msgid "Please enter a valid name"
|
msgid "Please enter a valid name"
|
||||||
msgstr "Proszę wprowadzić poprawne imię"
|
msgstr "Proszę wprowadzić poprawne imię"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:404
|
#: src/components/AuthForm.tsx:416
|
||||||
msgid "Please enter a valid password"
|
msgid "Please enter a valid password"
|
||||||
msgstr "Proszę wprowadzić poprawne hasło"
|
msgstr "Proszę wprowadzić poprawne hasło"
|
||||||
|
|
||||||
@@ -1891,7 +1895,7 @@ msgstr "Rejestracja wyłączona"
|
|||||||
msgid "Sign up is currently disabled. Please try again later."
|
msgid "Sign up is currently disabled. Please try again later."
|
||||||
msgstr "Rejestracja jest obecnie wyłączona. Spróbuj ponownie później."
|
msgstr "Rejestracja jest obecnie wyłączona. Spróbuj ponownie później."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Sign up with "
|
msgid "Sign up with "
|
||||||
msgstr "Zarejestruj się za pomocą "
|
msgstr "Zarejestruj się za pomocą "
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -519,7 +519,7 @@ msgstr "Свяжитесь с нами"
|
|||||||
msgid "Content Creation"
|
msgid "Content Creation"
|
||||||
msgstr "Создание контента"
|
msgstr "Создание контента"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Continue with "
|
msgid "Continue with "
|
||||||
msgstr "Продолжить с "
|
msgstr "Продолжить с "
|
||||||
|
|
||||||
@@ -790,7 +790,7 @@ msgstr "Редактировать URL рабочей области"
|
|||||||
msgid "Editing"
|
msgid "Editing"
|
||||||
msgstr "Редактирование"
|
msgstr "Редактирование"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "email"
|
msgid "email"
|
||||||
msgstr "email"
|
msgstr "email"
|
||||||
|
|
||||||
@@ -810,11 +810,11 @@ msgstr "Введите ваш текущий пароль"
|
|||||||
msgid "Enter your current password and choose a new secure password."
|
msgid "Enter your current password and choose a new secure password."
|
||||||
msgstr "Введите ваш текущий пароль и выберите новый безопасный пароль."
|
msgstr "Введите ваш текущий пароль и выберите новый безопасный пароль."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:387
|
#: src/components/AuthForm.tsx:398
|
||||||
msgid "Enter your email address"
|
msgid "Enter your email address"
|
||||||
msgstr "Введите ваш адрес электронной почты"
|
msgstr "Введите ваш адрес электронной почты"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:375
|
#: src/components/AuthForm.tsx:384
|
||||||
msgid "Enter your name"
|
msgid "Enter your name"
|
||||||
msgstr "Введите ваше имя"
|
msgstr "Введите ваше имя"
|
||||||
|
|
||||||
@@ -822,7 +822,7 @@ msgstr "Введите ваше имя"
|
|||||||
msgid "Enter your new password"
|
msgid "Enter your new password"
|
||||||
msgstr "Введите ваш новый пароль"
|
msgstr "Введите ваш новый пароль"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:400
|
#: src/components/AuthForm.tsx:411
|
||||||
msgid "Enter your password"
|
msgid "Enter your password"
|
||||||
msgstr "Введите ваш пароль"
|
msgstr "Введите ваш пароль"
|
||||||
|
|
||||||
@@ -1326,7 +1326,7 @@ msgstr "Любим командами по всему миру"
|
|||||||
msgid "Low Priority"
|
msgid "Low Priority"
|
||||||
msgstr "Низкий приоритет"
|
msgstr "Низкий приоритет"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:421
|
#: src/components/AuthForm.tsx:435
|
||||||
msgid "magic link"
|
msgid "magic link"
|
||||||
msgstr "магическая ссылка"
|
msgstr "магическая ссылка"
|
||||||
|
|
||||||
@@ -1457,6 +1457,10 @@ msgstr "Следующие шаги"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Нет {0}"
|
msgstr "Нет {0}"
|
||||||
|
|
||||||
|
#: src/components/AuthForm.tsx:365
|
||||||
|
msgid "No authentication methods are currently available"
|
||||||
|
msgstr "В настоящее время нет доступных методов аутентификации"
|
||||||
|
|
||||||
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
#: src/views/boards/components/ImportBoardsForm.tsx:242
|
||||||
msgid "No boards found"
|
msgid "No boards found"
|
||||||
msgstr "Доски не найдены"
|
msgstr "Доски не найдены"
|
||||||
@@ -1497,7 +1501,7 @@ msgstr "С открытым исходным кодом"
|
|||||||
msgid "Open Source Friends"
|
msgid "Open Source Friends"
|
||||||
msgstr "Друзья с открытым исходным кодом"
|
msgstr "Друзья с открытым исходным кодом"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:365
|
#: src/components/AuthForm.tsx:374
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "или"
|
msgstr "или"
|
||||||
|
|
||||||
@@ -1579,15 +1583,15 @@ msgstr "Платформа"
|
|||||||
msgid "Please confirm your new password"
|
msgid "Please confirm your new password"
|
||||||
msgstr "Пожалуйста, подтвердите новый пароль"
|
msgstr "Пожалуйста, подтвердите новый пароль"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:391
|
#: src/components/AuthForm.tsx:402
|
||||||
msgid "Please enter a valid email address"
|
msgid "Please enter a valid email address"
|
||||||
msgstr "Пожалуйста, введите действительный адрес электронной почты"
|
msgstr "Пожалуйста, введите действительный адрес электронной почты"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:379
|
#: src/components/AuthForm.tsx:388
|
||||||
msgid "Please enter a valid name"
|
msgid "Please enter a valid name"
|
||||||
msgstr "Пожалуйста, введите действительное имя"
|
msgstr "Пожалуйста, введите действительное имя"
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:404
|
#: src/components/AuthForm.tsx:416
|
||||||
msgid "Please enter a valid password"
|
msgid "Please enter a valid password"
|
||||||
msgstr "Пожалуйста, введите действительный пароль"
|
msgstr "Пожалуйста, введите действительный пароль"
|
||||||
|
|
||||||
@@ -1886,7 +1890,7 @@ msgstr "Регистрация отключена"
|
|||||||
msgid "Sign up is currently disabled. Please try again later."
|
msgid "Sign up is currently disabled. Please try again later."
|
||||||
msgstr "Регистрация в настоящее время отключена. Пожалуйста, попробуйте позже."
|
msgstr "Регистрация в настоящее время отключена. Пожалуйста, попробуйте позже."
|
||||||
|
|
||||||
#: src/components/AuthForm.tsx:420
|
#: src/components/AuthForm.tsx:434
|
||||||
msgid "Sign up with "
|
msgid "Sign up with "
|
||||||
msgstr "Зарегистрироваться с "
|
msgstr "Зарегистрироваться с "
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user