From 7ae534799b514bffdd588db45d65cd2e39c4f68e Mon Sep 17 00:00:00 2001 From: Brian Talbot Date: Thu, 16 May 2013 16:33:32 -0400 Subject: [PATCH] studio - revises error message copy when section name is left blank on outline view --- cms/static/js/views/section.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cms/static/js/views/section.js b/cms/static/js/views/section.js index 96f28d62c8..a3fe6e03f1 100644 --- a/cms/static/js/views/section.js +++ b/cms/static/js/views/section.js @@ -70,11 +70,11 @@ CMS.Views.SectionEdit = Backbone.View.extend({ showInvalidMessage: function(model, error, options) { var that = this; var msg = new CMS.Models.ErrorMessage({ - title: gettext("Validation Error"), + title: gettext("Your change could not be saved"), message: error, actions: { primary: { - text: gettext("Dismiss"), + text: gettext("Return and resolve this issue"), click: function(view) { view.hide(); that.$("input[type=text]").focus();