diff options
author | Adam Young <ayoung@redhat.com> | 2011-01-14 15:14:32 -0500 |
---|---|---|
committer | Endi Sukma Dewata <edewata@people01.fedoraproject.org> | 2011-01-15 04:42:49 +0000 |
commit | 285ee9db0ccdac92e0b2b7253483111a5152a465 (patch) | |
tree | 220cd269c969f08bf7569045e20b57a38ceaae6e /install/static/host.js | |
parent | f92c831a323f0e32d8bb2c2c0623fcaa2f273bd7 (diff) | |
download | freeipa-285ee9db0ccdac92e0b2b7253483111a5152a465.tar.gz freeipa-285ee9db0ccdac92e0b2b7253483111a5152a465.tar.xz freeipa-285ee9db0ccdac92e0b2b7253483111a5152a465.zip |
Details to Settings
Using I18N messages for most of the details
Diffstat (limited to 'install/static/host.js')
-rw-r--r-- | install/static/host.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/install/static/host.js b/install/static/host.js index 6b84f87de..2e82936be 100644 --- a/install/static/host.js +++ b/install/static/host.js @@ -56,8 +56,7 @@ IPA.host = function () { that.add_facet(facet); facet = IPA.host_details_facet({ - 'name': 'details', - 'label': 'Details' + 'name': 'details' }); that.add_facet(facet); @@ -132,7 +131,7 @@ IPA.host_details_facet = function (spec) { var section = IPA.details_list_section({ 'name': 'details', - 'label': 'Host Details' + 'label': 'Host Settings' }); that.add_section(section); @@ -481,4 +480,4 @@ IPA.host_managedby_host_facet = function (spec) { }; return that; -};
\ No newline at end of file +}; |