From c5c1fd08ae134aa866dc2dd96dec790a45103c44 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Mon, 1 Jul 2013 17:15:30 -0400 Subject: [PATCH] i18n --- cms/templates/textbooks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/templates/textbooks.html b/cms/templates/textbooks.html index f5c57ea87a..32fec23266 100644 --- a/cms/templates/textbooks.html +++ b/cms/templates/textbooks.html @@ -38,7 +38,7 @@ $(function() { $(window).on("beforeunload", function() { var dirty = textbooks.find(function(textbook) { return textbook.isDirty(); }); if(dirty) { - return "You have unsaved changes. Do you really want to leave this page?"; + return gettext("You have unsaved changes. Do you really want to leave this page?"); } }) })