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:
parent
d4e1b95991
commit
3869965b4c
|
@ -44,6 +44,10 @@ msgstr "(Format: hours=-1;minutes=-2;seconds=-3)."
|
||||||
msgid "-"
|
msgid "-"
|
||||||
msgstr "-"
|
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
|
#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts
|
||||||
msgid "6 digits, widely compatible"
|
msgid "6 digits, widely compatible"
|
||||||
msgstr "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/FlowForm.ts
|
#: src/pages/flows/FlowForm.ts
|
||||||
#: src/pages/flows/FlowImportForm.ts
|
|
||||||
msgid "Background shown during execution."
|
msgid "Background shown during execution."
|
||||||
msgstr "Background shown during execution."
|
msgstr "Background shown during execution."
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,10 @@ msgstr "(Format : heures=-1;minutes=-2;seconds=-3)"
|
||||||
msgid "-"
|
msgid "-"
|
||||||
msgstr "-"
|
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
|
#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts
|
||||||
msgid "6 digits, widely compatible"
|
msgid "6 digits, widely compatible"
|
||||||
msgstr "6 chiffres, compatibilité large"
|
msgstr "6 chiffres, compatibilité large"
|
||||||
|
@ -501,8 +505,8 @@ msgstr "Arrière-plan"
|
||||||
msgid "Background image"
|
msgid "Background image"
|
||||||
msgstr "Image d'arrière-plan"
|
msgstr "Image d'arrière-plan"
|
||||||
|
|
||||||
#: src/pages/flows/FlowForm.ts src/pages/flows/FlowForm.ts
|
#: src/pages/flows/FlowForm.ts
|
||||||
#: src/pages/flows/FlowImportForm.ts
|
#: src/pages/flows/FlowForm.ts
|
||||||
msgid "Background shown during execution."
|
msgid "Background shown during execution."
|
||||||
msgstr "Arrière-plan utilisé durant l'exécution."
|
msgstr "Arrière-plan utilisé durant l'exécution."
|
||||||
|
|
||||||
|
|
|
@ -44,6 +44,10 @@ msgstr ""
|
||||||
msgid "-"
|
msgid "-"
|
||||||
msgstr ""
|
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
|
#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts
|
||||||
msgid "6 digits, widely compatible"
|
msgid "6 digits, widely compatible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -474,7 +478,6 @@ msgstr ""
|
||||||
|
|
||||||
#: src/pages/flows/FlowForm.ts
|
#: src/pages/flows/FlowForm.ts
|
||||||
#: src/pages/flows/FlowForm.ts
|
#: src/pages/flows/FlowForm.ts
|
||||||
#: src/pages/flows/FlowImportForm.ts
|
|
||||||
msgid "Background shown during execution."
|
msgid "Background shown during execution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,9 @@ export class FlowImportForm extends Form<Flow> {
|
||||||
return html`<form class="pf-c-form pf-m-horizontal">
|
return html`<form class="pf-c-form pf-m-horizontal">
|
||||||
<ak-form-element-horizontal label=${t`Flow`} name="flow">
|
<ak-form-element-horizontal label=${t`Flow`} name="flow">
|
||||||
<input type="file" value="" class="pf-c-form-control" />
|
<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>
|
</ak-form-element-horizontal>
|
||||||
</form>`;
|
</form>`;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue