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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt (-1 / +1 lines)
Lines 32-38 Link Here
32
	 });
32
	 });
33
33
34
function confirm_deletion() {
34
function confirm_deletion() {
35
	var is_confirmed = confirm('Are you sure you want to delete this authority?');
35
	var is_confirmed = confirm(_('Are you sure you want to delete this authority?'));
36
	if (is_confirmed) {
36
	if (is_confirmed) {
37
		window.location="authorities-home.pl?op=delete&authid=[% authid %]";
37
		window.location="authorities-home.pl?op=delete&authid=[% authid %]";
38
	}
38
	}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt (-3 / +1 lines)
Lines 5-12 Link Here
5
<script type="text/javascript" >
5
<script type="text/javascript" >
6
//<![CDATA[
6
//<![CDATA[
7
function confirm_deletion(id) {
7
function confirm_deletion(id) {
8
    
8
    var is_confirmed = confirm(_('Are you sure you want to delete this authority?'));
9
    var is_confirmed = confirm('Are you sure you want to delete this authority?');
10
    if (is_confirmed) {
9
    if (is_confirmed) {
11
      window.location="authorities-home.pl?op=delete"
10
      window.location="authorities-home.pl?op=delete"
12
          + "&authid=" + id
11
          + "&authid=" + id
13
- 

Return to bug 13400