summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--install/ui/entity.js14
-rw-r--r--install/ui/test/data/ipa_init.json1
-rw-r--r--ipalib/plugins/internal.py1
3 files changed, 8 insertions, 8 deletions
diff --git a/install/ui/entity.js b/install/ui/entity.js
index bba51f79f..8b05d475a 100644
--- a/install/ui/entity.js
+++ b/install/ui/entity.js
@@ -117,14 +117,12 @@ IPA.facet = function (spec) {
return false;
};
- that.get_content = function() {
- return $('.content', that.container);
- };
-
- that.report_error = function(error_thrown){
- var details = $('.details', that.container).empty();
- details.append('<p>Error: '+error_thrown.name+'</p>');
- details.append('<p>'+error_thrown.message+'</p>');
+ that.report_error = function(error_thrown) {
+ // TODO: The error message should be displayed in the facet footer.
+ // There should be a standard footer section for all facets.
+ that.content.empty();
+ that.content.append('<p>'+IPA.get_message('errors.error', 'Error')+': '+error_thrown.name+'</p>');
+ that.content.append('<p>'+error_thrown.message+'</p>');
};
that.redirect = function() {
diff --git a/install/ui/test/data/ipa_init.json b/install/ui/test/data/ipa_init.json
index 3de974e43..bd89f5eb7 100644
--- a/install/ui/test/data/ipa_init.json
+++ b/install/ui/test/data/ipa_init.json
@@ -15994,6 +15994,7 @@
"validation_title": "Validation error"
},
"errors": {
+ "error": "Error",
"http_error": "HTTP Error",
"internal_error": "Internal Error",
"ipa_error": "IPA Error",
diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py
index f5f577308..b87fa27a3 100644
--- a/ipalib/plugins/internal.py
+++ b/ipalib/plugins/internal.py
@@ -173,6 +173,7 @@ class i18n_messages(Command):
"validation_message": _("Input form contains invalid or missing values."),
},
"errors": {
+ "error": _("Error"),
"http_error": _("HTTP Error"),
"internal_error": _("Internal Error"),
"ipa_error": _("IPA Error"),