Matt Blenkinsop
3b190d625b
__() should be used in .js files, not .tt files To test, apply the patch and update a translation, e.g. fr-FR: > cd misc/translator > perl translate update fr-FR - Open the corresponding .po file for JavaScript strings, in this case misc/translator/po/fr-FR-staff-prog.po - Confirm that the strings are now in the .po file for translation. You should find the lines in the commit Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
64 lines
2.9 KiB
PHP
64 lines
2.9 KiB
PHP
<script>
|
|
(function() {
|
|
/**
|
|
* Format the biblio response from a Koha RESTful API request.
|
|
* @param {Object} biblio The biblio json object as returned from the Koha RESTful API
|
|
* @param {Object} config A configuration object
|
|
* Valid keys are: `link`
|
|
* @return {string} The formatted HTML string
|
|
*/
|
|
window.$biblio_to_html = function(biblio, config) {
|
|
|
|
if (biblio === undefined) {
|
|
return ''; // empty string for no biblio
|
|
}
|
|
|
|
var title = '<span class="biblio-title">';
|
|
if (biblio.title != null && biblio.title != '') {
|
|
title += escape_str(biblio.title);
|
|
} else {
|
|
title += _("No title");
|
|
}
|
|
title += '</span>';
|
|
|
|
// add subtitle
|
|
if (biblio.subtitle != null && biblio.subtitle != '') {
|
|
title += ' <span class="biblio-subtitle">' + escape_str(biblio.subtitle) + '</span>';
|
|
}
|
|
|
|
// set title as link
|
|
if (config && config.link) {
|
|
if (config.link === 'marcdetail') {
|
|
title = '<a href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=' + encodeURIComponent(biblio.biblio_id) + '" class="title">' + title + '</a>';
|
|
} else if (config.link === 'labeled_marc') {
|
|
title = '<a href="/cgi-bin/koha/opac-labeledMARCdetail.pl?biblionumber=' + encodeURIComponent(biblio.biblio_id) + '" class="title">' + title + '</a>';
|
|
} else if (config.link === 'isbd') {
|
|
title = '<a href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=' + encodeURIComponent(biblio.biblio_id) + '" class="title">' + title + '</a>';
|
|
} else {
|
|
title = '<a href="/cgi-bin/koha/opac-detail.pl?biblionumber=' + encodeURIComponent(biblio.biblio_id) + '" class="title">' + title + '</a>';
|
|
}
|
|
}
|
|
|
|
// add medium
|
|
if (biblio.medium != null && biblio.medium != '') {
|
|
title += ' <span class="biblio-medium">' + escape_str(biblio.medium) + '</span>';
|
|
}
|
|
|
|
// add part numbers/names
|
|
let part_numbers = (typeof biblio.part_number === 'string') ? biblio.part_number.split("|") : [];
|
|
let part_names = (typeof biblio.part_name === 'string') ? biblio.part_name.split("|") : [];
|
|
let i = 0;
|
|
while (part_numbers[i] || part_names[i]) {
|
|
if (part_numbers[i]) {
|
|
title += ' <span class="part-number">' + escape_str(part_numbers[i]) + '</span>';
|
|
}
|
|
if (part_names[i]) {
|
|
title += ' <span class="part-name">' + escape_str(part_names[i]) + '</span>';
|
|
}
|
|
i++;
|
|
}
|
|
|
|
return title;
|
|
};
|
|
})();
|
|
</script>
|