Commit f3837009 by Peter Fogg

Remove ellipsis from internationalized notifications.

parent 975e28e9
...@@ -713,7 +713,7 @@ function saveSetSectionScheduleDate(e) { ...@@ -713,7 +713,7 @@ function saveSetSectionScheduleDate(e) {
}); });
var saving = new CMS.Views.Notification.Saving({ var saving = new CMS.Views.Notification.Saving({
title: gettext("Saving…"), title: gettext("Saving") + "…",
maxShown: 1250 maxShown: 1250
}); });
saving.show(); saving.show();
......
...@@ -23,7 +23,7 @@ CMS.Models.Section = Backbone.Model.extend({ ...@@ -23,7 +23,7 @@ CMS.Models.Section = Backbone.Model.extend({
showNotification: function() { showNotification: function() {
if(!this.msg) { if(!this.msg) {
this.msg = new CMS.Views.Notification.Saving({ this.msg = new CMS.Views.Notification.Saving({
title: gettext("Saving…") title: gettext("Saving") + "…"
}); });
} }
this.msg.show(); this.msg.show();
......
...@@ -35,7 +35,7 @@ CMS.Views.ShowTextbook = Backbone.View.extend({ ...@@ -35,7 +35,7 @@ CMS.Views.ShowTextbook = Backbone.View.extend({
click: function(view) { click: function(view) {
view.hide(); view.hide();
var delmsg = new CMS.Views.Notification.Saving({ var delmsg = new CMS.Views.Notification.Saving({
title: gettext("Deleting…") title: gettext("Deleting") + "…"
}).show(); }).show();
textbook.destroy({ textbook.destroy({
complete: function() { complete: function() {
...@@ -122,7 +122,7 @@ CMS.Views.EditTextbook = Backbone.View.extend({ ...@@ -122,7 +122,7 @@ CMS.Views.EditTextbook = Backbone.View.extend({
this.setValues(); this.setValues();
if(!this.model.isValid()) { return; } if(!this.model.isValid()) { return; }
var saving = new CMS.Views.Notification.Saving({ var saving = new CMS.Views.Notification.Saving({
title: gettext("Saving…") title: gettext("Saving") + "…"
}).show(); }).show();
var that = this; var that = this;
this.model.save({}, { this.model.save({}, {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment