Commit 288a1967 authored by Łukasz Nowak's avatar Łukasz Nowak

erp5_web_monitoring: Follow ERP5 naming convention

parent 4bc85470
...@@ -187,7 +187,7 @@ ...@@ -187,7 +187,7 @@
}) })
.push(function () { .push(function () {
return RSVP.all([ return RSVP.all([
gadget.notifySubmitted({message: 'Parameters Updated', status: 'success'}) gadget.notifySubmitted({message: 'Data updated.', status: 'success'})
]); ]);
}); });
}) })
......
...@@ -160,7 +160,7 @@ ...@@ -160,7 +160,7 @@
]); ]);
} }
return RSVP.all([ return RSVP.all([
gadget.notifySubmitted({message: 'Parameters Updated', status: 'success'}) gadget.notifySubmitted({message: 'Data updated.', status: 'success'})
]); ]);
}); });
}) })
......
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
return opml_gadget.saveOPML(doc, verify_opml); return opml_gadget.saveOPML(doc, verify_opml);
}) })
.push(function (state) { .push(function (state) {
var msg = {message: 'Document Updated', status: 'success'}; var msg = {message: 'Data updated.', status: 'success'};
if (!state.status) { if (!state.status) {
msg = {message: 'Document update failed', status: "error"}; msg = {message: 'Document update failed', status: "error"};
} }
......
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