Remove ellipsis from internationalized notifications.
This commit is contained in:
@@ -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({}, {
|
||||
|
||||
Reference in New Issue
Block a user