From 2b8cdb2c8d2dc2d115a120604267de7ad54e2c7c Mon Sep 17 00:00:00 2001 From: Adam Young Date: Tue, 25 Jan 2011 19:39:08 -0500 Subject: Tab I18N Makes the values for the Top level tabs internationizable, and no longer just passes through their names Also uses the I18N values for SUDO and HBAC as the static text in the Action p[anel title --- install/ui/navigation.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'install/ui/navigation.js') diff --git a/install/ui/navigation.js b/install/ui/navigation.js index 7ae5b656..0b8fe528 100644 --- a/install/ui/navigation.js +++ b/install/ui/navigation.js @@ -82,6 +82,9 @@ function nav_generate_tabs(nls, container, tabclass, depth) var entity = IPA.get_entity(tab.entity); label = entity.label; } + if (tab.label){ + label = tab.label; + } var li = nav_create_tab_li(tab.name, label); ul.append(li); -- cgit