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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smtp_servers.tt (-1 / +1 lines)
Lines 401-407 Link Here
401
                    {
401
                    {
402
                        "data": function( row, type, val, meta ) {
402
                        "data": function( row, type, val, meta ) {
403
                            if ( row.debug ) {
403
                            if ( row.debug ) {
404
                                return _("On");
404
                                return "[% tp("Active", "On") | html %]";
405
                            }
405
                            }
406
                            else {
406
                            else {
407
                                return _("Off");
407
                                return _("Off");
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt (-3 / +2 lines)
Lines 319-327 Link Here
319
                  <option value="<">Before</option>
319
                  <option value="<">Before</option>
320
                [% END %]
320
                [% END %]
321
                [% IF query.param('datelastborrowed_op') == '=' %]
321
                [% IF query.param('datelastborrowed_op') == '=' %]
322
                  <option value="=" selected="selected">On</option>
322
                  <option value="=" selected="selected">[% tp('On specific date', 'On') | html %]</option>
323
                [% ELSE %]
323
                [% ELSE %]
324
                  <option value="=">On</option>
324
                  <option value="=">[% tp('On specific date', 'On') | html %]</option>
325
                [% END %]
325
                [% END %]
326
              </select>
326
              </select>
327
              <input type="text" name="datelastborrowed" value="[% query.param('datelastborrowed') | html %]"/>
327
              <input type="text" name="datelastborrowed" value="[% query.param('datelastborrowed') | html %]"/>
328
- 

Return to bug 37781