web/admin: fix description for flow import

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>

# Conflicts:
#	web/src/locales/fr_FR.po
This commit is contained in:
Jens Langhammer 2021-10-06 20:50:43 +02:00
parent d4e1b95991
commit 3869965b4c
4 changed files with 17 additions and 5 deletions

View File

@ -44,6 +44,10 @@ msgstr "(Format: hours=-1;minutes=-2;seconds=-3)."
msgid "-"
msgstr "-"
#: src/pages/flows/FlowImportForm.ts
msgid ".akflow files, which can be found on goauthentik.io and can be exported by authentik."
msgstr ".akflow files, which can be found on goauthentik.io and can be exported by authentik."
#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts
msgid "6 digits, widely compatible"
msgstr "6 digits, widely compatible"
@ -478,7 +482,6 @@ msgstr "Background image"
#: src/pages/flows/FlowForm.ts
#: src/pages/flows/FlowForm.ts
#: src/pages/flows/FlowImportForm.ts
msgid "Background shown during execution."
msgstr "Background shown during execution."

View File

@ -46,6 +46,10 @@ msgstr "(Format : heures=-1;minutes=-2;seconds=-3)"
msgid "-"
msgstr "-"
#: src/pages/flows/FlowImportForm.ts
msgid ".akflow files, which can be found on goauthentik.io and can be exported by authentik."
msgstr ""
#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts
msgid "6 digits, widely compatible"
msgstr "6 chiffres, compatibilité large"
@ -501,8 +505,8 @@ msgstr "Arrière-plan"
msgid "Background image"
msgstr "Image d'arrière-plan"
#: src/pages/flows/FlowForm.ts src/pages/flows/FlowForm.ts
#: src/pages/flows/FlowImportForm.ts
#: src/pages/flows/FlowForm.ts
#: src/pages/flows/FlowForm.ts
msgid "Background shown during execution."
msgstr "Arrière-plan utilisé durant l'exécution."

View File

@ -44,6 +44,10 @@ msgstr ""
msgid "-"
msgstr ""
#: src/pages/flows/FlowImportForm.ts
msgid ".akflow files, which can be found on goauthentik.io and can be exported by authentik."
msgstr ""
#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts
msgid "6 digits, widely compatible"
msgstr ""
@ -474,7 +478,6 @@ msgstr ""
#: src/pages/flows/FlowForm.ts
#: src/pages/flows/FlowForm.ts
#: src/pages/flows/FlowImportForm.ts
msgid "Background shown during execution."
msgstr ""

View File

@ -30,7 +30,9 @@ export class FlowImportForm extends Form<Flow> {
return html`<form class="pf-c-form pf-m-horizontal">
<ak-form-element-horizontal label=${t`Flow`} name="flow">
<input type="file" value="" class="pf-c-form-control" />
<p class="pf-c-form__helper-text">${t`Background shown during execution.`}</p>
<p class="pf-c-form__helper-text">
${t`.akflow files, which can be found on goauthentik.io and can be exported by authentik.`}
</p>
</ak-form-element-horizontal>
</form>`;
}