Bug 4354 follow-up: correct phrasing of alert
authorJared Camins-Esakov <jcamins@cpbibliography.com>
Fri, 22 Mar 2013 00:04:09 +0000 (20:04 -0400)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Fri, 22 Mar 2013 00:08:09 +0000 (20:08 -0400)
Rather than saying "Are you sure you want to lost your changes" the
message that pops up when a user cancels changes to an existing row
should be "Are you sure you want to cancel your changes?" or something
along those lines. I went with that exact string.

koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt

index a029443..bf7242e 100644 (file)
@@ -6,7 +6,7 @@
 //<![CDATA[
 
 function clear_edit(){
-    var cancel = confirm(_("Are you sure you want to lost your changes?"));
+    var cancel = confirm(_("Are you sure you want to cancel your changes?"));
     if ( !cancel ) return;
     $('#default-circulation-rules td').removeClass('highlighted-row');
     var edit_row = $("#edit_row");