1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

Feature #3748: Add missing require locale to notifier.js

This commit is contained in:
Carlos Martín 2015-06-02 18:47:14 +02:00
parent fa87351868
commit 7d1c57c009

View File

@ -1,6 +1,8 @@
define(function(require) {
require('jgrowl');
var Locale = require('utils/locale');
//Notification of submission of action
var _notifySubmit = function(action, args, extra_param) {
var action_text = action.replace(/OpenNebula\./, '').replace(/\./, ' ');
@ -53,7 +55,7 @@ define(function(require) {
};
if (!message) {
_notifyError(tr("Cannot contact server: is it running and reachable?"));
_notifyError(Locale.tr("Cannot contact server: is it running and reachable?"));
return false;
};
@ -68,7 +70,7 @@ define(function(require) {
}
if (message.match(/^Network is unreachable .+$/)) {
_notifyError(tr("Network is unreachable: is OpenNebula running?"));
_notifyError(Locale.tr("Network is unreachable: is OpenNebula running?"));
return false;
};
@ -84,7 +86,7 @@ define(function(require) {
} else if (m = message.match(auth_error)) {
method = m[1];
object = m[3];
reason = tr("Unauthorized");
reason = Locale.tr("Unauthorized");
};
if (m) {