View | Details | Raw Unified | Return to bug 23415
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_23415.pl (+11 lines)
Lines 49-53 return { Link Here
49
        );
49
        );
50
50
51
        say $out "Added new system preference 'FineNoRenewalsBlockSelfCheckRenew'";
51
        say $out "Added new system preference 'FineNoRenewalsBlockSelfCheckRenew'";
52
53
        # Fix typo in notice templates: oweing -> owing
54
        $dbh->do(
55
            q{
56
            UPDATE letter
57
            SET content = REPLACE(content, 'auto_too_much_oweing', 'auto_too_much_owing')
58
            WHERE content LIKE '%auto_too_much_oweing%'
59
        }
60
        );
61
62
        say $out "Fixed typo in notice templates: 'oweing' -> 'owing'";
52
    },
63
    },
53
};
64
};
(-)a/installer/data/mysql/en/mandatory/sample_notices.yml (-2 / +2 lines)
Lines 2362-2368 tables: Link Here
2362
            - "You have overdue items."
2362
            - "You have overdue items."
2363
            - "[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]"
2363
            - "[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]"
2364
            - "It's too late to renew this item."
2364
            - "It's too late to renew this item."
2365
            - "[% ELSIF checkout.auto_renew_error == 'auto_too_much_oweing' %]"
2365
            - "[% ELSIF checkout.auto_renew_error == 'auto_too_much_owing' %]"
2366
            - "Your total unpaid fines are too high."
2366
            - "Your total unpaid fines are too high."
2367
            - "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]"
2367
            - "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]"
2368
            - "This item must be renewed at the library."
2368
            - "This item must be renewed at the library."
Lines 2439-2445 tables: Link Here
2439
            - "You have overdue items."
2439
            - "You have overdue items."
2440
            - "[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]"
2440
            - "[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]"
2441
            - "It's too late to renew this item."
2441
            - "It's too late to renew this item."
2442
            - "[% ELSIF checkout.auto_renew_error == 'auto_too_much_oweing' %]"
2442
            - "[% ELSIF checkout.auto_renew_error == 'auto_too_much_owing' %]"
2443
            - "Your total unpaid fines are too high."
2443
            - "Your total unpaid fines are too high."
2444
            - "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]"
2444
            - "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]"
2445
            - "This item must be renewed at the library."
2445
            - "This item must be renewed at the library."
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/renew_strings.inc (-2 / +1 lines)
Lines 15-21 Link Here
15
    <span>Scheduled for automatic renewal and cannot be renewed because the patron's account has expired</span>
15
    <span>Scheduled for automatic renewal and cannot be renewed because the patron's account has expired</span>
16
[% CASE 'auto_renew' %]
16
[% CASE 'auto_renew' %]
17
    <span>Scheduled for automatic renewal</span>
17
    <span>Scheduled for automatic renewal</span>
18
[% CASE 'auto_too_much_oweing' %]
18
[% CASE 'auto_too_much_owing' %]
19
    <span>Scheduled for automatic renewal and cannot be renewed because the patron has too many outstanding charges</span>
19
    <span>Scheduled for automatic renewal and cannot be renewed because the patron has too many outstanding charges</span>
20
[% CASE 'on_reserve' %]
20
[% CASE 'on_reserve' %]
21
    <span>On hold for another patron</span>
21
    <span>On hold for another patron</span>
22
- 

Return to bug 23415