diff --git a/cluster-useradmin/config.info b/cluster-useradmin/config.info index 2b15bad63..f9cea8dec 100644 --- a/cluster-useradmin/config.info +++ b/cluster-useradmin/config.info @@ -3,9 +3,9 @@ sort_mode=Sort hosts by,1,1-Hostname,0-Order added,2-Description table_mode=Show hosts as,1,1-Table,0-Icons conf_host_links=Provide a link to modify hosts?,1,1-Yes,0-No line2=Users and Groups Options,11 -conf_add_user=Allow user add,1,1-Yes,0-No -conf_add_group=Allow group add,1,1-Yes,0-No -conf_find_user=Allow user database searching,1,1-Yes,0-No -conf_find_group=Allow group database searching,1,1-Yes,0-No -conf_allow_refresh=Allow refresh of user and group lists,1,1-Yes,0-No -conf_allow_sync=Allow server synchronization,1,1-Yes,0-No +conf_add_user=Allow user add?,1,1-Yes,0-No +conf_add_group=Allow group add?,1,1-Yes,0-No +conf_find_user=Allow user database searching?,1,1-Yes,0-No +conf_find_group=Allow group database searching?,1,1-Yes,0-No +conf_allow_refresh=Allow refresh of user and group lists?,1,1-Yes,0-No +conf_allow_sync=Allow server synchronization?,1,1-Yes,0-No diff --git a/cluster-useradmin/edit_host.cgi b/cluster-useradmin/edit_host.cgi index ebacf9ba6..6715b7fc3 100755 --- a/cluster-useradmin/edit_host.cgi +++ b/cluster-useradmin/edit_host.cgi @@ -52,7 +52,7 @@ print &ui_buttons_end(); # Show users and groups print &ui_hr(); -print &ui_table_start($text{'index_users'}, undef, 2); +print &ui_table_start($text{'host_users'}, undef, 2); my @ugrid; foreach my $u (@{$host->{'users'}}) { push(@ugrid, &ui_link("edit_user.cgi?user=".&urlize($u->{'user'}). @@ -61,7 +61,7 @@ foreach my $u (@{$host->{'users'}}) { print &ui_table_row(undef, &ui_grid_table(\@ugrid, 4), 2); print &ui_table_end(); -print &ui_table_start($text{'index_groups'}, undef, 2); +print &ui_table_start($text{'host_groups'}, undef, 2); my @ggrid; foreach $g (@{$host->{'groups'}}) { push(@ggrid, &ui_link("edit_group.cgi?group=".&urlize($g->{'group'}). diff --git a/cluster-useradmin/lang/en b/cluster-useradmin/lang/en index a3936aae9..272a7ea2d 100644 --- a/cluster-useradmin/lang/en +++ b/cluster-useradmin/lang/en @@ -37,6 +37,8 @@ host_refresh=Refresh Users and Groups host_users=Number of users host_groups=Number of groups host_return=server details +host_users=Users on Server +host_groups=Groups on Server refresh_title=Refresh Users and Groups refresh_header=Re-requesting user and group lists from all servers ..