Bug 36004: Fixed typo in successfully

To test:

1. Turn on the syspref 'OpacCatalogConcerns'

2. Go to view a record in the OPAC and click on "Report a concern" in
   the column located on the right-hand side.

3. Fill out the title on the form and leave everything else the same.
   Click on submit and notice that the message on the screen says "Your
   concern was sucessfully submitted."

4. Apply the patch.

5. Submit a new concern. Notice that the text now has "successfully"
   spelled correctly.

6. Sign off and have a great day! :D

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Laura Escamilla 2024-02-06 16:13:32 +00:00 committed by Katrin Fischer
parent 0fcf48c55f
commit 6bf839d892
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -52,7 +52,7 @@ $(document).ready(function() {
$('#addConcernModal').modal('hide');
$('#concern_body').val('');
$('#concern_title').val('');
$('h1:first').before('<div class="alert alert-success">' + __("Your concern was sucessfully submitted.") + '</div>');
$('h1:first').before('<div class="alert alert-success">' + __("Your concern was successfully submitted.") + '</div>');
},
error: function(data) {
$('#concern-submit-spinner').hide();