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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cash_registers.tt (-3 / +3 lines)
Lines 46-54 Link Here
46
                    [% CASE 'error_on_update' %]
46
                    [% CASE 'error_on_update' %]
47
                        An error occurred when updating this cash register.
47
                        An error occurred when updating this cash register.
48
                    [% CASE 'success_on_default' %]
48
                    [% CASE 'success_on_default' %]
49
                        Branch default updated successfully.
49
                        Library default updated successfully.
50
                    [% CASE 'error_on_update' %]
50
                    [% CASE 'error_on_update' %]
51
                        An error on setting branch default.
51
                        An error on setting library default.
52
                    [% CASE 'success_on_archive' %]
52
                    [% CASE 'success_on_archive' %]
53
                        Cash register archived successfully.
53
                        Cash register archived successfully.
54
                    [% CASE 'success_on_restore' %]
54
                    [% CASE 'success_on_restore' %]
Lines 129-135 Link Here
129
                       <th>Name</th>
129
                       <th>Name</th>
130
                       <th>Description</th>
130
                       <th>Description</th>
131
                       <th>Library</th>
131
                       <th>Library</th>
132
                       <th>Default</th>
132
                       <th>Library default</th>
133
                       <th>Initial float</th>
133
                       <th>Initial float</th>
134
                       <th>Actions</th>
134
                       <th>Actions</th>
135
                   </thead>
135
                   </thead>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt (-2 / +1 lines)
Lines 101-107 Link Here
101
    <p>
101
    <p>
102
        <label for="register_id">Cash register:</label>
102
        <label for="register_id">Cash register:</label>
103
        <select name="register_id" id="register_id" class="input" tabindex="4">
103
        <select name="register_id" id="register_id" class="input" tabindex="4">
104
            <option id="noregister" value="" selected="selected">Branch default</option>
104
            <option id="noregister" value="" selected="selected">Library default</option>
105
            [% FOREACH r IN Registers.all() %]
105
            [% FOREACH r IN Registers.all() %]
106
            <option class="[% r.branch | html %] [% IF r.branch_default %]default[% END %]" value="[% r.id | html %]" disabled hidden>[% r.name | html %]</option>
106
            <option class="[% r.branch | html %] [% IF r.branch_default %]default[% END %]" value="[% r.id | html %]" disabled hidden>[% r.name | html %]</option>
107
            [% END %]
107
            [% END %]
108
- 

Return to bug 24786