diff options
author | Endi S. Dewata <edewata@redhat.com> | 2010-12-06 16:30:10 -0600 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-12-06 20:16:15 -0500 |
commit | 6350686710c49b632ea7b1085e4db6755056d263 (patch) | |
tree | 6a12fdda5ec6f84a9d4654fff57e81ffcdd9730b /install/static/service.js | |
parent | ca436d9ec3210e0c573ea96ae7d6fe71dc9bf943 (diff) | |
download | freeipa.git-6350686710c49b632ea7b1085e4db6755056d263.tar.gz freeipa.git-6350686710c49b632ea7b1085e4db6755056d263.tar.xz freeipa.git-6350686710c49b632ea7b1085e4db6755056d263.zip |
Dialog i18n
The ipa_add_dialog has been fixed to initialize the fields which
will get the labels from metadata. Hard-coded labels have been
removed from field declarations.
The superior() method has been removed because it doesn't work with
multi-level inheritance. Superclass method for now is called using
<class name>_<method> (e.g. widget_init).
Diffstat (limited to 'install/static/service.js')
-rw-r--r-- | install/static/service.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/install/static/service.js b/install/static/service.js index c028eb6a..09fd2eab 100644 --- a/install/static/service.js +++ b/install/static/service.js @@ -76,24 +76,27 @@ function ipa_service_add_dialog(spec) { that.init = function() { - that.add_dialog_init(); - that.add_field(ipa_widget({ name: 'krbprincipalname' })); + // TODO: Replace with i18n label that.add_field(ipa_text_widget({ - 'name': 'service', 'label': 'Service', + 'name': 'service', + 'label': 'Service', 'size': 20, 'undo': false })); + // TODO: Replace with i18n label that.add_field(ipa_text_widget({ 'name': 'host', 'label': 'Host Name', 'size': 40, 'undo': false })); + + that.add_dialog_init(); }; that.create = function() { |