@@ -, +, @@ --- C4/Creators/Batch.pm | 2 +- C4/Creators/Layout.pm | 2 +- C4/Creators/Profile.pm | 2 +- C4/Creators/Template.pm | 2 +- .../prog/en/modules/admin/identity_provider_domains.tt | 2 +- .../intranet-tmpl/prog/en/modules/admin/identity_providers.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/restrictions.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/smtp_servers.tt | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) --- a/C4/Creators/Batch.pm +++ a/C4/Creators/Batch.pm @@ -180,7 +180,7 @@ sub delete { @query_params = ($opts{'batch_id'}, $opts{'branch_code'}); } if ($query_params[0] eq '') { # If there is no template id then we cannot delete it - warn sprintf('%s : Cannot delete batch as the batch id is invalid or non-existent.', $call_type); + warn sprintf('%s : Cannot delete batch as the batch ID is invalid or non-existent.', $call_type); return -1; } my $query = "DELETE FROM creator_batches WHERE batch_id = ? AND branch_code =?"; --- a/C4/Creators/Layout.pm +++ a/C4/Creators/Layout.pm @@ -126,7 +126,7 @@ sub delete { push @params, $opts{'layout_id'}, $opts{'creator'}; } if (scalar(@params) < 2) { # If there is no layout id or creator type then we cannot delete it - warn sprintf('%s : Cannot delete layout as the profile id is invalid or non-existent.', $call_type) if !$params[0]; + warn sprintf('%s : Cannot delete layout as the profile ID is invalid or non-existent.', $call_type) if !$params[0]; warn sprintf('%s : Cannot delete layout as the creator type is invalid or non-existent.', $call_type) if !$params[1]; return -1; } --- a/C4/Creators/Profile.pm +++ a/C4/Creators/Profile.pm @@ -106,7 +106,7 @@ sub delete { push @params, $opts{'profile_id'}, $opts{'creator'}; } if (scalar(@params) < 2) { # If there is no profile id or creator type then we cannot delete it - warn sprintf('%s : Cannot delete profile as the profile id is invalid or non-existent.', $call_type) if !$params[0]; + warn sprintf('%s : Cannot delete profile as the profile ID is invalid or non-existent.', $call_type) if !$params[0]; warn sprintf('%s : Cannot delete profile as the creator type is invalid or non-existent.', $call_type) if !$params[1]; return -1; } --- a/C4/Creators/Template.pm +++ a/C4/Creators/Template.pm @@ -146,7 +146,7 @@ sub delete { push @query_params, $opts{'template_id'}, $opts{'creator'}; } if (scalar(@query_params) < 2) { # If there is no template id or creator type then we cannot delete it - warn sprintf('%s : Cannot delete template as the template id is invalid or non-existent.', $call_type) if !$query_params[0]; + warn sprintf('%s : Cannot delete template as the template ID is invalid or non-existent.', $call_type) if !$query_params[0]; warn sprintf('%s : Cannot delete template as the creator type is invalid or non-existent.', $call_type) if !$query_params[1]; return -1; } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/identity_provider_domains.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/identity_provider_domains.tt @@ -70,7 +70,7 @@
[% SWITCH m.code %] [% CASE 'error_on_update' %] - An error occurred trying to open the identity provider domain for editing. The passed id is invalid. + An error occurred trying to open the identity provider domain for editing. The passed ID is invalid. [% CASE 'error_on_insert' %] An error occurred when adding a new identity provider domain. [% CASE 'success_on_update' %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/identity_providers.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/identity_providers.tt @@ -66,7 +66,7 @@
[% SWITCH m.code %] [% CASE 'error_on_update' %] - An error occurred trying to open the identity provider for editing. The passed id is invalid. + An error occurred trying to open the identity provider for editing. The passed ID is invalid. [% CASE 'error_on_insert' %] An error occurred when adding a new identity provider. [% CASE 'success_on_update' %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/restrictions.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/restrictions.tt @@ -162,7 +162,7 @@

Patron restrictions

[% IF searchfield %] - You Searched for [% searchfield | html %] + You searched for [% searchfield | html %] [% END %] [% IF restrictions %]
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smtp_servers.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smtp_servers.tt @@ -64,7 +64,7 @@
[% SWITCH m.code %] [% CASE 'error_on_update' %] - An error occurred trying to open the server for editing. The passed id is invalid. + An error occurred trying to open the server for editing. The passed ID is invalid. [% CASE 'error_on_insert' %] An error occurred when adding the server. The library already has an SMTP server set. [% CASE 'success_on_update' %] --