From bd613e063c69921a09f6092a96b7c936e1bf6a69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Mon, 8 Dec 2014 03:55:15 +0100 Subject: [PATCH] Bug 13400 - Untranslatable "Are you sure you want to delete this authority?" This patch makes the string "Are you sure you want to delete this authority?" translatable using the function _(...) To test, apply patch and check that deleting authorities still works. --- koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt | 2 +- .../intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt index 427e6b0..561ac96 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt @@ -32,7 +32,7 @@ }); function confirm_deletion() { - var is_confirmed = confirm('Are you sure you want to delete this authority?'); + var is_confirmed = confirm(_('Are you sure you want to delete this authority?')); if (is_confirmed) { window.location="authorities-home.pl?op=delete&authid=[% authid %]"; } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt index ebe5491..90da56e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt @@ -5,8 +5,7 @@