diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-02-16 12:46:59 -0600 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-02-21 15:36:32 -0500 |
commit | 4a8c43aa324beff5bebfa9a699b1dc4b29020731 (patch) | |
tree | 35d4ed4076e0c8e098946c8d96290f03699657a3 /install/ui/serverconfig.js | |
parent | 2e25b2ed27ebe7a0a612d120bda6a23596e21b64 (diff) | |
download | freeipa-4a8c43aa324beff5bebfa9a699b1dc4b29020731.tar.gz freeipa-4a8c43aa324beff5bebfa9a699b1dc4b29020731.tar.xz freeipa-4a8c43aa324beff5bebfa9a699b1dc4b29020731.zip |
I18n update.
Hard-coded messages through out the code have been replaced by i18n
messages obtained from json_metadata and i18n_messages.
Diffstat (limited to 'install/ui/serverconfig.js')
-rw-r--r-- | install/ui/serverconfig.js | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/install/ui/serverconfig.js b/install/ui/serverconfig.js index 46e2e4856..6f54bbabe 100644 --- a/install/ui/serverconfig.js +++ b/install/ui/serverconfig.js @@ -34,8 +34,14 @@ IPA.entity_factories.config = function(){ }).facet( IPA.details_facet(). section( - IPA.stanza({name:'ipaserver', label:'Configuration'}). - input({name:'cn', label:'Name'}). + IPA.stanza({ + name: 'ipaserver', + label: IPA.messages.objects.config.ipaserver + }). + input({ + name: 'cn', + label: IPA.messages.objects.config.cn + }). input({name:'ipacertificatesubjectbase'}). input({name:'ipadefaultloginshell'}). input({name:'ipadefaultprimarygroup'}). |