@@ -, +, @@ image -Set syspref LocalCoverImages and OPACLocalCoverImages to Allow -A new tab 'Images' appear in bib record detail on Intranet. -Notice about the phrase "Please upload one" -Apply the patch and reload the page. -New phrase appear "Select the image file to upload" with button Upload -Update translation files : cd misc/translator; perl translate update es-ES -You will see in es-ES-staff-prog.po the new entry -You can see the result installing the translation --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -84,8 +84,8 @@ function verify_images() { var no_images_msg = _("No images have been uploaded for this bibliographic record yet."); no_images_msg = '

' + no_images_msg + '

'; [% IF ( CAN_user_tools_upload_local_cover_images ) %] - var please_upload = _("Please %supload%s one.").format( - "", + var please_upload = _("Please select the image file to upload. %sUpload%s").format( + "", ""); no_images_msg += "

" + please_upload + '

'; [% END %] --