@@ -, +, @@ translatable and shorten description a bit --- installer/data/mysql/atomicupdate/bug_24603.perl | 2 +- koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) --- a/installer/data/mysql/atomicupdate/bug_24603.perl +++ a/installer/data/mysql/atomicupdate/bug_24603.perl @@ -5,7 +5,7 @@ if ( CheckVersion($DBversion) ) { qq{ INSERT IGNORE INTO account_credit_types (code, description, can_be_added_manually, is_system) VALUES - ('CANCELLATION', 'A cancellation applied to a patron charge', 0, 1) + ('CANCELLATION', 'Cancelled charge', 0, 1) } ); --- a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc @@ -18,6 +18,7 @@ [%- CASE 'Lost Item' -%]Lost item returned [%- CASE 'Writeoff' -%]Writeoff [%- CASE 'Void Payment' -%]Void payment + [%- CASE 'CANCELLATION' -%]Cancelled charge [%- CASE -%][% account_offset.type | html %] [%- END -%] [%- END -%] @@ -65,6 +66,7 @@ [%- CASE 'LOST_FOUND' -%]Lost item fee refund [%- CASE 'OVERPAYMENT' -%]Overpayment refund [%- CASE 'REFUND' -%]Refund + [%- CASE 'CANCELLATION' -%]Cancelled charge [%- CASE -%][% credit_type.description | html %] [%- END -%] [%- END -%] --