Fix schema page description

This commit is contained in:
Jamie Cameron
2024-08-11 03:48:02 -07:00
parent 90cd81893e
commit b18b9decd4
2 changed files with 7 additions and 1 deletions

View File

@ -18,7 +18,12 @@ if (&get_config_type() == 1) {
} }
# Show a table of all known schema files, with checkboxes # Show a table of all known schema files, with checkboxes
print $text{'schema_pagedesc'},"<p>\n"; if (&get_config_type() == 1) {
print $text{'schema_pagedesc'},"<p>\n";
}
else {
print $text{'schema_pagedesc2'},"<p>\n";
}
@tds = ( $editable ? ( "width=5" ) : ( ), @tds = ( $editable ? ( "width=5" ) : ( ),
"width=20%", "width=65%", "width=10%", "width=5% nowrap" ); "width=20%", "width=65%", "width=10%", "width=5% nowrap" );
print &ui_form_start("save_schema.cgi", "post"); print &ui_form_start("save_schema.cgi", "post");

View File

@ -84,6 +84,7 @@ schema_title=Manage Schema
schema_file=Name schema_file=Name
schema_desc=Description schema_desc=Description
schema_pagedesc=The LDAP schema determines which object classes and attributes can be stored in your LDAP database. This page allows you to select which schema types are supported by your server - but be careful de-selecting any entries that are used by existing objects. schema_pagedesc=The LDAP schema determines which object classes and attributes can be stored in your LDAP database. This page allows you to select which schema types are supported by your server - but be careful de-selecting any entries that are used by existing objects.
schema_pagedesc2=The LDAP schema determines which object classes and attributes can be stored in your LDAP database. Schemas files must be imported before their types can be used to create objects.
schema_err=Failed to save schema schema_err=Failed to save schema
schema_move=Move schema_move=Move
schema_act=Actions.. schema_act=Actions..