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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc (-12 / +12 lines)
Lines 25-42 function Date_from_syspref(dstring) { Link Here
25
   jQueryUI we expose the localization strings in the default configuration */
25
   jQueryUI we expose the localization strings in the default configuration */
26
jQuery(function($){
26
jQuery(function($){
27
    $.datepicker.regional[''] = {
27
    $.datepicker.regional[''] = {
28
        closeText: _('Done'),
28
        closeText: _("Done"),
29
        prevText: _('Prev'),
29
        prevText: _("Prev"),
30
        nextText: _('Next'),
30
        nextText: _("Next"),
31
        currentText: _('Today'),
31
        currentText: _("Today"),
32
        monthNames: [_('January'),_('February'),_('March'),_('April'),_('May'),_('June'),
32
        monthNames: [_("January"),_("February"),_("March"),_("April"),_("May"),_("June"),
33
        _('July'),_('August'),_('September'),_('October'),_('November'),_('December')],
33
        _("July"),_("August"),_("September"),_("October"),_("November"),_("December")],
34
        monthNamesShort: [_('Jan'), _('Feb'), _('Mar'), _('Apr'), _('May'), _('Jun'),
34
        monthNamesShort: [_("Jan"), _("Feb"), _("Mar"), _("Apr"), _("May"), _("Jun"),
35
        _('Jul'), _('Aug'), _('Sep'), _('Oct'), _('Nov'), _('Dec')],
35
        _("Jul"), _("Aug"), _("Sep"), _("Oct"), _("Nov"), _("Dec")],
36
        dayNames: [_('Sunday'), _('Monday'), _('Tuesday'), _('Wednesday'), _('Thursday'), _('Friday'), _('Saturday')],
36
        dayNames: [_("Sunday"), _("Monday"), _("Tuesday"), _("Wednesday"), _("Thursday"), _("Friday"), _("Saturday")],
37
        dayNamesShort: [_('Sun'), _('Mon'), _('Tue'), _('Wed'), _('Thu'), _('Fri'), _('Sat')],
37
        dayNamesShort: [_("Sun"), _("Mon"), _("Tue"), _("Wed"), _("Thu"), _("Fri"), _("Sat")],
38
        dayNamesMin: [_('Su'),_('Mo'),_('Tu'),_('We'),_('Th'),_('Fr'),_('Sa')],
38
        dayNamesMin: [_("Su"),_("Mo"),_("Tu"),_("We"),_("Th"),_("Fr"),_("Sa")],
39
        weekHeader: _('Wk'),
39
        weekHeader: _("Wk"),
40
        dateFormat: '[% IF ( dateformat_us ) %]mm/dd/yy[% ELSIF ( dateformat_metric ) %]dd/mm/yy[% ELSE %]yy-mm-dd[% END %]',
40
        dateFormat: '[% IF ( dateformat_us ) %]mm/dd/yy[% ELSIF ( dateformat_metric ) %]dd/mm/yy[% ELSE %]yy-mm-dd[% END %]',
41
        firstDay: [% CalendarFirstDayOfWeek %],
41
        firstDay: [% CalendarFirstDayOfWeek %],
42
        isRTL: [% IF ( bidi ) %]true[% ELSE %]false[% END %],
42
        isRTL: [% IF ( bidi ) %]true[% ELSE %]false[% END %],
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc (-1 / +1 lines)
Lines 31-37 function confirm_deletion() { Link Here
31
	if (count>0){
31
	if (count>0){
32
		    is_confirmed= alert(_('There are [ '+ count +' ] item(s) attached to this record \n You must delete all items before deleting this record.'));
32
		    is_confirmed= alert(_('There are [ '+ count +' ] item(s) attached to this record \n You must delete all items before deleting this record.'));
33
		    } else{
33
		    } else{
34
		    is_confirmed= confirm(_('Are you sure you want to delete this record? '));
34
		    is_confirmed= confirm(_("Are you sure you want to delete this record? "));
35
	}
35
	}
36
36
37
     if (is_confirmed) {
37
     if (is_confirmed) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc (-2 / +2 lines)
Lines 3-16 Link Here
3
    //<![CDATA[
3
    //<![CDATA[
4
[% IF ( CAN_user_borrowers ) %]
4
[% IF ( CAN_user_borrowers ) %]
5
function confirm_deletion() {
5
function confirm_deletion() {
6
    var is_confirmed = window.confirm(_('Are you sure you want to delete this patron? This cannot be undone.'));
6
    var is_confirmed = window.confirm(_("Are you sure you want to delete this patron? This cannot be undone."));
7
    if (is_confirmed) {
7
    if (is_confirmed) {
8
        window.location='/cgi-bin/koha/members/deletemem.pl?member=[% borrowernumber %]';
8
        window.location='/cgi-bin/koha/members/deletemem.pl?member=[% borrowernumber %]';
9
    }
9
    }
10
}
10
}
11
11
12
[% IF ( is_child ) %]function confirm_updatechild() {
12
[% IF ( is_child ) %]function confirm_updatechild() {
13
    var is_confirmed = window.confirm(_('Are you sure you want to update this child to an Adult category?  This cannot be undone.'));
13
    var is_confirmed = window.confirm(_("Are you sure you want to update this child to an Adult category?  This cannot be undone."));
14
    if (is_confirmed) {
14
    if (is_confirmed) {
15
        window.location='/cgi-bin/koha/members/update-child.pl?op=update&borrowernumber=[% borrowernumber %]&catcode=[% catcode %]&catcode_multi=[% CATCODE_MULTI %]';
15
        window.location='/cgi-bin/koha/members/update-child.pl?op=update&borrowernumber=[% borrowernumber %]&catcode=[% catcode %]&catcode_multi=[% CATCODE_MULTI %]';
16
    }
16
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/acq.js (-1 / +1 lines)
Lines 384-390 function closeandprint(bg){ Link Here
384
	if(document.location = '/cgi-bin/koha/acqui/basketgroup.pl?op=closeandprint&amp;basketgroupid=' + bg ){
384
	if(document.location = '/cgi-bin/koha/acqui/basketgroup.pl?op=closeandprint&amp;basketgroupid=' + bg ){
385
		setTimeout("window.location.reload();",3000);
385
		setTimeout("window.location.reload();",3000);
386
	}else{
386
	}else{
387
		alert(_('Error downloading the file'));
387
		alert(_("Error downloading the file"));
388
	}
388
	}
389
}
389
}
390
390
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/ajax.js (-4 / +4 lines)
Lines 15-38 KOHA.AJAX = { Link Here
15
        KOHA.xhr = xhr;
15
        KOHA.xhr = xhr;
16
        if ( !xhr.getResponseHeader( 'content-type' ).match( 'application/json' ) ) {
16
        if ( !xhr.getResponseHeader( 'content-type' ).match( 'application/json' ) ) {
17
            // Something really failed
17
            // Something really failed
18
            humanMsg.displayAlert( MSG_INTERNAL_SERVER_ERROR );
18
            humanMsg.displayAlert( _("Internal Server Error, please reload the page") );
19
            return;
19
            return;
20
        }
20
        }
21
21
22
        var error = eval( '(' + xhr.responseText + ')' );
22
        var error = eval( '(' + xhr.responseText + ')' );
23
23
24
        if ( error.type == 'auth' ) {
24
        if ( error.type == 'auth' ) {
25
            humanMsg.displayMsg( MSG_SESSION_TIMED_OUT );
25
            humanMsg.displayMsg( _("You need to log in again, your session has timed out") );
26
        }
26
        }
27
27
28
        if ( callback ) {
28
        if ( callback ) {
29
            callback( error );
29
            callback( error );
30
        } else {
30
        } else {
31
            humanMsg.displayAlert( MSG_DATA_NOT_SAVED );
31
            humanMsg.displayAlert( _("Error; your data might not have been saved") );
32
        }
32
        }
33
    },
33
    },
34
    MarkRunning: function ( selector, text ) {
34
    MarkRunning: function ( selector, text ) {
35
        text = text || MSG_LOADING;
35
        text = text || _("Loading...");
36
        $( selector )
36
        $( selector )
37
            .attr( 'disabled', 'disabled' )
37
            .attr( 'disabled', 'disabled' )
38
            .each( function () {
38
            .each( function () {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-5 / +5 lines)
Lines 36-61 Link Here
36
<script type="text/javascript">
36
<script type="text/javascript">
37
//<![CDATA[
37
//<![CDATA[
38
            function confirm_close() {
38
            function confirm_close() {
39
                var is_confirmed = confirm(_('Are you sure you want to close this basket?'));
39
                var is_confirmed = confirm(_("Are you sure you want to close this basket?"));
40
                if (is_confirmed) {
40
                if (is_confirmed) {
41
                    window.location = "[% script_name %]?op=close&basketno=[% basketno %]";
41
                    window.location = "[% script_name %]?op=close&basketno=[% basketno %]";
42
                }
42
                }
43
            }
43
            }
44
            function confirm_deletion() {
44
            function confirm_deletion() {
45
                var is_confirmed = confirm(_('Are you sure you want to delete this basket?'));
45
                var is_confirmed = confirm(_("Are you sure you want to delete this basket?"));
46
                if (is_confirmed) {
46
                if (is_confirmed) {
47
                    window.location = "[% script_name %]?op=delete_confirm&basketno=[% basketno %]&booksellerid=[% booksellerid %]";
47
                    window.location = "[% script_name %]?op=delete_confirm&basketno=[% basketno %]&booksellerid=[% booksellerid %]";
48
                }
48
                }
49
            }
49
            }
50
            function confirm_delete_item(ordernumber, biblionumber) {
50
            function confirm_delete_item(ordernumber, biblionumber) {
51
                var is_confirmed = confirm(_('Are you sure you want to delete this order ?'));
51
                var is_confirmed = confirm(_("Are you sure you want to delete this order ?"));
52
                if (is_confirmed) {
52
                if (is_confirmed) {
53
                    window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno=[% basketno %]&quantity=0&biblionumber="+biblionumber;
53
                    window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno=[% basketno %]&quantity=0&biblionumber="+biblionumber;
54
                }
54
                }
55
            }
55
            }
56
            
56
            
57
            function confirm_delete_biblio(ordernumber, biblionumber) {
57
            function confirm_delete_biblio(ordernumber, biblionumber) {
58
                var is_confirmed = confirm(_('Are you sure you want to delete this catalog record and order ?'));
58
                var is_confirmed = confirm(_("Are you sure you want to delete this catalog record and order ?"));
59
                if (is_confirmed) {
59
                if (is_confirmed) {
60
                    window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno=[% basketno %]&quantity=0&biblionumber="+biblionumber+"&delbiblio=1";
60
                    window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno=[% basketno %]&quantity=0&biblionumber="+biblionumber+"&delbiblio=1";
61
                    }
61
                    }
Lines 79-85 Link Here
79
<script type="text/javascript">
79
<script type="text/javascript">
80
//<![CDATA[
80
//<![CDATA[
81
            function confirm_reopen(skip) {
81
            function confirm_reopen(skip) {
82
                var is_confirmed = skip || confirm(_('Are you sure you want to reopen this basket?'));
82
                var is_confirmed = skip || confirm(_("Are you sure you want to reopen this basket?"));
83
                if (is_confirmed) {
83
                if (is_confirmed) {
84
                    window.location = "[% script_name %]?op=reopen&basketno=[% basketno %]";
84
                    window.location = "[% script_name %]?op=reopen&basketno=[% basketno %]";
85
                }
85
                }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-1 / +1 lines)
Lines 90-96 function Check(ff) { Link Here
90
90
91
    [% IF (AcqCreateItemOrdering) %]
91
    [% IF (AcqCreateItemOrdering) %]
92
        if(check_additem('[% UniqueItemFields %]') == false) {
92
        if(check_additem('[% UniqueItemFields %]') == false) {
93
            alert(_('Duplicate values detected. Please correct the errors and resubmit.') );
93
            alert(_("Duplicate values detected. Please correct the errors and resubmit.") );
94
            if(tobedeleted) {
94
            if(tobedeleted) {
95
                $(lastitemblock).appendTo('#outeritemblock');
95
                $(lastitemblock).appendTo('#outeritemblock');
96
            }
96
            }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt (+8 lines)
Lines 62-67 function IEEventHandler_KeyDown() { Link Here
62
            if(tobedeleted){
62
            if(tobedeleted){
63
                $(lastitemblock).remove();
63
                $(lastitemblock).remove();
64
            }
64
            }
65
66
            if(check_additem('[% UniqueItemFields %]') == false){
67
                alert(_("Duplicate values detected. Please correct the errors and resubmit.") );
68
                if(tobedeleted) {
69
                    $(lastitemblock).appendTo("#outeritemblock");
70
                }
71
                return false;
72
            };
65
        [% END %]
73
        [% END %]
66
74
67
        return true;
75
        return true;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-2 / +2 lines)
Lines 78-91 Link Here
78
<script type="text/javascript">
78
<script type="text/javascript">
79
//<![CDATA[
79
//<![CDATA[
80
            function confirm_delete_item(ordernumber, basketno, biblionumber) {
80
            function confirm_delete_item(ordernumber, basketno, biblionumber) {
81
                var is_confirmed = confirm(_('Are you sure you want to delete this order ?'));
81
                var is_confirmed = confirm(_("Are you sure you want to delete this order ?"));
82
                if (is_confirmed) {
82
                if (is_confirmed) {
83
                    window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno="+basketno+"&quantity=0&biblionumber="+biblionumber+"&invoiceid=[% invoiceid %]";
83
                    window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno="+basketno+"&quantity=0&biblionumber="+biblionumber+"&invoiceid=[% invoiceid %]";
84
                }
84
                }
85
            }
85
            }
86
            
86
            
87
            function confirm_delete_biblio(ordernumber, basketno, biblionumber) {
87
            function confirm_delete_biblio(ordernumber, basketno, biblionumber) {
88
                var is_confirmed = confirm(_('Are you sure you want to delete this catalog record and order ?'));
88
                var is_confirmed = confirm(_("Are you sure you want to delete this catalog record and order ?"));
89
                if (is_confirmed) {
89
                if (is_confirmed) {
90
                    window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno="+basketno+"&quantity=0&biblionumber="+biblionumber+"&delbiblio=1&invoiceid=[% invoiceid %]";
90
                    window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno="+basketno+"&quantity=0&biblionumber="+biblionumber+"&delbiblio=1&invoiceid=[% invoiceid %]";
91
                    }
91
                    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/biblio_framework.tt (-2 / +2 lines)
Lines 82-88 $(document).ready(function() { Link Here
82
            var filename = $(this).val();
82
            var filename = $(this).val();
83
            if ( ! /(?:\.csv|\.sql|\.ods|\.xml)$/.test(filename)) {
83
            if ( ! /(?:\.csv|\.sql|\.ods|\.xml)$/.test(filename)) {
84
                $(this).css("background-color","yellow");
84
                $(this).css("background-color","yellow");
85
                alert(_('Please select an ods or xml file'));
85
                alert(_("Please select an ods or xml file"));
86
                $(this).val("");
86
                $(this).val("");
87
                $(this).css("background-color","white");
87
                $(this).css("background-color","white");
88
            }
88
            }
Lines 110-116 $(document).ready(function() { Link Here
110
                    return false;
110
                    return false;
111
            }
111
            }
112
            obj.css("background-color","yellow");
112
            obj.css("background-color","yellow");
113
            alert(_('Please select an spreadsheet (csv, ods, xml) or sql file'));
113
            alert(_("Please select an spreadsheet (csv, ods, xml) or sql file"));
114
            obj.val("");
114
            obj.val("");
115
            obj.css("background-color","white");
115
            obj.css("background-color","white");
116
            return false;
116
            return false;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/item_circulation_alerts.tt (-4 / +4 lines)
Lines 42-51 var $branch = "[% branch %]"; Link Here
42
$(function(){
42
$(function(){
43
    $('#alerttabs').tabs();
43
    $('#alerttabs').tabs();
44
44
45
    var blocked            = _('Blocked!');
45
    var blocked            = _("Blocked!");
46
    var saving             = _('Saving...');
46
    var saving             = _("Saving...");
47
    var disabledForAll     = _('Disabled for all');
47
    var disabledForAll     = _("Disabled for all");
48
    var disabledForCurrent = _('Disabled for') + ' ' + $branch;
48
    var disabledForCurrent = _("Disabled for") + ' ' + $branch;
49
49
50
    $('#branch_selector input:submit').hide();
50
    $('#branch_selector input:submit').hide();
51
    $('#branch').change(function(){
51
    $('#branch').change(function(){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt (-1 / +1 lines)
Lines 73-79 $(document).ready(function(){ Link Here
73
	    }
73
	    }
74
	    // If the field is not repeatable, we check if it already exists in the result table
74
	    // If the field is not repeatable, we check if it already exists in the result table
75
	    if (canbeadded == false) {
75
	    if (canbeadded == false) {
76
		alert(_('The field is non-repeatable and already exists in the destination record. Therefore, you cannot add it.'));
76
		alert(_("The field is non-repeatable and already exists in the destination record. Therefore, you cannot add it."));
77
		pField.checked = 0;
77
		pField.checked = 0;
78
	    } else {
78
	    } else {
79
79
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt (-2 / +2 lines)
Lines 64-70 Link Here
64
                        return(document.layouts.action[selected[0]].value);
64
                        return(document.layouts.action[selected[0]].value);
65
                    }
65
                    }
66
                    else {
66
                    else {
67
                        alert(_('Please select only one ')+'[% label_element %]'+_(' to')+op+'.');
67
                        alert(_("Please select only one ")+"[% label_element %]"+_(" to")+op+".");
68
                        return (-1);
68
                        return (-1);
69
                    }
69
                    }
70
                }
70
                }
Lines 73-79 Link Here
73
                        return(document.layouts.action.value);
73
                        return(document.layouts.action.value);
74
                    }
74
                    }
75
                };
75
                };
76
                alert(_('Please select a ')+'[% label_element %].');
76
                alert(_("Please select a ")+"[% label_element %].");
77
                return (-1);
77
                return (-1);
78
            };
78
            };
79
        //]]>
79
        //]]>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-2 / +2 lines)
Lines 39-52 $(document).ready(function() { Link Here
39
    [% IF ( picture ) %]
39
    [% IF ( picture ) %]
40
    // new YAHOO.widget.Button("delpicture");   // FIXME: formatting mismatch between YUI and normal button
40
    // new YAHOO.widget.Button("delpicture");   // FIXME: formatting mismatch between YUI and normal button
41
	$('#delpicture').click(function(){
41
	$('#delpicture').click(function(){
42
		 return confirm(_('Are you sure you want to delete this patron image? This cannot be undone.'));
42
		 return confirm(_("Are you sure you want to delete this patron image? This cannot be undone."));
43
	});
43
	});
44
	$('#manage-patron-image').find("input[value*=Upload]").click(function(){
44
	$('#manage-patron-image').find("input[value*=Upload]").click(function(){
45
        if($("#uploadfile").val() == ""){
45
        if($("#uploadfile").val() == ""){
46
            alert(_("Please choose a file to upload"));
46
            alert(_("Please choose a file to upload"));
47
            return false;
47
            return false;
48
        }
48
        }
49
        return confirm(_('Are you sure you want to replace the current patron image? This cannot be undone.'));
49
        return confirm(_("Are you sure you want to replace the current patron image? This cannot be undone."));
50
	});[% END %]
50
	});[% END %]
51
	$("#renew_all"      ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]"   ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); });
51
	$("#renew_all"      ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]"   ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); });
52
	$("#CheckAllitems"  ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]"   ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });
52
	$("#CheckAllitems"  ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]"   ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt (-2 / +2 lines)
Lines 7-14 Link Here
7
    //<![CDATA[
7
    //<![CDATA[
8
        $(document).ready(function() {
8
        $(document).ready(function() {
9
9
10
        $("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/offline_circ/list.pl\">"+_('Uncheck all')+"<\/a>");
10
        $("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/offline_circ/list.pl\">"+_("Uncheck all")+"<\/a>");
11
        $("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/offline_circ/list.pl\">"+_('Check all')+"<\/a>");
11
        $("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/offline_circ/list.pl\">"+_("Check all")+"<\/a>");
12
            $('#CheckNone').click(function() {
12
            $('#CheckNone').click(function() {
13
                $("#operations").unCheckCheckboxes();
13
                $("#operations").unCheckCheckboxes();
14
                return false;
14
                return false;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/process_koc.tt (-1 / +1 lines)
Lines 18-24 function CheckUpload(f){ Link Here
18
}
18
}
19
function CheckForm(f) {
19
function CheckForm(f) {
20
    if (f.uploadedfileid.value == '') {
20
    if (f.uploadedfileid.value == '') {
21
        alert(_('Please upload a file first.'));
21
        alert(_("Please upload a file first."));
22
    } else {
22
    } else {
23
		$("#fileuploadstatus").hide();
23
		$("#fileuploadstatus").hide();
24
		$("#fileuploadform").slideUp();
24
		$("#fileuploadform").slideUp();
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/manage.tt (-4 / +4 lines)
Lines 38-44 Link Here
38
                        }
38
                        }
39
                    }
39
                    }
40
                    if (batches.length < 1) {
40
                    if (batches.length < 1) {
41
                        alert(_('Please select at least one batch to export.'));
41
                        alert(_("Please select at least one batch to export."));
42
                        return;     // no batch selected
42
                        return;     // no batch selected
43
                    }
43
                    }
44
                    getstr = batches.join("&");
44
                    getstr = batches.join("&");
Lines 47-53 Link Here
47
                    getstr = "batch_id="+document.layouts.action.value;
47
                    getstr = "batch_id="+document.layouts.action.value;
48
                }
48
                }
49
                else {
49
                else {
50
                    alert(_('Please select at least one batch to export.'));
50
                    alert(_("Please select at least one batch to export."));
51
                    return;     // no batch selected
51
                    return;     // no batch selected
52
                }
52
                }
53
                return GB_showCenter('Export Patron Cards', "/cgi-bin/koha/patroncards/print.pl?" + getstr, 700, 800);
53
                return GB_showCenter('Export Patron Cards', "/cgi-bin/koha/patroncards/print.pl?" + getstr, 700, 800);
Lines 64-70 Link Here
64
                        return(document.layouts.action[selected[0]].value);
64
                        return(document.layouts.action[selected[0]].value);
65
                    }
65
                    }
66
                    else {
66
                    else {
67
                        alert(_('Please select only one ')+'[% card_element %]'+_(' to ') + op + '.');
67
                        alert(_("Please select only one ")+"[% card_element %]"+_(" to ") + op + ".");
68
                        return (-1);
68
                        return (-1);
69
                    }
69
                    }
70
                }
70
                }
Lines 73-79 Link Here
73
                        return(document.layouts.action.value);
73
                        return(document.layouts.action.value);
74
                    }
74
                    }
75
                };
75
                };
76
                alert(_('Please select a ')+'[% card_element %].');
76
                alert(_("Please select a ")+"[% card_element %].");
77
                return (-1);
77
                return (-1);
78
            };
78
            };
79
        //]]>
79
        //]]>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-4 / +4 lines)
Lines 97-112 function checkMultiHold() { Link Here
97
        var msg = '';
97
        var msg = '';
98
98
99
        switch (override_items[itemnumber].holdallowed) {
99
        switch (override_items[itemnumber].holdallowed) {
100
            case 0: msg = _( 'This item normally cannot be put on hold.' ); break;
100
            case 0: msg = _("This item normally cannot be put on hold."); break;
101
            case 1: msg = _( 'This item normally cannot be put on hold except for patrons from ' ) + override_items[itemnumber].homebranch + '.'; break;
101
            case 1: msg = _("This item normally cannot be put on hold except for patrons from ") + override_items[itemnumber].homebranch + "."; break;
102
        }
102
        }
103
103
104
        msg += "\n\n" + _( 'Place hold on this item?' );
104
        msg += "\n\n" + _("Place hold on this item?");
105
105
106
        return confirm(msg);
106
        return confirm(msg);
107
    });
107
    });
108
    $("input.warning").click(function() {
108
    $("input.warning").click(function() {
109
        return confirm( _( 'None of these items can normally be put on hold for this patron.' ) + "\n\n" + _( 'Place hold?' ) );
109
        return confirm( _("None of these items can normally be put on hold for this patron.") + "\n\n" + _("Place hold?") );
110
    });
110
    });
111
 	$("#requestany").click(function() {
111
 	$("#requestany").click(function() {
112
		if(this.checked){
112
		if(this.checked){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt (-4 / +4 lines)
Lines 38-44 Link Here
38
		var selected = $("input:checked");
38
		var selected = $("input:checked");
39
39
40
		if (selected.length == 0) {
40
		if (selected.length == 0) {
41
			alert(_('Please select at least one item to export.'));
41
			alert(_("Please select at least one item to export."));
42
			return false;
42
			return false;
43
		}
43
		}
44
		
44
		
Lines 64-70 Link Here
64
	// Checks if the form can be sent (at least one checkbox must be checked)
64
	// Checks if the form can be sent (at least one checkbox must be checked)
65
	function checkForm() {
65
	function checkForm() {
66
	    if ($("input:checked").length == 0) {
66
	    if ($("input:checked").length == 0) {
67
		alert(_('Please select at least one item.'));
67
		alert(_("Please select at least one item."));
68
		return false;
68
		return false;
69
	    }
69
	    }
70
	}
70
	}
Lines 97-109 Link Here
97
	    
97
	    
98
	    // Checks if the beginning date is valid
98
	    // Checks if the beginning date is valid
99
	    if (!parseInt(beginDate)) {
99
	    if (!parseInt(beginDate)) {
100
		alert(_('The beginning date is missing or invalid.'));
100
		alert(_("The beginning date is missing or invalid."));
101
		return false;
101
		return false;
102
	    }
102
	    }
103
103
104
	    // Checks if the ending date is valid
104
	    // Checks if the ending date is valid
105
	    if (!parseInt(endDate)) {
105
	    if (!parseInt(endDate)) {
106
		alert(_('The ending date is missing or invalid.'));
106
		alert(_("The ending date is missing or invalid."));
107
		return false;
107
		return false;
108
	    }
108
	    }
109
109
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt (-2 / +2 lines)
Lines 48-60 td input,td input[type="submit"] { font-size: 85%; padding: 1px; } Link Here
48
		}
48
		}
49
	}
49
	}
50
	var success_approve = function(tag){
50
	var success_approve = function(tag){
51
		// window.alert(_('AJAX approved tag: ') + tag);
51
		// window.alert(_("AJAX approved tag: ") + tag);
52
	};
52
	};
53
	var failure_approve = function(tag){
53
	var failure_approve = function(tag){
54
		window.alert(_("AJAX failed to approve tag: ") + tag);
54
		window.alert(_("AJAX failed to approve tag: ") + tag);
55
	};
55
	};
56
	var success_reject  = function(tag){
56
	var success_reject  = function(tag){
57
		// window.alert(_('AJAX rejected tag: ') + tag);
57
		// window.alert(_("AJAX rejected tag: ") + tag);
58
	};
58
	};
59
	var failure_reject  = function(tag){
59
	var failure_reject  = function(tag){
60
		window.alert(_("AJAX failed to reject tag: ") + tag);
60
		window.alert(_("AJAX failed to reject tag: ") + tag);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt (-4 / +4 lines)
Lines 56-71 Link Here
56
		$('#showHolidayType').val(holidayType);
56
		$('#showHolidayType').val(holidayType);
57
57
58
		if (holidayType == 'exception') {
58
		if (holidayType == 'exception') {
59
			$("#showOperationDelLabel").html(_('Delete this exception.'));
59
			$("#showOperationDelLabel").html(_("Delete this exception."));
60
			$("#holtype").attr("class","key exception").html(_("Holiday exception"));
60
			$("#holtype").attr("class","key exception").html(_("Holiday exception"));
61
		} else if(holidayType == 'weekday') {
61
		} else if(holidayType == 'weekday') {
62
			$("#showOperationDelLabel").html(_('Delete this holiday.'));
62
			$("#showOperationDelLabel").html(_("Delete this holiday."));
63
			$("#holtype").attr("class","key repeatableweekly").html(_("Holiday repeating weekly"));
63
			$("#holtype").attr("class","key repeatableweekly").html(_("Holiday repeating weekly"));
64
		} else if(holidayType == 'daymonth') {
64
		} else if(holidayType == 'daymonth') {
65
			$("#showOperationDelLabel").html(_('Delete this holiday.'));
65
			$("#showOperationDelLabel").html(_("Delete this holiday."));
66
			$("#holtype").attr("class","key repeatableyearly").html(_("Holiday repeating yearly"));
66
			$("#holtype").attr("class","key repeatableyearly").html(_("Holiday repeating yearly"));
67
		} else {
67
		} else {
68
			$("#showOperationDelLabel").html(_('Delete this holiday.'));
68
			$("#showOperationDelLabel").html(_("Delete this holiday."));
69
			$("#holtype").attr("class","key holiday").html(_("Unique holiday"));
69
			$("#holtype").attr("class","key holiday").html(_("Unique holiday"));
70
		}
70
		}
71
		
71
		
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt (-6 / +6 lines)
Lines 237-248 Link Here
237
        var fileSizeInK = Math.round(evt.target.files[0].size/1024);
237
        var fileSizeInK = Math.round(evt.target.files[0].size/1024);
238
238
239
        if (!fileType.match(/comma-separated-values|csv|excel/i)) {
239
        if (!fileType.match(/comma-separated-values|csv|excel/i)) {
240
            alert(_('Uploads limited to csv. Incorrect filetype: ')+fileType);
240
            alert(_("Uploads limited to csv. Incorrect filetype: ")+fileType);
241
            parent.location='quotes-upload.pl';
241
            parent.location='quotes-upload.pl';
242
            return;
242
            return;
243
        }
243
        }
244
        if (fileSizeInK > 512) {
244
        if (fileSizeInK > 512) {
245
            if (!confirm(evt.target.files[0].name+' '+fileSizeInK+_(' KB Do you really want to upload this file?'))) {
245
            if (!confirm(evt.target.files[0].name+' '+fileSizeInK+_(" KB Do you really want to upload this file?"))) {
246
                parent.location='quotes-upload.pl';
246
                parent.location='quotes-upload.pl';
247
                return;
247
                return;
248
            }
248
            }
Lines 268-278 Link Here
268
            success     : function(){
268
            success     : function(){
269
                            var response = JSON.parse(jqXHR.responseText);
269
                            var response = JSON.parse(jqXHR.responseText);
270
                            if (response.success) {
270
                            if (response.success) {
271
                                alert(response.records+_(' quotes saved.'));
271
                                alert(response.records+_(" quotes saved."));
272
                                window.location.reload(true);   // is this the best route?
272
                                window.location.reload(true);   // is this the best route?
273
                            }
273
                            }
274
                            else {
274
                            else {
275
                                alert(response.records+_(' quotes saved, but an error has occurred. Please ask your administrator to check the server log for more details.'));
275
                                alert(response.records+_(" quotes saved, but an error has occurred. Please ask your administrator to check the server log for more details."));
276
                                window.location.reload(true);   // is this the best route?
276
                                window.location.reload(true);   // is this the best route?
277
                            }
277
                            }
278
                          },
278
                          },
Lines 284-292 Link Here
284
              return this.id;
284
              return this.id;
285
        }).get().join(', ');
285
        }).get().join(', ');
286
        if (!idsToDelete) {
286
        if (!idsToDelete) {
287
            alert(_('Please select a quote(s) by clicking the quote id(s) you desire to delete.'));
287
            alert(_("Please select a quote(s) by clicking the quote id(s) you desire to delete."));
288
        }
288
        }
289
        else if (confirm(_('Are you sure you wish to delete quote(s) ')+idsToDelete+'?')) {
289
        else if (confirm(_("Are you sure you wish to delete quote(s) ")+idsToDelete+"?")) {
290
            oTable.$('.selected').each(function(){
290
            oTable.$('.selected').each(function(){
291
                oTable.fnDeleteRow(this);
291
                oTable.fnDeleteRow(this);
292
            });
292
            });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt (-5 / +5 lines)
Lines 11-17 Link Here
11
    <script type="text/javascript">
11
    <script type="text/javascript">
12
    //<![CDATA[
12
    //<![CDATA[
13
    var oTable; /* oTable needs to be global */
13
    var oTable; /* oTable needs to be global */
14
    var sEmptyTable = _('No quotes available. Please use the "Add quote" button to add a quote.'); /* override the default message in datatables-strings.inc */
14
    var sEmptyTable = _("No quotes available. Please use the \"Add quote\" button to add a quote."); /* override the default message in datatables-strings.inc */
15
    $(document).ready(function() {
15
    $(document).ready(function() {
16
        /* NOTE: This is an ajax-source datatable and *not* a server-side sourced datatable. */
16
        /* NOTE: This is an ajax-source datatable and *not* a server-side sourced datatable. */
17
        /* See the datatable docs if you don't understand this difference. */
17
        /* See the datatable docs if you don't understand this difference. */
Lines 116-126 Link Here
116
                    });
116
                    });
117
                }
117
                }
118
                else {
118
                else {
119
                    alert(_('Please supply both the text and source of the quote before saving.'));
119
                    alert(_("Please supply both the text and source of the quote before saving."));
120
                }
120
                }
121
            }
121
            }
122
            else if (e.keyCode == 27) {
122
            else if (e.keyCode == 27) {
123
                if (confirm(_('Are you sure you want to cancel adding this quote?'))) {
123
                if (confirm(_("Are you sure you want to cancel adding this quote?"))) {
124
                    oTable.fnDeleteRow(node);
124
                    oTable.fnDeleteRow(node);
125
                }
125
                }
126
                else {
126
                else {
Lines 149-157 Link Here
149
                  return this.id;
149
                  return this.id;
150
            }).get().join(', ');
150
            }).get().join(', ');
151
            if (!idsToDelete) {
151
            if (!idsToDelete) {
152
                alert(_('Please select a quote(s) by clicking the quote id(s) you desire to delete.'));
152
                alert(_("Please select a quote(s) by clicking the quote id(s) you desire to delete."));
153
            }
153
            }
154
            else if (confirm(_('Are you sure you wish to delete quote(s) ')+idsToDelete+'?')) {
154
            else if (confirm(_("Are you sure you wish to delete quote(s) ")+idsToDelete+"?")) {
155
                oTable.$('.selected').each(function(){
155
                oTable.$('.selected').each(function(){
156
                        var quoteID = $(this).attr('id');
156
                        var quoteID = $(this).attr('id');
157
                            $.ajax({
157
                            $.ajax({
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt (-1 / +1 lines)
Lines 21-27 $(document).ready(function(){ Link Here
21
});
21
});
22
function CheckForm(f) {
22
function CheckForm(f) {
23
    if ($("#fileToUpload").value == '') {
23
    if ($("#fileToUpload").value == '') {
24
        alert(_('Please upload a file first.'));
24
        alert(_("Please upload a file first."));
25
    } else {
25
    } else {
26
        return submitBackgroundJob(f);
26
        return submitBackgroundJob(f);
27
    }
27
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt (-1 / +1 lines)
Lines 20-26 $(document).ready(function(){ Link Here
20
});
20
});
21
function CheckForm(f) {
21
function CheckForm(f) {
22
    if ($("#fileToUpload").value == '') {
22
    if ($("#fileToUpload").value == '') {
23
        alert(_('Please upload a file first.'));
23
        alert(_("Please upload a file first."));
24
    } else {
24
    } else {
25
        return submitBackgroundJob(f);
25
        return submitBackgroundJob(f);
26
    }
26
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt (-3 / +3 lines)
Lines 9-16 var MSG_NO_ITEM_SELECTED = _("Nothing is selected."); Link Here
9
9
10
$(document).ready(function(){
10
$(document).ready(function(){
11
	$("#addbarcode").focus();
11
	$("#addbarcode").focus();
12
    $("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">"+_('Clear all')+"<\/a>");
12
    $("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Clear all")+"<\/a>");
13
    $("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/shelves.pl\">"+_('Select all')+"<\/a>");
13
    $("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Select all")+"<\/a>");
14
    $("#CheckAll").click(function(){
14
    $("#CheckAll").click(function(){
15
        $(".checkboxed").checkCheckboxes();
15
        $(".checkboxed").checkCheckboxes();
16
        return false;
16
        return false;
Lines 37-43 $(document).ready(function(){ Link Here
37
	var checkboxes = $("input:checkbox:checked");
37
	var checkboxes = $("input:checkbox:checked");
38
        var nbCheckbox = checkboxes.length;
38
        var nbCheckbox = checkboxes.length;
39
	if (nbCheckbox != 2) {
39
	if (nbCheckbox != 2) {
40
	    alert(_('Two records must be selected for merging.'));
40
	    alert(_("Two records must be selected for merging."));
41
	} else {
41
	} else {
42
	    location.href='/cgi-bin/koha/cataloguing/merge.pl?biblionumber=' + checkboxes[0].value + '&amp;biblionumber=' + checkboxes[1].value;
42
	    location.href='/cgi-bin/koha/cataloguing/merge.pl?biblionumber=' + checkboxes[0].value + '&amp;biblionumber=' + checkboxes[1].value;
43
	}
43
	}
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-results-grouped.tt (-2 / +2 lines)
Lines 40-51 $(document).ready(function(){ Link Here
40
			var shelfnumber = $("#addto").find("option:selected").attr("id").replace("s","");
40
			var shelfnumber = $("#addto").find("option:selected").attr("id").replace("s","");
41
			[% IF ( loggedinusername ) %]if (vShelfAdd()) {
41
			[% IF ( loggedinusername ) %]if (vShelfAdd()) {
42
			Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?selectedshelf='+shelfnumber+'&' + vShelfAdd());
42
			Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?selectedshelf='+shelfnumber+'&' + vShelfAdd());
43
			}[% ELSE %] alert(_('You must be logged in to create or add to Lists')); [% END %]
43
			}[% ELSE %] alert(_("You must be logged in to create or add to Lists")); [% END %]
44
			return false;
44
			return false;
45
		} else if($("#addto").find("option:selected").attr("value") == "newlist"){
45
		} else if($("#addto").find("option:selected").attr("value") == "newlist"){
46
			[% IF ( loggedinusername ) %]if (vShelfAdd()) {
46
			[% IF ( loggedinusername ) %]if (vShelfAdd()) {
47
			Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?newshelf=1&' + vShelfAdd());
47
			Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?newshelf=1&' + vShelfAdd());
48
			}[% ELSE %] alert(_('You must be logged in to create or add to Lists')); [% END %]
48
			}[% ELSE %] alert(_("You must be logged in to create or add to Lists")); [% END %]
49
			return false;
49
			return false;
50
		}
50
		}
51
		if($("#addto").find("option:selected").attr("value") == "addtocart"){
51
		if($("#addto").find("option:selected").attr("value") == "addtocart"){
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-results.tt (-2 / +2 lines)
Lines 178-189 $(document).ready(function(){ Link Here
178
        } else if($("#addto").find("option:selected").attr("value") == "newlist"){
178
        } else if($("#addto").find("option:selected").attr("value") == "newlist"){
179
            [% IF ( loggedinusername ) %]if (vShelfAdd()) {
179
            [% IF ( loggedinusername ) %]if (vShelfAdd()) {
180
            Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?newshelf=1&' + vShelfAdd());
180
            Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?newshelf=1&' + vShelfAdd());
181
            }[% ELSE %] alert(_('You must be logged in to create or add to lists')); [% END %]
181
            }[% ELSE %] alert(_("You must be logged in to create or add to lists")); [% END %]
182
            return false;
182
            return false;
183
        } else if($("#addto").find("option:selected").attr("value") == "morelists"){
183
        } else if($("#addto").find("option:selected").attr("value") == "morelists"){
184
            [% IF ( loggedinusername ) %]if (vShelfAdd()) {
184
            [% IF ( loggedinusername ) %]if (vShelfAdd()) {
185
            Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?' + vShelfAdd());
185
            Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?' + vShelfAdd());
186
            }[% ELSE %] alert(_('You must be logged in to create or add to lists')); [% END %]
186
            }[% ELSE %] alert(_("You must be logged in to create or add to lists")); [% END %]
187
            return false;
187
            return false;
188
        }
188
        }
189
        if($("#addto").find("option:selected").attr("value") == "addtocart" || $("#addto").attr("class") == "addtocart"){
189
        if($("#addto").find("option:selected").attr("value") == "addtocart" || $("#addto").attr("class") == "addtocart"){
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-review.tt (-1 / +1 lines)
Lines 8-14 Link Here
8
	 $(document).ready(function() {
8
	 $(document).ready(function() {
9
	 	var inject_old = function(comment) {
9
	 	var inject_old = function(comment) {
10
			[% IF ( reviewid ) %]
10
			[% IF ( reviewid ) %]
11
			[% IF ( cgi_debug ) %]alert(_('injecting OLD comment: ')+comment);[% END %]
11
			[% IF ( cgi_debug ) %]alert(_("injecting OLD comment: ")+comment);[% END %]
12
            parent.opener.$('#c[% reviewid %] p').prev("small").prev("h5").html(_("Your edited comment (preview, pending approval)"));
12
            parent.opener.$('#c[% reviewid %] p').prev("small").prev("h5").html(_("Your edited comment (preview, pending approval)"));
13
			parent.opener.$('#c[% reviewid %] p').html(comment);
13
			parent.opener.$('#c[% reviewid %] p').html(comment);
14
            parent.opener.$('#c[% reviewid %] p').append(" <a href=\"#comment\" onclick=\"Dopop(\'/cgi-bin/koha/opac-review.pl?biblionumber=[% biblionumber | uri %]&amp;reviewid=[% reviewid | uri%]\');\">"+_("Edit")+"<\/a>");
14
            parent.opener.$('#c[% reviewid %] p').append(" <a href=\"#comment\" onclick=\"Dopop(\'/cgi-bin/koha/opac-review.pl?biblionumber=[% biblionumber | uri %]&amp;reviewid=[% reviewid | uri%]\');\">"+_("Edit")+"<\/a>");
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-shelves.tt (-3 / +3 lines)
Lines 82-92 function enableCheckboxActions(){ Link Here
82
82
83
$(function() {
83
$(function() {
84
    [% IF ( opacbookbag ) %]$(".addtocart").show();[% END %]
84
    [% IF ( opacbookbag ) %]$(".addtocart").show();[% END %]
85
    $("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_('Clear all')+"<\/a>");
85
    $("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_("Clear all")+"<\/a>");
86
    $("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_('Select all')+"<\/a>");
86
    $("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_("Select all")+"<\/a>");
87
  $("a.print").show();
87
  $("a.print").show();
88
88
89
    [% IF ( opacuserlogin ) %][% IF ( RequestOnOpac ) %]$("#placehold").html("<a href=\"#\" class=\"hold tag_hides disabled\">"+_('Place hold')+"<\/a>");
89
    [% IF ( opacuserlogin ) %][% IF ( RequestOnOpac ) %]$("#placehold").html("<a href=\"#\" class=\"hold tag_hides disabled\">"+_("Place hold")+"<\/a>");
90
      $("#selections-toolbar a.hold").click(function(){
90
      $("#selections-toolbar a.hold").click(function(){
91
         holdSelections();
91
         holdSelections();
92
         return false;
92
         return false;
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-suggestions.tt (-3 / +2 lines)
Lines 44-51 $.tablesorter.addParser({ Link Here
44
				[% END %]
44
				[% END %]
45
				}
45
				}
46
            });
46
            });
47
            [% IF ( loggedinusername ) %]$("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_('Clear all')+"<\/a>");
47
            [% IF ( loggedinusername ) %]$("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_("Clear all")+"<\/a>");
48
            $("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_('Select all')+"<\/a>");
48
            $("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_("Select all")+"<\/a>");
49
            $("#CheckAll").click(function(){
49
            $("#CheckAll").click(function(){
50
                $(".checkboxed").checkCheckboxes();
50
                $(".checkboxed").checkCheckboxes();
51
                enableCheckboxActions();
51
                enableCheckboxActions();
52
- 

Return to bug 8942