From 3869965b4cb9cbd0fee324526201a3153cc21ae1 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 # Conflicts: # web/src/locales/fr_FR.po --- web/src/locales/en.po | 5 ++++- web/src/locales/fr_FR.po | 8 ++++++-- web/src/locales/pseudo-LOCALE.po | 5 ++++- web/src/pages/flows/FlowImportForm.ts | 4 +++- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/web/src/locales/en.po b/web/src/locales/en.po index 25e724f9b..f5ad91ab2 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 35ac5b48f..f1501fa87 100644 --- a/web/src/locales/fr_FR.po +++ b/web/src/locales/fr_FR.po @@ -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." diff --git a/web/src/locales/pseudo-LOCALE.po b/web/src/locales/pseudo-LOCALE.po index 83de1060c..90aa1b1a4 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.`} +

`; }