@@ -, +, @@ 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 @@ -8,6 +8,7 @@ [%- CASE 'CREDIT' -%]Credit [%- CASE 'LOST_FOUND' -%]Lost item fee refund [%- CASE 'REFUND' -%]Refund + [%- CASE 'CANCELLATION' -%]Cancelled charge [%- CASE -%][% account.credit_type.description | html %] [%- END -%] [%- ELSIF account.debit_type_code -%] @@ -42,6 +43,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 -%] --