Remove ellipsis from internationalized notifications.

This commit is contained in:
Peter Fogg
2013-07-11 11:26:17 -04:00
parent 975e28e9dc
commit f3837009af
3 changed files with 4 additions and 4 deletions

View File

@@ -713,7 +713,7 @@ function saveSetSectionScheduleDate(e) {
});
var saving = new CMS.Views.Notification.Saving({
title: gettext("Saving…"),
title: gettext("Saving") + "…",
maxShown: 1250
});
saving.show();

View File

@@ -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();

View File

@@ -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({}, {