mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
Fix some wording
This commit is contained in:
@ -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
|
||||
|
@ -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'}).
|
||||
|
@ -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 ..
|
||||
|
Reference in New Issue
Block a user