bd195784a0
Update the error message for the web installer onboarding section when creating the Koha administrator patron (where the card number or username already exists): - Fix capitalization - Use the same label in the error message as used in the form Error message before: The patron has not been created! Card number or Userid may already exist. Error message after: The patron was not created! The card number or username already exists. Test plan: 1. Option 1: 1.1 Review the diff for the patch and make sure that the updated text makes sense. . Previous text: The patron has not been created! Card number or Userid may already exist. . Updated text: The patron was not created! The card number or username already exists. OR 2. Option 2: 2.1 Access the database server: mysql -uroot -ppassword -hkoha-db-1 2.2 Drop the koha_kohadev database: drop database koha_kohadev; 2.3 Create the database: create database koha_kohadev; 2.4 Add privileges (for a real installation this would be limited): grant all on koha_kohadev.* to koha_kohadev; 2.5 Restart everything (there may be some errors listed): flush_memcached and then restart_all 2.6 Access the web installer: go to 127.0.0.1:8081 2.7 Use the database user name and password: get from /etc/koha/sites/kohadev/koha-conf.xml (default: koha_kohadev, password) 2.8 Continue through the installation process until you reach 'Selecting default settings': . Make appropriate selections to use all the sample data options and settings 2.9 For the 'Onboarding' step - Create Koha administrator patron: . Surname: Acevedo . First name: Henry . Card number: make up a number that doesn't exist in the sample date, for example: 741852963 . Library: Centerville . Patron category: Staff . Username: 23529000035676 (this is an existing value already in the sample data) . Password: a valid password, for example: KohaCon2024 . Confirm password: repeat password used . Submit ==> Error message before patch: The patron has not been created! Card number or Userid may already exist. 2.10 Apply the patch. 2.11 Repeat step 2.9 2.12 The error message is now: The patron was not created! The card number or username already exists. 3. Sign off. Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
37 lines
2.3 KiB
HTML
37 lines
2.3 KiB
HTML
[% FOR m IN messages %]
|
|
[% SWITCH m.code %]
|
|
[% CASE 'success_on_insert_library' %]
|
|
<div class="alert alert-success">Library created!</div>
|
|
[% CASE 'error_on_insert_library' %]
|
|
<div class="alert alert-danger">Library already exists and cannot be modified!</div>
|
|
[% CASE 'success_on_insert_category' %]
|
|
<div class="alert alert-success">Patron category created!</div>
|
|
[% CASE 'error_on_insert_category' %]
|
|
<div class="alert alert-danger">Patron category already exists and cannot be modified!</div>
|
|
[% CASE 'success_on_insert_patron' %]
|
|
<div class="alert alert-success">Administrator account created!</div>
|
|
[% CASE 'error_on_insert_patron' %]
|
|
<div class="alert alert-danger">The patron was not created! The card number or username already exists.</div>
|
|
[% CASE 'ERROR_cardnumber_already_exists' %]
|
|
<div class="alert alert-danger">Card number already in use.</div>
|
|
[% CASE 'ERROR_cardnumber_length' %]
|
|
<div class="alert alert-danger">Card number length is incorrect.</div>
|
|
[% CASE 'ERROR_password_mismatch' %]
|
|
<div class="alert alert-danger">Passwords do not match.</div>
|
|
[% CASE 'success_on_insert_itemtype' %]
|
|
<div class="alert alert-success">New item type created!</div>
|
|
[% CASE 'error_on_insert_itemtype' %]
|
|
<div class="alert alert-danger">Item type already exists!</div>
|
|
[% CASE 'success_on_insert_circ_rule' %]
|
|
<div class="alert alert-success">Circulation rule created!</div>
|
|
[% CASE 'error_on_insert_circ_rule' %]
|
|
<div class="alert alert-danger">Circulation rule not created!</div>
|
|
[% CASE 'ERROR_password_too_short' %]
|
|
<div class="alert alert-danger">The patron has not been created the entered password was too short</div>
|
|
[% CASE 'ERROR_password_too_weak' %]
|
|
<div class="alert alert-danger">The patron has not been created the entered password was too weak, must contain at least one uppercase, and lower case letter and one number</div>
|
|
[% CASE 'ERROR_password_has_whitespaces' %]
|
|
<div class="alert alert-danger">The patron has not been created the entered password contained whitespaces</div>
|
|
[% CASE %][% message | html %]
|
|
[% END %]
|
|
[% END %]
|