diff --git a/themes/fid/languages/fid/en.ini b/themes/fid/languages/fid/en.ini index 9ef8f48fe05fb1f5fdf550cb7f404143b23cbecf..7828693cf8c079e38cc7e5c0dbb8f3a93f5361ba 100644 --- a/themes/fid/languages/fid/en.ini +++ b/themes/fid/languages/fid/en.ini @@ -18,8 +18,8 @@ label_salutation = "Salutation" label_salutation_mr = "Mr" label_salutation_mrs = "Mrs" label_academic_title = "Academic title" -label_firstname = "Firstname" -label_lastname = "Lastname" +label_firstname = "First name" +label_lastname = "Last name" label_home_library = "Home library" label_year_of_birth = "Year of birth (YYYY)" label_job_title = "Occupation" @@ -41,14 +41,14 @@ label_country = "Country" label_submit = "Submit" terms = "Terms of Use" policy = "Privacy Policy" -policy_text = "I herby accept the " +policy_text = "I hereby accept the " terms_text = " and " error_username = "Please specify an email address." error_username_confirmation = "The email addresses do not match." error_password_confirmation = "The passwords do not match." error_password_pattern = "The password needs to contain at least one digit and one special character." -error_password_length = "Thes password needs to contain at least 8 and at most 256 characters." +error_password_length = "The password needs to contain at least 8 and at most 256 characters." error_eula_accepted = "Please confirm the Terms of Use and Privacy Policy." user_init_success = "We have received your registration. We have sent you an e-mail with a validation link to %s. This may take several minutes. Please check also the junk folder of your mailbox." diff --git a/themes/fid/templates/fid/user/create.phtml b/themes/fid/templates/fid/user/create.phtml index 7b6f4e7596ae9eec3a886192a4ed2c5e168279e9..98d8e137e1dd06d61699eeb160b9a589f9d968fa 100644 --- a/themes/fid/templates/fid/user/create.phtml +++ b/themes/fid/templates/fid/user/create.phtml @@ -243,14 +243,10 @@ $elemEulaAccepted->setAttribute('id', 'eulaAccepted'); <?= $this->formLabel()->openTag($elemEulaAccepted) ?> <?= $this->translate("fid::policy_text") ?> <?php $url = $this->url('fid/user/policy') ?> - <a data-lightbox href="<?= $url ?>"> - <?= $this->translate("fid::policy") ?> - </a> + <a data-lightbox href="<?= $url ?>"><?= $this->translate("fid::policy") ?></a> <?= $this->translate("fid::terms_text") ?> <?php $url = $this->url('fid/user/terms') ?> - <a data-lightbox href="<?= $url ?>"> - <?= $this->translate("fid::terms") ?> - </a>. + <a data-lightbox href="<?= $url ?>"><?= $this->translate("fid::terms") ?></a>. <?= $this->formLabel()->closeTag($elemEulaAccepted) ?> </div> <?= $this->formElementErrors($elemEulaAccepted) ?> @@ -268,4 +264,4 @@ $elemSubmit->setAttributes(['class' => 'btn btn-primary']); </div> </div> -<?= $this->form()->closeTag($form) ?> \ No newline at end of file +<?= $this->form()->closeTag($form) ?>