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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc (-5 / +17 lines)
Lines 113-119 $.widget.bridge('uitooltip', $.ui.tooltip); Link Here
113
            "ti,phr": _("Title phrase"),
113
            "ti,phr": _("Title phrase"),
114
            "se": _("Series"),
114
            "se": _("Series"),
115
            "se,wrdl": _("Series title"),
115
            "se,wrdl": _("Series title"),
116
            "callnum": _("Call Number"),
116
            "callnum": _("Call number"),
117
            "location": _("Shelving location"),
117
            "location": _("Shelving location"),
118
            "au": _("Author"),
118
            "au": _("Author"),
119
            "au,phr": _("Author phrase"),
119
            "au,phr": _("Author phrase"),
Lines 129-143 $.widget.bridge('uitooltip', $.ui.tooltip); Link Here
129
            "sn": _("Standard number"),
129
            "sn": _("Standard number"),
130
            "nb": _("ISBN"),
130
            "nb": _("ISBN"),
131
            "ns": _("ISSN"),
131
            "ns": _("ISSN"),
132
            "bc": _("Barcode")
132
            "bc": _("Barcode"),
133
            "an": _("Authority number")
133
        };
134
        };
134
        var limit_xlate = {
135
        var limit_xlate = {
135
            "mc-itype": _("Type"),
136
            "itype": _("Item type"),
137
            "mc-itype": _("Item type"),
138
            "location": _("Location"),
139
            "mc-loc": _("Location"),
140
            "mc-ccode":_("Collection"),
136
            "ln": _("Language"),
141
            "ln": _("Language"),
137
            "branch": _("Branch"),
142
            "branch": _("Library"),
143
            "holdingbranch": _("Holding library"),
144
            "homebranch": _("Home library"),
138
            "aud": _("Audience"),
145
            "aud": _("Audience"),
139
            "l-format": _("Format"),
146
            "l-format": _("Format"),
140
            "ctype": _("Content Type"),
147
            "ctype": _("Content type"),
148
            "au": _("Author"),
149
            "se": _("Series"),
150
            "su-geo": _("Place"),
151
            "su-ut": _("Title"),
152
            "su-to": _("Topic"),
141
            "yr": _("Year")
153
            "yr": _("Year")
142
        };
154
        };
143
        var limit_qualifier_xlate = {
155
        var limit_qualifier_xlate = {
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/search.js (-2 / +1 lines)
Lines 40-46 KOHA.Search = new function() { Link Here
40
    this.limit_xlate = function(limit_desc) {
40
    this.limit_xlate = function(limit_desc) {
41
        $.each(this.limit_xlate_table, function (key, val) {
41
        $.each(this.limit_xlate_table, function (key, val) {
42
            var key_re = new RegExp('\\b' + key + ':', 'g');
42
            var key_re = new RegExp('\\b' + key + ':', 'g');
43
            limit_desc = limit_desc.replace(key_re, val + ':');
43
            limit_desc = limit_desc.replace(key_re, val + ': ');
44
            key_re = new RegExp('\\b' + key + ',', 'g');
44
            key_re = new RegExp('\\b' + key + ',', 'g');
45
            limit_desc = limit_desc.replace(key_re, val + ',');
45
            limit_desc = limit_desc.replace(key_re, val + ',');
46
        });
46
        });
47
- 

Return to bug 15434