Commit f3837009 by Peter Fogg

Remove ellipsis from internationalized notifications.

parent 975e28e9
......@@ -713,7 +713,7 @@ function saveSetSectionScheduleDate(e) {
});
var saving = new CMS.Views.Notification.Saving({
title: gettext("Saving…"),
title: gettext("Saving") + "…",
maxShown: 1250
});
saving.show();
......
......@@ -23,7 +23,7 @@ CMS.Models.Section = Backbone.Model.extend({
showNotification: function() {
if(!this.msg) {
this.msg = new CMS.Views.Notification.Saving({
title: gettext("Saving…")
title: gettext("Saving") + "…"
});
}
this.msg.show();
......
......@@ -35,7 +35,7 @@ CMS.Views.ShowTextbook = Backbone.View.extend({
click: function(view) {
view.hide();
var delmsg = new CMS.Views.Notification.Saving({
title: gettext("Deleting…")
title: gettext("Deleting") + "…"
}).show();
textbook.destroy({
complete: function() {
......@@ -122,7 +122,7 @@ CMS.Views.EditTextbook = Backbone.View.extend({
this.setValues();
if(!this.model.isValid()) { return; }
var saving = new CMS.Views.Notification.Saving({
title: gettext("Saving…")
title: gettext("Saving") + "…"
}).show();
var that = this;
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