diff --git a/bin/extract-translations.sh b/bin/extract-translations.sh index a0e767ab6..996a5831e 100755 --- a/bin/extract-translations.sh +++ b/bin/extract-translations.sh @@ -1,2 +1,2 @@ #!/bin/bash -bin/console translation:extract --config=default --env=dev +bin/console jms:translation:extract --config=default --env=dev diff --git a/src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/RecoveryTokenController.php b/src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/RecoveryTokenController.php index 093b8ebfd..db0148f36 100644 --- a/src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/RecoveryTokenController.php +++ b/src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/RecoveryTokenController.php @@ -34,6 +34,7 @@ use Surfnet\StepupSelfService\SelfServiceBundle\Command\PromiseSafeStorePossessionCommand; use Surfnet\StepupSelfService\SelfServiceBundle\Command\RevokeRecoveryTokenCommand; use Surfnet\StepupSelfService\SelfServiceBundle\Exception\LogicException; +use Surfnet\StepupSelfService\SelfServiceBundle\Form\Type\RevokeRecoveryTokenType; use Surfnet\StepupSelfService\SelfServiceBundle\Form\Type\PromiseSafeStorePossessionType; use Surfnet\StepupSelfService\SelfServiceBundle\Service\SecondFactorService; use Surfnet\StepupSelfService\SelfServiceBundle\Service\SelfAssertedTokens\AuthenticationRequestFactory; @@ -47,6 +48,7 @@ use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; use Symfony\Component\Routing\Attribute\Route; use Symfony\Component\Security\Core\Exception\AuthenticationException; +use function sprintf; /** * @SuppressWarnings(PHPMD.CouplingBetweenObjects) @@ -207,9 +209,9 @@ public function proveSmsPossession(Request $request): Response #[Route( path: '/recovery-token/delete/{recoveryTokenId}', name: 'ss_recovery_token_delete', - methods: ['GET'], + methods: ['GET', 'POST'], )] - public function delete(string $recoveryTokenId): Response + public function delete(Request $request, string $recoveryTokenId): Response { $this->assertRecoveryTokenInPossession($recoveryTokenId, $this->getUser()->getIdentity()); try { @@ -217,19 +219,32 @@ public function delete(string $recoveryTokenId): Response $command = new RevokeRecoveryTokenCommand(); $command->identity = $this->getUser()->getIdentity(); $command->recoveryToken = $recoveryToken; - $executionResult = $this->safeStoreService->revokeRecoveryToken($command); - if ($executionResult->getErrors() !== []) { - $this->addFlash('error', 'ss.form.recovery_token.delete.success'); - foreach ($executionResult->getErrors() as $error) { - $this->logger->error(sprintf('Recovery Token revocation failed with message: "%s"', $error)); + + $form = $this->createForm(RevokeRecoveryTokenType::class, $command)->handleRequest($request); + + if ($form->isSubmitted() && $form->isValid()) { + $executionResult = $this->safeStoreService->revokeRecoveryToken($command); + + if ($executionResult->isSuccessful()) { + $this->addFlash('error', 'ss.form.recovery_token.delete.success'); + } else { + foreach ($executionResult->getErrors() as $error) { + $this->logger->error(sprintf('Recovery Token revocation failed with message: "%s"', $error)); + } + $this->addFlash('error', 'ss.form.recovery_token.delete.failed'); } - return $this->redirect($this->generateUrl('ss_second_factor_list')); + return $this->redirectToRoute('ss_second_factor_list'); } } catch (NotFoundException) { throw new LogicException('Identity %s tried to remove an unpossessed recovery token'); } - $this->addFlash('success', 'ss.form.recovery_token.delete.success'); - return $this->redirect($this->generateUrl('ss_second_factor_list')); + return $this->render( + 'second_factor/revoke-recovery-token.html.twig', + [ + 'form' => $form->createView(), + 'recoveryToken' => $recoveryToken, + ] + ); } /** diff --git a/src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeRecoveryTokenType.php b/src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeRecoveryTokenType.php new file mode 100644 index 000000000..1de97fadd --- /dev/null +++ b/src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeRecoveryTokenType.php @@ -0,0 +1,55 @@ +add('delete', SubmitType::class, [ + 'label' => 'ss.form.ss_revoke_recovery_token.revoke', + 'attr' => [ 'class' => 'btn btn-danger pull-right' ], + ]); + $builder->add('cancel', AnchorType::class, [ + 'label' => 'ss.form.ss_revoke_recovery_token.cancel', + 'attr' => [ 'class' => 'btn pull-right' ], + 'route' => 'ss_second_factor_list', + ]); + } + + public function configureOptions(OptionsResolver $resolver): void + { + $resolver->setDefaults([ + 'data_class' => RevokeRecoveryTokenCommand::class, + ]); + } + + public function getBlockPrefix(): string + { + return 'ss_revoke_recovery_token'; + } +} diff --git a/templates/registration/partial/crud_list.html.twig b/templates/registration/partial/crud_list.html.twig index 232a1df6c..aac5c1b09 100644 --- a/templates/registration/partial/crud_list.html.twig +++ b/templates/registration/partial/crud_list.html.twig @@ -24,6 +24,7 @@
{{ 'ss.second_factor.revoke.button.revoke'|trans }} diff --git a/templates/second_factor/revoke-recovery-token.html.twig b/templates/second_factor/revoke-recovery-token.html.twig new file mode 100644 index 000000000..6b3fa7a1e --- /dev/null +++ b/templates/second_factor/revoke-recovery-token.html.twig @@ -0,0 +1,26 @@ +{% extends "base.html.twig" %} +{% import _self as macro %} + +{% block page_title %}{{ 'ss.recovery_token.revoke.title'|trans }}{% endblock %} + +{% block content %} +

{{ block('page_title') }}

+ +

{{ 'ss.recovery_token.revoke.text.are_you_sure'|trans }}

+ + + + + + + + + + + + + +
{{ 'ss.recovery_token.revoke.table_header.recovery_token.method'|trans }}{{ 'ss.recovery_token.revoke.table_header.recovery_token.identifier'|trans }}
{{ recoveryToken.type|trans }}{% if recoveryToken.type == 'sms' %}{{ recoveryToken.identifier }}{% else %}-{% endif %}
+ + {{ form(form) }} +{% endblock %} diff --git a/translations/messages.en_GB.xliff b/translations/messages.en_GB.xliff index 916fbdee7..5d207da4a 100644 --- a/translations/messages.en_GB.xliff +++ b/translations/messages.en_GB.xliff @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -8,13 +8,13 @@ 612345678 - 612345678 - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php + 612345678 + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php app.name Registration Portal - /templates/base.html.twig + /templates/base.html.twig /templates/base.html.twig /templates/pdf.html.twig /templates/pdf.html.twig @@ -22,12 +22,12 @@ button.logout Sign out - /templates/base.html.twig + /templates/base.html.twig country code country code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php locale.en_GB @@ -42,944 +42,984 @@ safe-store Recovery code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig sms Recovery phone number - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.flash.error_while_switching_locale Due to an unknown reason, switching locales failed. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/LocaleController.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/LocaleController.php ss.flash.invalid_switch_locale_form Due to an unknown reason, switching locales failed. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/LocaleController.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/LocaleController.php ss.form.recovery_token.button.confirm Continue - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/PromiseSafeStorePossessionType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/PromiseSafeStorePossessionType.php ss.form.recovery_token.checkbox.promise_possession I have safely stored my recovery code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/PromiseSafeStorePossessionType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/PromiseSafeStorePossessionType.php ss.form.recovery_token.delete.failed Removing your recovery token failed, please try again - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.form.recovery_token.delete.success Your recovery token was removed successfully - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.form.recovery_token.error.challenge_not_sent_error_message Sending of the SMS verification code failed. Please try again. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.form.recovery_token.error.error_message Unable to save your recovery code, please try again - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.form.ss_authenticate_safe_store_type.button.continue Continue - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/AuthenticateSafeStoreType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/AuthenticateSafeStoreType.php ss.form.ss_authenticate_safe_store_type.text.secret Recovery code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/AuthenticateSafeStoreType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/AuthenticateSafeStoreType.php + + + ss.form.ss_revoke_recovery_token.cancel + Cancel + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeRecoveryTokenType.php + + + ss.form.ss_revoke_recovery_token.revoke + Remove + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeRecoveryTokenType.php ss.form.ss_revoke_second_factor.cancel Cancel - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeSecondFactorType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeSecondFactorType.php ss.form.ss_revoke_second_factor.revoke Remove - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeSecondFactorType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeSecondFactorType.php ss.form.ss_send_sms_challenge.button.send_challenge Send code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php ss.form.ss_verify_email.button.verify_email Verify e-mail - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifyEmailType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifyEmailType.php ss.form.ss_verify_email.text.verification_code Verification code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifyEmailType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifyEmailType.php ss.form.ss_verify_sms_challenge.button.resend_challenge Send new code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php ss.form.ss_verify_sms_challenge.button.verify_challenge Verify - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php ss.form.ss_verify_sms_challenge.text.challenge Code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php ss.prove_phone_possession.challenge_expired Your code has expired. Please request a new code. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.challenge_request_limit_reached You have exceeded the limit of three codes; you can no longer request any more codes. Contact your helpdesk or try again later. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.challenge_response_incorrect The code you entered does not match. Please try again or request a new code. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.incorrect_challenge_response The code you entered does not match. Please try again or request a new code. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.proof_of_possession_failed The token could not be created due to unknown reasons. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.send_sms_challenge_failed Sending the SMS failed. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.too_many_attempts You have exceeded the limit of ten attempts; you can no longer attempt verification of any more codes. Contact your helpdesk or try again later. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_yubikey_possession.proof_of_possession_failed The token could not be created due to unknown reasons. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig + + + ss.recovery_token.revoke.table_header.recovery_token.identifier + ID + /templates/second_factor/revoke-recovery-token.html.twig + + + ss.recovery_token.revoke.table_header.recovery_token.method + Method + /templates/second_factor/revoke-recovery-token.html.twig + + + ss.recovery_token.revoke.text.are_you_sure + You are about to remove the following recovery token. Attention: once a recovery token has been removed, you can no longer use it. Are you sure? + /templates/second_factor/revoke-recovery-token.html.twig + + + ss.recovery_token.revoke.title + Remove recovery token + /templates/second_factor/revoke-recovery-token.html.twig ss.recovery_token.safe-store.authentication.explanation Enter your recovery code to activate your token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/authenticate_safe_store.html.twig + /templates/registration/self_asserted_tokens/authenticate_safe_store.html.twig ss.recovery_token.safe-store.authentication.title Activate using your recovery code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/authenticate_safe_store.html.twig + /templates/registration/self_asserted_tokens/authenticate_safe_store.html.twig ss.recovery_token.sms.prove_possession_title Enter code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/registration_sms_prove_possession.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/sms_prove_possession.html.twig + /templates/registration/self_asserted_tokens/registration_sms_prove_possession.html.twig + /templates/registration/self_asserted_tokens/sms_prove_possession.html.twig ss.recovery_token.sms.send_challenge_title Register an SMS recovery token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/create_sms.html.twig + /templates/registration/self_asserted_tokens/create_sms.html.twig ss.recovery_token.step_up.failed Verification with your token failed. Please try again - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.recovery_token.step_up.no_tokens_available.failed Unable to create a recovery token without possession of a second factor token. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.recovery_token_list.header.recovery_token_identifier ID - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.recovery_token_list.header.type Method - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.recovery_token_list.help If you can no longer use your token, for example if you lose your mobile phone, you can use a recovery method to register a new token. Always make sure you have at least one recovery method - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.recovery_token_list.title Recovery methods - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.registration.email_verification_email_sent.text.email_verification_has_been_sent Check your inbox. A verification e-mail has been sent to the e-mail address %email%. Please follow the instructions in this e-mail to continue the registration process. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/email_verification_email_sent.html.twig + /templates/registration/email_verification_email_sent.html.twig ss.registration.email_verification_email_sent.title Verify your e-mail - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/email_verification_email_sent.html.twig + /templates/registration/email_verification_email_sent.html.twig ss.registration.progress_bar.confirm_second_factor Confirm - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig ss.registration.progress_bar.link_second_factor Link token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig ss.registration.progress_bar.register_second_factor Activate token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig ss.registration.progress_bar.select_second_factor Select token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig ss.registration.recovery_token.button.continue Continue - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.description.safe-store Request a recovery code. Keep it in a safe place - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.description.sms You'll receive a text message with a verification code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.safe-store.alt Your recovery code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.safe-store.promise_possession_explanation The recovery code below will only be displayed once. Keep this recovery code somewhere safe in case you need it in the future - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/create_safe_store.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/recovery_token_safe_store.html.twig + /templates/registration/self_asserted_tokens/create_safe_store.html.twig + /templates/registration/self_asserted_tokens/recovery_token_safe_store.html.twig ss.registration.recovery_token.safe-store.promise_possession_subtitle - - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/create_safe_store.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/recovery_token_safe_store.html.twig + ss.registration.recovery_token.safe-store.promise_possession_subtitle + /templates/registration/self_asserted_tokens/create_safe_store.html.twig + /templates/registration/self_asserted_tokens/recovery_token_safe_store.html.twig ss.registration.recovery_token.safe-store.promise_possession_title Your recovery code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/create_safe_store.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/recovery_token_safe_store.html.twig + /templates/registration/self_asserted_tokens/create_safe_store.html.twig + /templates/registration/self_asserted_tokens/recovery_token_safe_store.html.twig ss.registration.recovery_token.sms.alt Recovery phone number - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.sms.prove_posession_title Register recovery phone number - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/recovery_token_sms.html.twig + /templates/registration/self_asserted_tokens/recovery_token_sms.html.twig ss.registration.recovery_token.title If you can no longer use your token, for example if you lose your mobile phone, you can use the recovery method to register a new token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.title.safe-store Recovery code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.title.sms Phone number - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.registration_email_sent.label.expiration_date The activation code is valid until and including %expirationDate%. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.label.registration_code Activation code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.activation_instructions Visit the location below to get your token activated. Please bring the following: - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.activation_instructions_item_1 Your token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.activation_instructions_item_2 A valid proof of identity (passport, driver's license or national ID-card) - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.activation_instructions_item_3 Your activation code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.no_ra_locations_for_your_institution There are no locations available within your institution to activate your token. Please contact your helpdesk for support. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.no_ras_for_your_institution There are no locations available within your institution to activate your token. Please contact your helpdesk for support. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.registration_code_has_been_sent An e-mail containing these instructions and your activation code has also been sent to the e-mail address %email%. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.registration_code_has_been_sent_no_email If you do not have access (yet) to your e-mail address you can also print or download the instructions and your activation code. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.registration_code_has_been_sent_pdf PDF - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.registration_code_has_been_sent_print Print - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.thank_you_for_registration Thank you for registering your token. Your token is almost ready to use. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.title Activation code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/registration_email_sent.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/registration_email_sent_pdf.html.twig + /templates/registration/registration_email_sent.html.twig + /templates/registration/registration_email_sent_pdf.html.twig ss.registration.registration_email_sent.title.list_of_ra_locations Location(s) to activate your token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.title.list_of_ras Location(s) to activate your token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.selector.on-premise.alt Servicedesk - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.selector.self_asserted_tokens.alt Self asserted token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.selector.self_vet.alt Activated token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.selector.sms.alt SMS security token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.sms.button.use Select - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.sms.description Log in with a one time SMS code. For all mobile phones. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.sms.title SMS - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.title.welcome Select token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_second_factor_types.html.twig + /templates/registration/display_second_factor_types.html.twig ss.registration.selector.yubikey.alt YubiKey token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.yubikey.button.use Select - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.yubikey.description Log in with a USB hardware token. For all devices with a USB port. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.yubikey.title YubiKey - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.self_asserted.choose_recovery_token.title Choose your recovery method - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/select_available_recovery_token.html.twig + /templates/registration/self_asserted_tokens/select_available_recovery_token.html.twig ss.registration.self_asserted.new_recovery_token.title Add recovery method - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/new_recovery_token.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/select_recovery_token.html.twig + /templates/registration/self_asserted_tokens/new_recovery_token.html.twig + /templates/registration/self_asserted_tokens/select_recovery_token.html.twig ss.registration.self_asserted.recovery_token.title Add recovery method - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/registration.html.twig + /templates/registration/self_asserted_tokens/registration.html.twig ss.registration.sms.alert.no_verification_state Your session has expired. Please request a new code. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.sms.challenge_body Your SMS code: %challenge% - /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsRecoveryTokenService.php - /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsRecoveryTokenService.php - /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsSecondFactorService.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsRecoveryTokenService.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsRecoveryTokenService.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsSecondFactorService.php ss.registration.sms.prove_possession.title.page Enter SMS code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/sms/prove_possession.html.twig + /templates/registration/sms/prove_possession.html.twig ss.registration.sms.send_challenge.title.page Send SMS code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/sms/send_challenge.html.twig + /templates/registration/sms/send_challenge.html.twig ss.registration.sms.text.ensure_phone_has_signal Please ensure your mobile phone has a signal and can receive text messages. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/sms_send_challenge.html.twig + /templates/registration/partial/sms_send_challenge.html.twig ss.registration.sms.text.enter_challenge_below Enter the code that was sent to your phone and click 'Verify' - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/sms_prove_possession.html.twig + /templates/registration/partial/sms_prove_possession.html.twig ss.registration.sms.text.enter_phone_number_below Please enter your mobile phone number below: - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/sms_send_challenge.html.twig + /templates/registration/partial/sms_send_challenge.html.twig ss.registration.sms.text.otp_requests_remaining Attempts remaining: %count% - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/sms_send_challenge.html.twig + /templates/registration/partial/sms_send_challenge.html.twig ss.registration.sms.text.retry_if_not_received Click 'Send new code' if you did not receive a code. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/sms_prove_possession.html.twig + /templates/registration/partial/sms_prove_possession.html.twig ss.registration.verify_email.text.verification_failed E-mail verification failed. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/verify_email.html.twig + /templates/registration/verify_email.html.twig ss.registration.verify_email.title Verify your e-mail address - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/verify_email.html.twig + /templates/registration/verify_email.html.twig ss.registration.vetting_type.button.ra_vetting Continue - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.button.self_asserted_tokens Continue - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.button.self_vet Continue - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.description.ra_vetting Activate your token at your intitution's servicedesk. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.description.self_asserted_tokens Activate your token yourself. Your token may not be usable for every application - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.description.self_vet Use your existing token. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.description.vetting You must activate your token. Choose one of these options: - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.title Activate your token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.title.ra_vetting Servicedesk vetting - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.title.self_asserted_tokens Self-activation - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.title.self_vet Activated token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.yubikey.text.connect_yubikey_to_pc Put your YubiKey in a USB port on your computer. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/yubikey/prove_possession.html.twig + /templates/registration/yubikey/prove_possession.html.twig ss.registration.yubikey.text.ensure_form_field_focus Please ensure that the form field below has focus. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/yubikey/prove_possession.html.twig + /templates/registration/yubikey/prove_possession.html.twig ss.registration.yubikey.text.press_once_form_auto_submitted Press and hold the button on your Yubikey. A One Time Password will be entered in the field below automatically. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/yubikey/prove_possession.html.twig + /templates/registration/yubikey/prove_possession.html.twig ss.registration.yubikey.title.enter_challenge Link your YubiKey - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/yubikey/prove_possession.html.twig + /templates/registration/yubikey/prove_possession.html.twig ss.second_factor.button.remote_vet Activate - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.list.button.register_recovery_token Add recovery method - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.second_factor.list.button.register_second_factor Add token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.list.text.no_recovery_tokens There are no recovery methods registered to your account. Press 'Add revocery method' to add a new recovery method - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.second_factor.list.text.no_second_factors There are no tokens registered for your account. Click on 'Add token' to register a new token. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.list.text.unverified For the token(s) below the e-mail address must be verified. An e-mail was sent to '%email%'. Please follow the instructions in this e-mail to continue with the registration. Didn't receive an e-mail? Remove the token to try again. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.list.text.verified The following tokens are registered for your account, but not yet activated. An e-mail with your activation code has been sent to the e-mail address %email%. Please follow the instructions in the e-mail on how to proceed. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.list.text.vetted The following tokens are registered for your account. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.list.title Token Overview - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.revoke.alert.revocation_failed Token revocation failed - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.revoke.alert.revocation_successful Your token has been removed. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.revoke.button.revoke Remove - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/registration/partial/crud_list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.revoke.button.test Test a token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.revoke.second_factor_type.sms SMS - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.revoke.second_factor_type.yubikey YubiKey - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.revoke.table_header.second_factor.identifier ID - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/revoke.html.twig + /templates/second_factor/revoke.html.twig ss.second_factor.revoke.table_header.type Token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/revoke.html.twig + /templates/second_factor/revoke.html.twig ss.second_factor.revoke.text.are_you_sure You are about to remove the following token. Attention: once a token has been removed, you can no longer use it. Adding a new token might require that you activate it at your servicedesk. Are you sure? - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/revoke.html.twig + /templates/second_factor/revoke.html.twig ss.second_factor.revoke.title Remove token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/revoke.html.twig + /templates/second_factor/revoke.html.twig ss.second_factor.type.sms SMS - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.type.yubikey YubiKey - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor_list.header.expiration_date Expiration date - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor_list.header.expired_explanation The token registration period has expired. Please remove your token and restart the registration process. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor_list.header.expired_warning Expired - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor_list.header.loa Level of assurance - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor_list.header.second_factor_identifier ID - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor_list.header.type Token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.security.session_expired.click_to_login Click here to log in again - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/security/session_expired.html.twig + /templates/security/session_expired.html.twig ss.security.session_expired.explanation Your session has expired due to either prolonged inactivity or being logged in for too long. You have been automatically logged out and are required to log in again to be able to continue. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/security/session_expired.html.twig + /templates/security/session_expired.html.twig ss.security.session_expired.page_title Session Expired - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/security/session_expired.html.twig + /templates/security/session_expired.html.twig ss.self_asserted_tokens.safe_store.authentication.alert.failed The recovery code is not correct, please try again. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig - + ss.self_asserted_tokens.second_factor.alert.successful Your recovery method was activated - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_asserted_tokens.second_factor.no_available_recovery_token.alert.failed Unable to activate the token with your recovery method. For example, you are not allowed to activate an SMS token with an SMS recovery method - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_asserted_tokens.second_factor.vetting.alert.failed Token activation failed, please try again - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_asserted_tokens.second_factor.vetting.alert.successful Your token was activated - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_vet.second_factor.alert.failed Second factor registration failed - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_vet.second_factor.alert.successful The registration of the token was successful. You can login with your token. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_vet.second_factor.verification_failed Second factor registration failed, something went wrong during authentication. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.support_url_text Help - /templates/base.html.twig + /templates/base.html.twig ss.test_second_factor.verification_failed The test with your token failed. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.test_second_factor.verification_successful The test with your token was successful. You can login with your token. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.verify_yubikey_command.otp.otp_invalid This YubiKey code was invalid. Please try again. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.verify_yubikey_command.otp.verification_error The verification of the YubiKey code failed due to unknown reasons. Please try again. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig stepup.error.authentication_error.description Sign in unsuccessful. Please try again. - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.authentication_error.title Sign in - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.authn_failed.description Sign in unsuccessful. Please try again. - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.authn_failed.title Sign in - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.error_code Error code + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup.error.generic_error.description Something went wrong. Please try again. - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.generic_error.title Oops! - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.hostname Application + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup.error.ip_address IP address + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup.error.missing_required_attribute.title Missing required attribute - /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/ExceptionController.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/ExceptionController.php stepup.error.missing_required_attributes.title A required attribute is missing - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.page_not_found.text The page you requested was not found. Please try again or go back to Home. + /templates/bundles/TwigBundle/Exception/error404.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error404.html.twig stepup.error.page_not_found.title Page not found + /templates/bundles/TwigBundle/Exception/error404.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error404.html.twig stepup.error.precondition_not_met.description You are not authorised to sign in - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.precondition_not_met.title Not authorised to sign in - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.request_id Request ID + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup.error.signature_validation_failed.description The SAML request has been signed but the signature could not be validated. - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.signature_validation_failed.title Signature validation failed - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.support_page.text the support page if this does not fix your problem. On this page you will find more information about possible causes of the error and how to contact the support team.]]> + /templates/bundles/TwigBundle/Exception/error.html.twig + /templates/bundles/TwigBundle/Exception/error404.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error404.html.twig stepup.error.timestamp Time + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup.error.unknown_service_provider.title Unknown service provider - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.unsigned_request.description The SAML request is expected to be signed but it was not - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.unsigned_request.title Unsigned request - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.unsupported_signature.description The SAMLRequest has been signed, but the signature format is not supported - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.unsupported_signature.title Unsupported signature format - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.user_agent User agent + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup_middleware_client.form.switch_locale.switch Switch - /vendor/surfnet/stepup-bundle/src/Form/Type/SwitchLocaleType.php + /vendor/surfnet/stepup-bundle/src/Form/Type/SwitchLocaleType.php subscriberNumber Number - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php diff --git a/translations/messages.nl_NL.xliff b/translations/messages.nl_NL.xliff index 17fb9a064..2c89e56a3 100644 --- a/translations/messages.nl_NL.xliff +++ b/translations/messages.nl_NL.xliff @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -8,13 +8,13 @@ 612345678 - 612345678 - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php + 612345678 + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php app.name Registratieportal - /templates/base.html.twig + /templates/base.html.twig /templates/base.html.twig /templates/pdf.html.twig /templates/pdf.html.twig @@ -22,12 +22,12 @@ button.logout Uitloggen - /templates/base.html.twig + /templates/base.html.twig country code land code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php locale.en_GB @@ -42,942 +42,982 @@ safe-store Herstelcode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig sms Hersteltelefoonnummer - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.flash.error_while_switching_locale Door een onbekende oorzaak is het wisselen van taal mislukt. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/LocaleController.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/LocaleController.php ss.flash.invalid_switch_locale_form Door een onbekende oorzaak is het wisselen van taal mislukt. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/LocaleController.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/LocaleController.php ss.form.recovery_token.button.confirm Verder - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/PromiseSafeStorePossessionType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/PromiseSafeStorePossessionType.php ss.form.recovery_token.checkbox.promise_possession Ik heb mijn herstelcode veilig opgeslagen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/PromiseSafeStorePossessionType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/PromiseSafeStorePossessionType.php ss.form.recovery_token.delete.failed Het verwijderen van je herstelmethode is mislukt, probeer het opnieuw - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.form.recovery_token.delete.success Je herstelmethode is succesvol verwijderd - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.form.recovery_token.error.challenge_not_sent_error_message Het verzenden van de SMS verificatiecode is mislukt, probeer opnieuw - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.form.recovery_token.error.error_message Het opslaan van je herstelcode is mislukt, probeer het opnieuw - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.form.ss_authenticate_safe_store_type.button.continue Verder - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/AuthenticateSafeStoreType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/AuthenticateSafeStoreType.php ss.form.ss_authenticate_safe_store_type.text.secret Herstelcode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/AuthenticateSafeStoreType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/AuthenticateSafeStoreType.php + + + ss.form.ss_revoke_recovery_token.cancel + Annuleren + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeRecoveryTokenType.php + + + ss.form.ss_revoke_recovery_token.revoke + Verwijderen + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeRecoveryTokenType.php ss.form.ss_revoke_second_factor.cancel Annuleren - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeSecondFactorType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeSecondFactorType.php ss.form.ss_revoke_second_factor.revoke Verwijderen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeSecondFactorType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/RevokeSecondFactorType.php ss.form.ss_send_sms_challenge.button.send_challenge Verstuur code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php ss.form.ss_verify_email.button.verify_email E-mail bevestigen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifyEmailType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifyEmailType.php ss.form.ss_verify_email.text.verification_code Verificatiecode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifyEmailType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifyEmailType.php ss.form.ss_verify_sms_challenge.button.resend_challenge Stuur een nieuwe code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php ss.form.ss_verify_sms_challenge.button.verify_challenge Controleren - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php ss.form.ss_verify_sms_challenge.text.challenge Code - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/VerifySmsChallengeType.php ss.prove_phone_possession.challenge_expired Deze code is verlopen. Vraag een nieuwe code aan. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.challenge_request_limit_reached Je hebt de limiet van drie codes bereikt; je kunt geen codes meer aanvragen. Neem contact op met de helpdesk van je instelling of probeer het later nog eens. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.challenge_response_incorrect De code die je ingevoerd hebt komt niet overeen met de code die je hebt ontvangen. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.incorrect_challenge_response De ingevoerde code is onjuist. Probeer het nog eens, of vraag een nieuwe code op. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.proof_of_possession_failed Het token kon wegens een onbekende reden niet aangemaakt worden. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.send_sms_challenge_failed Het versturen van de code per SMS is mislukt. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_phone_possession.too_many_attempts U heeft de limiet van tien pogingen bereikt; u kunt geen codes meer verifiëren. Neem contact op met uw helpdesk of probeer het later nog eens. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.prove_yubikey_possession.proof_of_possession_failed Het token kon wegens een onbekende reden niet aangemaakt worden. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig + + + ss.recovery_token.revoke.table_header.recovery_token.identifier + ID + /templates/second_factor/revoke-recovery-token.html.twig + + + ss.recovery_token.revoke.table_header.recovery_token.method + Methode + /templates/second_factor/revoke-recovery-token.html.twig + + + ss.recovery_token.revoke.text.are_you_sure + Je gaat het volgende token verwijderen. Let op: als een token eenmaal verwijderd is, kun je het niet meer gebruiken. Weet je het zeker? + /templates/second_factor/revoke-recovery-token.html.twig + + + ss.recovery_token.revoke.title + Verwijder token + /templates/second_factor/revoke-recovery-token.html.twig ss.recovery_token.safe-store.authentication.explanation Voer je herstelcode in om je token te activeren - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/authenticate_safe_store.html.twig + /templates/registration/self_asserted_tokens/authenticate_safe_store.html.twig ss.recovery_token.safe-store.authentication.title Activeer met je herstelcode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/authenticate_safe_store.html.twig + /templates/registration/self_asserted_tokens/authenticate_safe_store.html.twig ss.recovery_token.sms.prove_possession_title Voer code in - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/registration_sms_prove_possession.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/sms_prove_possession.html.twig + /templates/registration/self_asserted_tokens/registration_sms_prove_possession.html.twig + /templates/registration/self_asserted_tokens/sms_prove_possession.html.twig ss.recovery_token.sms.send_challenge_title Registreer een SMS herstelmethode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/create_sms.html.twig + /templates/registration/self_asserted_tokens/create_sms.html.twig ss.recovery_token.step_up.failed Verificatie met je token is mislukt - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.recovery_token.step_up.no_tokens_available.failed Het is niet mogelijk om een herstelmethode toe te voegen zonder een actief token. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.recovery_token_list.header.recovery_token_identifier ID - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.recovery_token_list.header.type Methode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.recovery_token_list.help Als je je token niet meer kunt gebruiken, bijvoorbeeld bij verlies van je mobiele telefoon, kun je met een herstelmethode opnieuw een token registreren. Zorg er altijd voor dat je tenminste één herstelmethode hebt - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.recovery_token_list.title Herstelmethoden - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.registration.email_verification_email_sent.text.email_verification_has_been_sent Controleer je inbox. Er is een verificatie e-mail verstuurd naar het e-mailadres '%email%'. Volg de instructies in deze e-mail om het registratieproces te vervolgen. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/email_verification_email_sent.html.twig + /templates/registration/email_verification_email_sent.html.twig ss.registration.email_verification_email_sent.title Bevestig je e-mailadres - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/email_verification_email_sent.html.twig + /templates/registration/email_verification_email_sent.html.twig ss.registration.progress_bar.confirm_second_factor Bevestig e-email - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig ss.registration.progress_bar.link_second_factor Koppel token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig ss.registration.progress_bar.register_second_factor Activeer token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig ss.registration.progress_bar.select_second_factor Selecteer token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig + /templates/registration/partial/progress_bar.html.twig ss.registration.recovery_token.button.continue Verder - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.description.safe-store Vraag een herstelcode aan. Bewaar deze op een veilige plek - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.description.sms Je ontvangt een SMS met een verificatiecode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.safe-store.alt Jouw herstelcode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.safe-store.promise_possession_explanation Onderstaande herstelcode wordt maar eenmalig weergegeven. Bewaar deze herstelcode ergens veilig voor het geval je deze in de toekomst nodig hebt - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/create_safe_store.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/recovery_token_safe_store.html.twig + /templates/registration/self_asserted_tokens/create_safe_store.html.twig + /templates/registration/self_asserted_tokens/recovery_token_safe_store.html.twig ss.registration.recovery_token.safe-store.promise_possession_subtitle - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/create_safe_store.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/recovery_token_safe_store.html.twig + /templates/registration/self_asserted_tokens/create_safe_store.html.twig + /templates/registration/self_asserted_tokens/recovery_token_safe_store.html.twig ss.registration.recovery_token.safe-store.promise_possession_title Jouw herstelcode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/create_safe_store.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/recovery_token_safe_store.html.twig + /templates/registration/self_asserted_tokens/create_safe_store.html.twig + /templates/registration/self_asserted_tokens/recovery_token_safe_store.html.twig ss.registration.recovery_token.sms.alt Hersteltelefoonnummer - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.sms.prove_possession_title Registreer hersteltelefoonnummer - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/recovery_token_sms.html.twig + /templates/registration/self_asserted_tokens/recovery_token_sms.html.twig ss.registration.recovery_token.title Als je je token niet meer kunt gebruiken, bijvoorbeeld bij verlies van je mobiele telefoon, kun je met de herstelmethode opnieuw een token registreren - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.title.safe-store Herstelcode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.recovery_token.title.sms Telefoonnummer - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/select_recovery_token_type.twig + /templates/registration/partial/select_recovery_token_type.twig ss.registration.registration_email_sent.label.expiration_date Je activatiecode is geldig tot en met %expirationDate%. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.label.registration_code Activatiecode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.activation_instructions Ga naar onderstaande locatie om je token te laten activeren. Neem daarbij het volgende mee: - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.activation_instructions_item_1 Je token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.activation_instructions_item_2 Een geldig legitimatiebewijs (paspoort, rijbewijs of nationale ID-kaart) - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.activation_instructions_item_3 Je activatiecode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.no_ra_locations_for_your_institution Er zijn geen locaties beschikbaar binnen je instelling om je token te activeren. Neem contact op met je helpdesk voor support. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.no_ras_for_your_institution Er zijn geen locaties beschikbaar binnen je instelling om je token te activeren. Neem contact op met je helpdesk voor support. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.registration_code_has_been_sent Een e-mail met deze instructies en je activatiecode is ook naar het e-mailadres ‘%email%’ verstuurd. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.registration_code_has_been_sent_no_email Mocht je (nog) geen toegang hebben tot dit e-mailadres dan kun je de instructies en activatiecode ook printen of downloaden. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.registration_code_has_been_sent_pdf PDF - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.registration_code_has_been_sent_print Print - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.text.thank_you_for_registration Bedankt voor het registreren van je token. Je token is nu bijna klaar voor gebruik. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.title Activatiecode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/registration_email_sent.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/registration_email_sent_pdf.html.twig + /templates/registration/registration_email_sent.html.twig + /templates/registration/registration_email_sent_pdf.html.twig ss.registration.registration_email_sent.title.list_of_ra_locations Locatie(s) om je token te activeren - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.registration_email_sent.title.list_of_ras Locatie(s) om je token te activeren - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/registration_email_sent.html.twig + /templates/registration/partial/registration_email_sent.html.twig ss.registration.selector.on-premise.alt Servicedesk - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.selector.self_asserted_tokens.alt Zelfgeregeld token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.selector.self_vet.alt Geactiveerd token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.selector.sms.alt SMS-beveiligingstoken - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.sms.button.use Selecteer - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.sms.description Log in met een eenmalige SMS-code. Geschikt voor alle mobiele telefoons. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.sms.title SMS - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.title.welcome Selecteer token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_second_factor_types.html.twig + /templates/registration/display_second_factor_types.html.twig ss.registration.selector.yubikey.alt YubiKey-token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.yubikey.button.use Selecteer - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.yubikey.description Log in met een USB hardware token. Geschikt voor alle devices met een USB-poort. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.selector.yubikey.title YubiKey - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.self_asserted.choose_recovery_token.title Kies je herstelmethode - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/select_available_recovery_token.html.twig + /templates/registration/self_asserted_tokens/select_available_recovery_token.html.twig ss.registration.self_asserted.new_recovery_token.title Een herstelmethode toevoegen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/new_recovery_token.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/select_recovery_token.html.twig + /templates/registration/self_asserted_tokens/new_recovery_token.html.twig + /templates/registration/self_asserted_tokens/select_recovery_token.html.twig ss.registration.self_asserted.recovery_token.title Herstelmethode toevoegen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/self_asserted_tokens/registration.html.twig + /templates/registration/self_asserted_tokens/registration.html.twig ss.registration.sms.alert.no_verification_state Uw sessie is verlopen. Vraag een nieuwe code aan. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.registration.sms.challenge_body Je sms-code: %challenge% - /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsRecoveryTokenService.php - /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsRecoveryTokenService.php - /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsSecondFactorService.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsRecoveryTokenService.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsRecoveryTokenService.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Service/SmsSecondFactorService.php ss.registration.sms.prove_possession.title.page SMS-code invoeren - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/sms/prove_possession.html.twig + /templates/registration/sms/prove_possession.html.twig ss.registration.sms.send_challenge.title.page SMS-code versturen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/sms/send_challenge.html.twig + /templates/registration/sms/send_challenge.html.twig ss.registration.sms.text.ensure_phone_has_signal Zorg dat je mobiele telefoon bereik heeft en SMS-berichten kan ontvangen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/sms_send_challenge.html.twig + /templates/registration/partial/sms_send_challenge.html.twig ss.registration.sms.text.enter_challenge_below Voer de code in die naar je mobiele telefoon is gestuurd en klik op 'Controleren' - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/sms_prove_possession.html.twig + /templates/registration/partial/sms_prove_possession.html.twig ss.registration.sms.text.enter_phone_number_below Vul hieronder je mobiele nummer in en klik op 'Verstuur code' - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/sms_send_challenge.html.twig + /templates/registration/partial/sms_send_challenge.html.twig ss.registration.sms.text.otp_requests_remaining Aantal resterende pogingen: %count% - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/sms_send_challenge.html.twig + /templates/registration/partial/sms_send_challenge.html.twig ss.registration.sms.text.retry_if_not_received Geen code ontvangen? Klik dan op 'Stuur een nieuwe code' - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/sms_prove_possession.html.twig + /templates/registration/partial/sms_prove_possession.html.twig ss.registration.verify_email.text.verification_failed De e-mailverificatie is om onbekende reden mislukt. Probeer het opnieuw of neem contact op met een beheerder. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/verify_email.html.twig + /templates/registration/verify_email.html.twig ss.registration.verify_email.title E-mail verifiëren - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/verify_email.html.twig + /templates/registration/verify_email.html.twig ss.registration.vetting_type.button.ra_vetting Verder - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.button.self_asserted_tokens Verder - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.button.self_vet Verder - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.description.ra_vetting Activeer je token bij de servicedesk van je instelling. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.description.self_asserted_tokens Activeer je token zelf. Mogelijk is je token niet voor iedere applicatie bruikbaar - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.description.self_vet Gebruik je bestaand token. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.description.vetting Je moet je token activeren. Kies één van deze opties: - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.title Activeer je token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.title.ra_vetting Servicedesk - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.title.self_asserted_tokens Zelf-activatie - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.vetting_type.title.self_vet Token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/display_vetting_types.html.twig + /templates/registration/display_vetting_types.html.twig ss.registration.yubikey.text.connect_yubikey_to_pc Stop je YubiKey in een USB-poort van je computer. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/yubikey/prove_possession.html.twig + /templates/registration/yubikey/prove_possession.html.twig ss.registration.yubikey.text.ensure_form_field_focus Zorg dat het invulveld hieronder actief is. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/yubikey/prove_possession.html.twig + /templates/registration/yubikey/prove_possession.html.twig ss.registration.yubikey.text.press_once_form_auto_submitted Druk op de knop van je YubiKey en houd even vast. Er verschijnt automatisch een eenmalige code in het invulveld. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/yubikey/prove_possession.html.twig + /templates/registration/yubikey/prove_possession.html.twig ss.registration.yubikey.title.enter_challenge Koppel je YubiKey - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/yubikey/prove_possession.html.twig + /templates/registration/yubikey/prove_possession.html.twig ss.second_factor.button.remote_vet Activeer - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.list.button.register_recovery_token Herstelmethode toevoegen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.second_factor.list.button.register_second_factor Token toevoegen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.list.text.no_recovery_tokens Er zijn geen herstelmethoden geregistreerd voor jouw account. Klik op 'Toevoegen' om een nieuwe herstelmethode toe te voegen. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig + /templates/registration/partial/crud_list.html.twig ss.second_factor.list.text.no_second_factors Er zijn geen tokens geregistreerd voor jouw account. Klik op 'Token toevoegen' om een nieuw token te registreren. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.list.text.unverified Voor de onderstaande token(s) moet het e-mailadres nog bevestigd worden. Er is een e-mail verstuurd naar '%email%'. Volg de instructies in deze e-mail om verder te gaan met de registratie. Geen e-mail ontvangen? Verwijder het token om het opnieuw te proberen. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.list.text.verified De volgende token(s) zijn geregistreerd voor jouw account, maar nog niet geactiveerd. Er is een e-mail met activatiecode gestuurd naar het e-mailadres %email%. Volg de instructies uit de e-mail om je token te activeren. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.list.text.vetted De volgende token(s) zijn geregistreerd voor jouw account. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.list.title Overzicht tokens - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.revoke.alert.revocation_failed Token intrekken is mislukt - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.revoke.alert.revocation_successful Je token is verwijderd. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.revoke.button.revoke Verwijderen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/registration/partial/crud_list.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/registration/partial/crud_list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.revoke.button.test Test een token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor.revoke.second_factor_type.sms SMS - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.revoke.second_factor_type.yubikey YubiKey - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.revoke.table_header.second_factor.identifier ID - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/revoke.html.twig + /templates/second_factor/revoke.html.twig ss.second_factor.revoke.table_header.type Token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/revoke.html.twig + /templates/second_factor/revoke.html.twig ss.second_factor.revoke.text.are_you_sure Je gaat het volgende token verwijderen. Let op: als een token eenmaal verwijderd is, kun je het niet meer gebruiken. Om een nieuw token te activeren moet je mogelijkerwijs eerst langs je servicedesk. Weet je het zeker? - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/revoke.html.twig + /templates/second_factor/revoke.html.twig ss.second_factor.revoke.title Verwijder token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/revoke.html.twig + /templates/second_factor/revoke.html.twig ss.second_factor.type.sms SMS - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor.type.yubikey YubiKey - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.second_factor_list.header.expiration_date Verloopdatum - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor_list.header.expired_explanation De uiterste registratiedatum is verlopen. Registreer het token opnieuw door deze te verwijderen en het registratieproces opnieuw te starten. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor_list.header.expired_warning Verlopen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor_list.header.loa Betrouwbaarheid - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor_list.header.second_factor_identifier ID - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.second_factor_list.header.type Token - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/second_factor/list.html.twig + /templates/second_factor/list.html.twig ss.security.session_expired.click_to_login Klik hier om opnieuw in te loggen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/security/session_expired.html.twig + /templates/security/session_expired.html.twig ss.security.session_expired.explanation Uw sessie is verlopen. Dit kan komen doordat er te lang geen activiteit is geweest, of doordat u te lang bent ingelogd. U bent automatisch uitgelogd en om verder te gaan dient u eerst opnieuw in te loggen. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/security/session_expired.html.twig + /templates/security/session_expired.html.twig ss.security.session_expired.page_title Sessie Verlopen - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/security/session_expired.html.twig + /templates/security/session_expired.html.twig ss.self_asserted_tokens.safe_store.authentication.alert.failed De herstelcode is niet correct, probeer het opnieuw. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig - + ss.self_asserted_tokens.second_factor.alert.successful Je herstelmethode is geactiveerd - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_asserted_tokens.second_factor.no_available_recovery_token.alert.failed Je hebt geen geschikte herstelmethode om je token mee te activeren. Je mag bijvoorbeeld met een SMS herstelmethode niet een SMS token activeren. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_asserted_tokens.second_factor.vetting.alert.failed Het activeren van je token is mislukt, probeer het opnieuw - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_asserted_tokens.second_factor.vetting.alert.successful Je token is geactiveerd - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_vet.second_factor.alert.failed Het activeren van het nieuwe token is mislukt. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_vet.second_factor.alert.successful Je nieuwe token is geactiveerd. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.self_vet.second_factor.verification_failed Het activeren van het nieuwe token is mislukt. Er ging iets mis tijdens de verificatie met je andere token. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.support_url_text Help - /templates/base.html.twig + /templates/base.html.twig ss.test_second_factor.verification_failed De test met je token is mislukt. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.test_second_factor.verification_successful De test met je token is geslaagd. Je kunt inloggen met je token. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.verify_yubikey_command.otp.otp_invalid Deze YubiKey code was ongeldig. Probeer het nog eens. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig ss.verify_yubikey_command.otp.verification_error Het verifiëren van de YubiKey-code is wegens een onbekende reden nigelukt. Probeer het opnieuw. - /src/Surfnet/StepupSelfService/SelfServiceBundle/Resources/views/translations.twig + /templates/translations.twig stepup.error.authentication_error.description Inloggen mislukt. Probeer het nog eens. - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.authentication_error.title Inloggen - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.authn_failed.description Inloggen mislukt. Probeer het nog eens. - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.authn_failed.title Inloggen - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.error_code Foutcode + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup.error.generic_error.description Er is iets mis gegaan. Probeer het opnieuw. - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.generic_error.title Oeps! - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.hostname Applicatie + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup.error.ip_address IP-adres + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup.error.missing_required_attribute.title Attribuut ontbreekt - /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/ExceptionController.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Controller/ExceptionController.php stepup.error.missing_required_attributes.title Vereist attribuut is niet aanwezig - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.page_not_found.text De pagina die je zocht kan niet gevonden worden. Probeer het nog eens, of ga terug naar Home. + /templates/bundles/TwigBundle/Exception/error404.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error404.html.twig stepup.error.page_not_found.title Pagina niet gevonden + /templates/bundles/TwigBundle/Exception/error404.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error404.html.twig stepup.error.precondition_not_met.description Je hebt niet de juiste rechten om in te mogen loggen. - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.precondition_not_met.title Onvoldoende rechten om in te loggen - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.request_id Request ID + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup.error.signature_validation_failed.description Het SAML bericht is ondertekend maar de signature kan niet gevalideerd worden - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.signature_validation_failed.title Verificatie van signature mislukt - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.support_page.text de support pagina als dit je probleem niet oplost. Op deze pagina vind je meer informatie over de mogelijke oorzaken en hoe je contact kan opnemen met het supportteam.]]> + /templates/bundles/TwigBundle/Exception/error.html.twig + /templates/bundles/TwigBundle/Exception/error404.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error404.html.twig stepup.error.timestamp Tijd + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup.error.unknown_service_provider.title Onbekende serviceprovider - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.unsigned_request.description Het SAML bericht moet ondertekend zijn maar bevat geen signature - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.unsigned_request.title Geen signature in SAML bericht - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.unsupported_signature.description Het SAML bericht is ondertekend, maar het signature formaat wordt niet ondersteund - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.unsupported_signature.title Signature formaat wordt niet ondersteund - /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php + /vendor/surfnet/stepup-bundle/src/Controller/ExceptionController.php stepup.error.user_agent User agent + /templates/bundles/TwigBundle/Exception/error.html.twig /vendor/surfnet/stepup-bundle/src/Resources/views/Exception/error.html.twig stepup_middleware_client.form.switch_locale.switch Vertalen - /vendor/surfnet/stepup-bundle/src/Form/Type/SwitchLocaleType.php + /vendor/surfnet/stepup-bundle/src/Form/Type/SwitchLocaleType.php subscriberNumber Nummer - /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php + /src/Surfnet/StepupSelfService/SelfServiceBundle/Form/Type/SendSmsChallengeType.php diff --git a/translations/validators.en_GB.xliff b/translations/validators.en_GB.xliff index 2f381435d..ca0ab9fca 100644 --- a/translations/validators.en_GB.xliff +++ b/translations/validators.en_GB.xliff @@ -1,379 +1,11 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
- - middleware_client.dto.configuration.allow_self_asserted_tokens.must_be_boolean - The 'allow self-asserted tokens' configuration option must have a boolean value - - - middleware_client.dto.configuration.allowed_second_factors.must_be_array - middleware_client.dto.configuration.allowed_second_factors.must_be_array - - - middleware_client.dto.configuration.number_of_tokens_per_identity.must_be_integer - middleware_client.dto.configuration.number_of_tokens_per_identity.must_be_integer - - - middleware_client.dto.configuration.self_vet.must_be_boolean - middleware_client.dto.configuration.self_vet.must_be_boolean - - - middleware_client.dto.configuration.show_raa_contact_information.must_be_boolean - middleware_client.dto.configuration.show_raa_contact_information.must_be_boolean - - - middleware_client.dto.configuration.use_ra_locations.must_be_boolean - middleware_client.dto.configuration.use_ra_locations.must_be_boolean - - - middleware_client.dto.configuration.verify_email.must_be_boolean - middleware_client.dto.configuration.verify_email.must_be_boolean - - - middleware_client.dto.identity.common_name.must_be_string - Remote identity common name must be a string. - - - middleware_client.dto.identity.common_name.must_not_be_blank - Remote identity common name may not be blank. - - - middleware_client.dto.identity.email.must_be_string - Remote identity e-mail must be a string. - - - middleware_client.dto.identity.email.must_not_be_blank - Remote identity e-mail may not be blank. - - - middleware_client.dto.identity.id.must_be_string - Remote identity ID must be string. - - - middleware_client.dto.identity.id.must_not_be_blank - Remote identity ID may not be blank. - - - middleware_client.dto.identity.institution.must_be_string - Remote identity's institution must be string - - - middleware_client.dto.identity.institution.must_not_be_blank - Remote identity's institution may not be blank. - - - middleware_client.dto.identity.name_id.must_be_string - Remote identity's NameID must be string. - - - middleware_client.dto.identity.name_id.must_not_be_blank - Remote identity's NameID may not be blank. - - - middleware_client.dto.identity.preferred_locale.must_be_string - middleware_client.dto.identity.preferred_locale.must_be_string - - - middleware_client.dto.identity.preferred_locale.must_not_be_blank - middleware_client.dto.identity.preferred_locale.must_not_be_blank - - - middleware_client.dto.institution_listing.institution.must_be_string - middleware_client.dto.institution_listing.institution.must_be_string - - - middleware_client.dto.institution_listing.institution.must_not_be_blank - middleware_client.dto.institution_listing.institution.must_not_be_blank - - - middleware_client.dto.ra_candidate.common_name.must_be_string - middleware_client.dto.ra_candidate.common_name.must_be_string - - - middleware_client.dto.ra_candidate.common_name.must_not_be_blank - middleware_client.dto.ra_candidate.common_name.must_not_be_blank - - - middleware_client.dto.ra_candidate.email.must_be_string - middleware_client.dto.ra_candidate.email.must_be_string - - - middleware_client.dto.ra_candidate.email.must_not_be_blank - middleware_client.dto.ra_candidate.email.must_not_be_blank - - - middleware_client.dto.ra_candidate.identity_id.must_be_string - middleware_client.dto.ra_candidate.identity_id.must_be_string - - - middleware_client.dto.ra_candidate.identity_id.must_not_be_blank - middleware_client.dto.ra_candidate.identity_id.must_not_be_blank - - - middleware_client.dto.ra_candidate.institution.must_be_string - middleware_client.dto.ra_candidate.institution.must_be_string - - - middleware_client.dto.ra_candidate.institution.must_not_be_blank - middleware_client.dto.ra_candidate.institution.must_not_be_blank - - - middleware_client.dto.ra_candidate.name_id.must_be_string - middleware_client.dto.ra_candidate.name_id.must_be_string - - - middleware_client.dto.ra_candidate.name_id.must_not_be_blank - middleware_client.dto.ra_candidate.name_id.must_not_be_blank - - - middleware_client.dto.ra_candidate_institution.institution.must_be_string - middleware_client.dto.ra_candidate_institution.institution.must_be_string - - - middleware_client.dto.ra_candidate_institution.institution.must_not_be_blank - middleware_client.dto.ra_candidate_institution.institution.must_not_be_blank - - - middleware_client.dto.ra_credentials.common_name.must_be_null_or_string - middleware_client.dto.ra_credentials.common_name.must_be_null_or_string - - - middleware_client.dto.ra_credentials.contact_information.must_be_null_or_string - middleware_client.dto.ra_credentials.contact_information.must_be_null_or_string - - - middleware_client.dto.ra_credentials.identity_id.must_be_string - middleware_client.dto.ra_credentials.identity_id.must_be_string - - - middleware_client.dto.ra_credentials.identity_id.must_not_be_blank - middleware_client.dto.ra_credentials.identity_id.must_not_be_blank - - - middleware_client.dto.ra_credentials.institution.must_be_null_or_string - middleware_client.dto.ra_credentials.institution.must_be_null_or_string - - - middleware_client.dto.ra_credentials.is_raa.must_be_boolean - middleware_client.dto.ra_credentials.is_raa.must_be_boolean - - - middleware_client.dto.ra_credentials.is_sraa.must_be_boolean - middleware_client.dto.ra_credentials.is_sraa.must_be_boolean - - - middleware_client.dto.ra_credentials.location.must_be_null_or_string - middleware_client.dto.ra_credentials.location.must_be_null_or_string - - - middleware_client.dto.ra_listing.common_name.must_be_string - middleware_client.dto.ra_listing.common_name.must_be_string - - - middleware_client.dto.ra_listing.common_name.must_not_be_blank - middleware_client.dto.ra_listing.common_name.must_not_be_blank - - - middleware_client.dto.ra_listing.contact_information.must_be_string - middleware_client.dto.ra_listing.contact_information.must_be_string - - - middleware_client.dto.ra_listing.contact_information.must_not_be_blank - middleware_client.dto.ra_listing.contact_information.must_not_be_blank - - - middleware_client.dto.ra_listing.email.must_be_string - middleware_client.dto.ra_listing.email.must_be_string - - - middleware_client.dto.ra_listing.email.must_not_be_blank - middleware_client.dto.ra_listing.email.must_not_be_blank - - - middleware_client.dto.ra_listing.id.must_be_string - middleware_client.dto.ra_listing.id.must_be_string - - - middleware_client.dto.ra_listing.id.must_not_be_blank - middleware_client.dto.ra_listing.id.must_not_be_blank - - - middleware_client.dto.ra_listing.institution.must_be_string - middleware_client.dto.ra_listing.institution.must_be_string - - - middleware_client.dto.ra_listing.institution.must_not_be_blank - middleware_client.dto.ra_listing.institution.must_not_be_blank - - - middleware_client.dto.ra_listing.location.must_be_string - middleware_client.dto.ra_listing.location.must_be_string - - - middleware_client.dto.ra_listing.location.must_not_be_blank - middleware_client.dto.ra_listing.location.must_not_be_blank - - - middleware_client.dto.ra_listing.role.must_be_string - middleware_client.dto.ra_listing.role.must_be_string - - - middleware_client.dto.ra_listing.role.must_not_be_blank - middleware_client.dto.ra_listing.role.must_not_be_blank - - - middleware_client.dto.ra_location.contact_information.must_be_string - middleware_client.dto.ra_location.contact_information.must_be_string - - - middleware_client.dto.ra_location.id.must_be_string - middleware_client.dto.ra_location.id.must_be_string - - - middleware_client.dto.ra_location.id.must_not_be_blank - middleware_client.dto.ra_location.id.must_not_be_blank - - - middleware_client.dto.ra_location.institution.must_be_string - middleware_client.dto.ra_location.institution.must_be_string - - - middleware_client.dto.ra_location.institution.must_not_be_blank - middleware_client.dto.ra_location.institution.must_not_be_blank - - - middleware_client.dto.ra_location.location.must_be_string - middleware_client.dto.ra_location.location.must_be_string - - - middleware_client.dto.ra_location.location.must_not_be_blank - middleware_client.dto.ra_location.location.must_not_be_blank - - - middleware_client.dto.ra_location.name.must_be_string - middleware_client.dto.ra_location.name.must_be_string - - - middleware_client.dto.ra_location.name.must_not_be_blank - middleware_client.dto.ra_location.name.must_not_be_blank - - - middleware_client.dto.unverified_second_factor.id.must_be_string - Remote unverified second factor ID must be string. - - - middleware_client.dto.unverified_second_factor.id.must_not_be_blank - Remote unverified second factor ID may not be blank. - - - middleware_client.dto.unverified_second_factor.second_factor_identifier.must_be_string - Remote unverified second factor identifier must be string. - - - middleware_client.dto.unverified_second_factor.second_factor_identifier.must_not_be_blank - Remote unverified second factor identifier may not be blank. - - - middleware_client.dto.unverified_second_factor.type.must_be_string - Remote unverified second factor type must be string. - - - middleware_client.dto.unverified_second_factor.type.must_not_be_blank - Remote unverified second factor type may not be blank. - - - middleware_client.dto.verified_second_factor.common_name.must_be_string - middleware_client.dto.verified_second_factor.common_name.must_be_string - - - middleware_client.dto.verified_second_factor.common_name.must_not_be_blank - middleware_client.dto.verified_second_factor.common_name.must_not_be_blank - - - middleware_client.dto.verified_second_factor.id.must_be_string - Remote unverified second factor ID must be string. - - - middleware_client.dto.verified_second_factor.id.must_not_be_blank - Remote unverified second factor ID may not be blank. - - - middleware_client.dto.verified_second_factor.identity_id.must_be_string - middleware_client.dto.verified_second_factor.identity_id.must_be_string - - - middleware_client.dto.verified_second_factor.identity_id.must_not_be_blank - middleware_client.dto.verified_second_factor.identity_id.must_not_be_blank - - - middleware_client.dto.verified_second_factor.institution.must_be_string - middleware_client.dto.verified_second_factor.institution.must_be_string - - - middleware_client.dto.verified_second_factor.institution.must_not_be_blank - middleware_client.dto.verified_second_factor.institution.must_not_be_blank - - - middleware_client.dto.verified_second_factor.registration_code.must_be_string - middleware_client.dto.verified_second_factor.registration_code.must_be_string - - - middleware_client.dto.verified_second_factor.registration_code.must_not_be_blank - middleware_client.dto.verified_second_factor.registration_code.must_not_be_blank - - - middleware_client.dto.verified_second_factor.second_factor_identifier.must_be_string - Remote unverified second factor identifier must be string. - - - middleware_client.dto.verified_second_factor.second_factor_identifier.must_not_be_blank - Remote unverified second factor identifier may not be blank. - - - middleware_client.dto.verified_second_factor.type.must_be_string - Remote unverified second factor type must be string. - - - middleware_client.dto.verified_second_factor.type.must_not_be_blank - Remote unverified second factor type may not be blank. - - - middleware_client.dto.vetted_second_factor.id.must_be_string - middleware_client.dto.vetted_second_factor.id.must_be_string - - - middleware_client.dto.vetted_second_factor.id.must_not_be_blank - middleware_client.dto.vetted_second_factor.id.must_not_be_blank - - - middleware_client.dto.vetted_second_factor.second_factor_identifier.must_be_string - middleware_client.dto.vetted_second_factor.second_factor_identifier.must_be_string - - - middleware_client.dto.vetted_second_factor.second_factor_identifier.must_not_be_blank - middleware_client.dto.vetted_second_factor.second_factor_identifier.must_not_be_blank - - - middleware_client.dto.vetted_second_factor.type.must_be_string - middleware_client.dto.vetted_second_factor.type.must_be_string - - - middleware_client.dto.vetted_second_factor.type.must_not_be_blank - middleware_client.dto.vetted_second_factor.type.must_not_be_blank - - - middleware_client.dto.vetted_second_factor.veting_type.must_be_string - middleware_client.dto.vetted_second_factor.veting_type.must_be_string - - - middleware_client.dto.vetted_second_factor.vetting_typ.must_not_be_blank - middleware_client.dto.vetted_second_factor.vetting_typ.must_not_be_blank - ss.send_sms_challenge_command.recipient.may_not_be_empty SMS challenge recipient may not be empty. @@ -410,34 +42,6 @@ ss.verify_yubikey_command.otp.must_be_string Yubikey OTP must be string. - - stepup.send_sms_command.recipient.may_not_be_empty - Please enter your phone number - - - stepup.send_sms_command.recipient.must_be_string - SMS recipient must be a string - - - stepup.send_sms_command.recipient.must_consist_of_digits - Your phone number may only consist of digits - - - stepup.verify_possession_of_phone_command.challenge.may_not_be_empty - Please enter the code you received - - - stepup.verify_possession_of_phone_command.challenge.must_be_string - SMS challenge must be a string - - - stepup.verify_possession_of_phone_command.recovery_token_id.must_be_string - stepup.verify_possession_of_phone_command.recovery_token_id.must_be_string - - - stepup.verify_possession_of_phone_command.second_factor_id.must_be_string - stepup.verify_possession_of_phone_command.second_factor_id.must_be_string -
diff --git a/translations/validators.nl_NL.xliff b/translations/validators.nl_NL.xliff index f286d2444..2625c4f59 100644 --- a/translations/validators.nl_NL.xliff +++ b/translations/validators.nl_NL.xliff @@ -1,379 +1,11 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
- - middleware_client.dto.configuration.allow_self_asserted_tokens.must_be_boolean - The 'allow self-asserted tokens' configuration option must have a boolean value - - - middleware_client.dto.configuration.allowed_second_factors.must_be_array - middleware_client.dto.configuration.allowed_second_factors.must_be_array - - - middleware_client.dto.configuration.number_of_tokens_per_identity.must_be_integer - middleware_client.dto.configuration.number_of_tokens_per_identity.must_be_integer - - - middleware_client.dto.configuration.self_vet.must_be_boolean - middleware_client.dto.configuration.self_vet.must_be_boolean - - - middleware_client.dto.configuration.show_raa_contact_information.must_be_boolean - middleware_client.dto.configuration.show_raa_contact_information.must_be_boolean - - - middleware_client.dto.configuration.use_ra_locations.must_be_boolean - middleware_client.dto.configuration.use_ra_locations.must_be_boolean - - - middleware_client.dto.configuration.verify_email.must_be_boolean - middleware_client.dto.configuration.verify_email.must_be_boolean - - - middleware_client.dto.identity.common_name.must_be_string - Remote identity common name must be a string. - - - middleware_client.dto.identity.common_name.must_not_be_blank - Remote identity common name may not be blank. - - - middleware_client.dto.identity.email.must_be_string - Remote identity e-mail must be a string. - - - middleware_client.dto.identity.email.must_not_be_blank - Remote identity e-mail may not be blank. - - - middleware_client.dto.identity.id.must_be_string - Remote identity ID must be string. - - - middleware_client.dto.identity.id.must_not_be_blank - Remote identity ID may not be blank. - - - middleware_client.dto.identity.institution.must_be_string - Remote identity's institution must be string - - - middleware_client.dto.identity.institution.must_not_be_blank - Remote identity's institution may not be blank. - - - middleware_client.dto.identity.name_id.must_be_string - Remote identity's NameID must be string. - - - middleware_client.dto.identity.name_id.must_not_be_blank - Remote identity's NameID may not be blank. - - - middleware_client.dto.identity.preferred_locale.must_be_string - middleware_client.dto.identity.preferred_locale.must_be_string - - - middleware_client.dto.identity.preferred_locale.must_not_be_blank - middleware_client.dto.identity.preferred_locale.must_not_be_blank - - - middleware_client.dto.institution_listing.institution.must_be_string - middleware_client.dto.institution_listing.institution.must_be_string - - - middleware_client.dto.institution_listing.institution.must_not_be_blank - middleware_client.dto.institution_listing.institution.must_not_be_blank - - - middleware_client.dto.ra_candidate.common_name.must_be_string - middleware_client.dto.ra_candidate.common_name.must_be_string - - - middleware_client.dto.ra_candidate.common_name.must_not_be_blank - middleware_client.dto.ra_candidate.common_name.must_not_be_blank - - - middleware_client.dto.ra_candidate.email.must_be_string - middleware_client.dto.ra_candidate.email.must_be_string - - - middleware_client.dto.ra_candidate.email.must_not_be_blank - middleware_client.dto.ra_candidate.email.must_not_be_blank - - - middleware_client.dto.ra_candidate.identity_id.must_be_string - middleware_client.dto.ra_candidate.identity_id.must_be_string - - - middleware_client.dto.ra_candidate.identity_id.must_not_be_blank - middleware_client.dto.ra_candidate.identity_id.must_not_be_blank - - - middleware_client.dto.ra_candidate.institution.must_be_string - middleware_client.dto.ra_candidate.institution.must_be_string - - - middleware_client.dto.ra_candidate.institution.must_not_be_blank - middleware_client.dto.ra_candidate.institution.must_not_be_blank - - - middleware_client.dto.ra_candidate.name_id.must_be_string - middleware_client.dto.ra_candidate.name_id.must_be_string - - - middleware_client.dto.ra_candidate.name_id.must_not_be_blank - middleware_client.dto.ra_candidate.name_id.must_not_be_blank - - - middleware_client.dto.ra_candidate_institution.institution.must_be_string - middleware_client.dto.ra_candidate_institution.institution.must_be_string - - - middleware_client.dto.ra_candidate_institution.institution.must_not_be_blank - middleware_client.dto.ra_candidate_institution.institution.must_not_be_blank - - - middleware_client.dto.ra_credentials.common_name.must_be_null_or_string - middleware_client.dto.ra_credentials.common_name.must_be_null_or_string - - - middleware_client.dto.ra_credentials.contact_information.must_be_null_or_string - middleware_client.dto.ra_credentials.contact_information.must_be_null_or_string - - - middleware_client.dto.ra_credentials.identity_id.must_be_string - middleware_client.dto.ra_credentials.identity_id.must_be_string - - - middleware_client.dto.ra_credentials.identity_id.must_not_be_blank - middleware_client.dto.ra_credentials.identity_id.must_not_be_blank - - - middleware_client.dto.ra_credentials.institution.must_be_null_or_string - middleware_client.dto.ra_credentials.institution.must_be_null_or_string - - - middleware_client.dto.ra_credentials.is_raa.must_be_boolean - middleware_client.dto.ra_credentials.is_raa.must_be_boolean - - - middleware_client.dto.ra_credentials.is_sraa.must_be_boolean - middleware_client.dto.ra_credentials.is_sraa.must_be_boolean - - - middleware_client.dto.ra_credentials.location.must_be_null_or_string - middleware_client.dto.ra_credentials.location.must_be_null_or_string - - - middleware_client.dto.ra_listing.common_name.must_be_string - middleware_client.dto.ra_listing.common_name.must_be_string - - - middleware_client.dto.ra_listing.common_name.must_not_be_blank - middleware_client.dto.ra_listing.common_name.must_not_be_blank - - - middleware_client.dto.ra_listing.contact_information.must_be_string - middleware_client.dto.ra_listing.contact_information.must_be_string - - - middleware_client.dto.ra_listing.contact_information.must_not_be_blank - middleware_client.dto.ra_listing.contact_information.must_not_be_blank - - - middleware_client.dto.ra_listing.email.must_be_string - middleware_client.dto.ra_listing.email.must_be_string - - - middleware_client.dto.ra_listing.email.must_not_be_blank - middleware_client.dto.ra_listing.email.must_not_be_blank - - - middleware_client.dto.ra_listing.id.must_be_string - middleware_client.dto.ra_listing.id.must_be_string - - - middleware_client.dto.ra_listing.id.must_not_be_blank - middleware_client.dto.ra_listing.id.must_not_be_blank - - - middleware_client.dto.ra_listing.institution.must_be_string - middleware_client.dto.ra_listing.institution.must_be_string - - - middleware_client.dto.ra_listing.institution.must_not_be_blank - middleware_client.dto.ra_listing.institution.must_not_be_blank - - - middleware_client.dto.ra_listing.location.must_be_string - middleware_client.dto.ra_listing.location.must_be_string - - - middleware_client.dto.ra_listing.location.must_not_be_blank - middleware_client.dto.ra_listing.location.must_not_be_blank - - - middleware_client.dto.ra_listing.role.must_be_string - middleware_client.dto.ra_listing.role.must_be_string - - - middleware_client.dto.ra_listing.role.must_not_be_blank - middleware_client.dto.ra_listing.role.must_not_be_blank - - - middleware_client.dto.ra_location.contact_information.must_be_string - middleware_client.dto.ra_location.contact_information.must_be_string - - - middleware_client.dto.ra_location.id.must_be_string - middleware_client.dto.ra_location.id.must_be_string - - - middleware_client.dto.ra_location.id.must_not_be_blank - middleware_client.dto.ra_location.id.must_not_be_blank - - - middleware_client.dto.ra_location.institution.must_be_string - middleware_client.dto.ra_location.institution.must_be_string - - - middleware_client.dto.ra_location.institution.must_not_be_blank - middleware_client.dto.ra_location.institution.must_not_be_blank - - - middleware_client.dto.ra_location.location.must_be_string - middleware_client.dto.ra_location.location.must_be_string - - - middleware_client.dto.ra_location.location.must_not_be_blank - middleware_client.dto.ra_location.location.must_not_be_blank - - - middleware_client.dto.ra_location.name.must_be_string - middleware_client.dto.ra_location.name.must_be_string - - - middleware_client.dto.ra_location.name.must_not_be_blank - middleware_client.dto.ra_location.name.must_not_be_blank - - - middleware_client.dto.unverified_second_factor.id.must_be_string - Remote unverified second factor ID must be string. - - - middleware_client.dto.unverified_second_factor.id.must_not_be_blank - Remote unverified second factor ID may not be blank. - - - middleware_client.dto.unverified_second_factor.second_factor_identifier.must_be_string - Remote unverified second factor identifier must be string. - - - middleware_client.dto.unverified_second_factor.second_factor_identifier.must_not_be_blank - Remote unverified second factor identifier may not be blank. - - - middleware_client.dto.unverified_second_factor.type.must_be_string - Remote unverified second factor type must be string. - - - middleware_client.dto.unverified_second_factor.type.must_not_be_blank - Remote unverified second factor type may not be blank. - - - middleware_client.dto.verified_second_factor.common_name.must_be_string - middleware_client.dto.verified_second_factor.common_name.must_be_string - - - middleware_client.dto.verified_second_factor.common_name.must_not_be_blank - middleware_client.dto.verified_second_factor.common_name.must_not_be_blank - - - middleware_client.dto.verified_second_factor.id.must_be_string - Remote unverified second factor ID must be string. - - - middleware_client.dto.verified_second_factor.id.must_not_be_blank - Remote unverified second factor ID may not be blank. - - - middleware_client.dto.verified_second_factor.identity_id.must_be_string - middleware_client.dto.verified_second_factor.identity_id.must_be_string - - - middleware_client.dto.verified_second_factor.identity_id.must_not_be_blank - middleware_client.dto.verified_second_factor.identity_id.must_not_be_blank - - - middleware_client.dto.verified_second_factor.institution.must_be_string - middleware_client.dto.verified_second_factor.institution.must_be_string - - - middleware_client.dto.verified_second_factor.institution.must_not_be_blank - middleware_client.dto.verified_second_factor.institution.must_not_be_blank - - - middleware_client.dto.verified_second_factor.registration_code.must_be_string - middleware_client.dto.verified_second_factor.registration_code.must_be_string - - - middleware_client.dto.verified_second_factor.registration_code.must_not_be_blank - middleware_client.dto.verified_second_factor.registration_code.must_not_be_blank - - - middleware_client.dto.verified_second_factor.second_factor_identifier.must_be_string - Remote unverified second factor identifier must be string. - - - middleware_client.dto.verified_second_factor.second_factor_identifier.must_not_be_blank - Remote unverified second factor identifier may not be blank. - - - middleware_client.dto.verified_second_factor.type.must_be_string - Remote unverified second factor type must be string. - - - middleware_client.dto.verified_second_factor.type.must_not_be_blank - Remote unverified second factor type may not be blank. - - - middleware_client.dto.vetted_second_factor.id.must_be_string - middleware_client.dto.vetted_second_factor.id.must_be_string - - - middleware_client.dto.vetted_second_factor.id.must_not_be_blank - middleware_client.dto.vetted_second_factor.id.must_not_be_blank - - - middleware_client.dto.vetted_second_factor.second_factor_identifier.must_be_string - middleware_client.dto.vetted_second_factor.second_factor_identifier.must_be_string - - - middleware_client.dto.vetted_second_factor.second_factor_identifier.must_not_be_blank - middleware_client.dto.vetted_second_factor.second_factor_identifier.must_not_be_blank - - - middleware_client.dto.vetted_second_factor.type.must_be_string - middleware_client.dto.vetted_second_factor.type.must_be_string - - - middleware_client.dto.vetted_second_factor.type.must_not_be_blank - middleware_client.dto.vetted_second_factor.type.must_not_be_blank - - - middleware_client.dto.vetted_second_factor.veting_type.must_be_string - middleware_client.dto.vetted_second_factor.veting_type.must_be_string - - - middleware_client.dto.vetted_second_factor.vetting_typ.must_not_be_blank - middleware_client.dto.vetted_second_factor.vetting_typ.must_not_be_blank - ss.send_sms_challenge_command.recipient.may_not_be_empty SMS ontvanger mag niet leeg zijn. @@ -410,34 +42,6 @@ ss.verify_yubikey_command.otp.must_be_string Yubikey OTP must be string. - - stepup.send_sms_command.recipient.may_not_be_empty - Vul alstublieft het telefoonnummer in - - - stepup.send_sms_command.recipient.must_be_string - SMS recipient must be a string - - - stepup.send_sms_command.recipient.must_consist_of_digits - Het telefoonnummer mag enkel uit cijfers bestaan - - - stepup.verify_possession_of_phone_command.challenge.may_not_be_empty - Vul alstublieft de code in die u heeft ontvangen - - - stepup.verify_possession_of_phone_command.challenge.must_be_string - SMS challenge must be a string - - - stepup.verify_possession_of_phone_command.recovery_token_id.must_be_string - stepup.verify_possession_of_phone_command.recovery_token_id.must_be_string - - - stepup.verify_possession_of_phone_command.second_factor_id.must_be_string - stepup.verify_possession_of_phone_command.second_factor_id.must_be_string -