From 097a42bb7b27b59ad2b153901dfeb7225423fe51 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Wed, 6 Oct 2021 20:50:43 +0200 Subject: [PATCH] web/admin: fix description for flow import Signed-off-by: Jens Langhammer --- web/src/locales/en.po | 5 ++++- web/src/locales/fr_FR.po | 5 ++++- web/src/locales/pseudo-LOCALE.po | 5 ++++- web/src/pages/flows/FlowImportForm.ts | 4 +++- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/web/src/locales/en.po b/web/src/locales/en.po index a40a6f656..670b16e81 100644 --- a/web/src/locales/en.po +++ b/web/src/locales/en.po @@ -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." diff --git a/web/src/locales/fr_FR.po b/web/src/locales/fr_FR.po index a0aa07e06..f8d76b3c7 100644 --- a/web/src/locales/fr_FR.po +++ b/web/src/locales/fr_FR.po @@ -50,6 +50,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" @@ -481,7 +485,6 @@ msgstr "Image d'arrière-plan" #: src/pages/flows/FlowForm.ts #: src/pages/flows/FlowForm.ts -#: src/pages/flows/FlowImportForm.ts msgid "Background shown during execution." msgstr "Arrière-plan utilisé durant l'exécution." diff --git a/web/src/locales/pseudo-LOCALE.po b/web/src/locales/pseudo-LOCALE.po index a49b90746..c13dd3471 100644 --- a/web/src/locales/pseudo-LOCALE.po +++ b/web/src/locales/pseudo-LOCALE.po @@ -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 "" diff --git a/web/src/pages/flows/FlowImportForm.ts b/web/src/pages/flows/FlowImportForm.ts index b52c6b268..0e5158f01 100644 --- a/web/src/pages/flows/FlowImportForm.ts +++ b/web/src/pages/flows/FlowImportForm.ts @@ -30,7 +30,9 @@ export class FlowImportForm extends Form { return html`
-

${t`Background shown during execution.`}

+

+ ${t`.akflow files, which can be found on goauthentik.io and can be exported by authentik.`} +

`; }