@@ -, +, @@ + wording changes. --- admin/categorie.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) --- a/admin/categorie.pl +++ a/admin/categorie.pl @@ -257,7 +257,6 @@ elsif ( $op eq 'add_validate' ) { if ( $inserted ) { push @messages, { type => 'message', code => 'success_on_insert' }; } else { - $searchfield = q||; push @messages, { type => 'error', code => 'error_on_insert' }; } } @@ -267,6 +266,7 @@ elsif ( $op eq 'add_validate' ) { { categorycode => $input->param('categorycode') }, $template ); } + $searchfield = q||; $op = 'list'; # END $OP eq ADD_VALIDATE --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt @@ -111,13 +111,13 @@
[% SWITCH m.code %] [% CASE 'error_on_insert' %] - An error occurred when inserting this patron category. Perhaps the category code already exists. + An error occurred when inserting this patron category. The patron category might already exist. [% CASE 'error_on_delete' %] - An error occurred when deleteing this patron category. Check the logs. + An error occurred when deleting this patron category. Check the logs. [% CASE 'success_on_insert' %] - Patron category inserted with success. + Patron category added successfully [% CASE 'success_on_delete' %] - Patron category deleted with success. + Patron category deleted successfully. [% CASE %] [% m.code %] [% END %] --