https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 --- Comment #26 from Victor Grousset/tuxayo <victor@tuxayo.net> --- Comment on attachment 173753 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=173753 Bug 36221: OPAC Styling Review of attachment 173753: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=36221&attachment=173753) ----------------------------------------------------------------- ::: Koha/ILL/Backend/shared-includes/custom_fields.inc @@ +7,5 @@
[% FOREACH key IN keys %] <li class="form-horizontal"> + [% IF opac %] + <input type="text" placeholder="key" class="form-control input-fluid custom-field-input custom-name" name="custom_key" value="[% key | html %]"> + <input type="text" placeholder="value" class="form-control input-fluid custom-field-input" name="custom_value" id="custom-value" value="[% values.$i | html %]">
After checking. The two placeholders are not translatable. ::: Koha/ILL/Backend/shared-includes/shared.js @@ +7,5 @@
+ '<input type="text" class="custom-name ' + + ( opac ? 'form-control input-fluid custom-field-input' : '') + + '" name="custom_key" placeholder="key">' + + '<input type="text" id="custom-value" name="custom_value" class="' + + ( opac ? 'form-control input-fluid custom-field-input' : '') +'" placeholder="value"> ' +
These placeholders certainly aren't translatable either. -- You are receiving this mail because: You are watching all bug changes.