2009-09-04 Raul Mateos <raulofpandora@gmail.com>

* include/config_process.php: Update build after last changes.

	* godmode/modules/manage_nc_groups*.php,
	godmode/modules/manage_network_components_form*.php: Unify titles
	improving integrity of appearance.

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1915 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
raulmateos 2009-09-04 11:20:32 +00:00
parent 0d9bf5271f
commit 64ec979126
7 changed files with 20 additions and 9 deletions

View File

@ -1,3 +1,11 @@
2009-09-04 Raul Mateos <raulofpandora@gmail.com>
* include/config_process.php: Update build after last changes.
* godmode/modules/manage_nc_groups*.php,
godmode/modules/manage_network_components_form*.php: Unify titles
improving integrity of appearance.
2009-09-04 Miguel de Dios <miguel.dedios@artica.es>
* images/status_sets/default/module_warning_ball.png,

View File

@ -86,7 +86,7 @@ $table->width = '90%';
$table->head = array ();
$table->head[0] = __('Name');
$table->head[1] = __('Parent');
$table->head[2] = '';
$table->head[2] = __('Action');
$table->style = array ();
$table->style[0] = 'font-weight: bold';
$table->align = array ();

View File

@ -38,7 +38,7 @@ if ($id) {
$parent = '';
}
echo '<h2>'.__('Component group management').'</h2>';
echo '<h2>'.__('Module management').' &raquo; '. __('Component group management').'</h2>';
$table->width = '50%';
$table->style = array ();

View File

@ -29,8 +29,9 @@ if (! $id) {
$snmp_community = "public";
}
echo "<h2>".__('Module component management')."</h2>";
echo "<h4>".__('Network component')."</h4>";
echo "<h2>".__('Module management')." &raquo; ";
echo __('Module component management')."</h2>";
echo "<h3>".__('Network component')."</h3>";
$data = array ();
$data[0] = _('Port');

View File

@ -18,8 +18,9 @@ require_once ('include/config.php');
check_login ();
echo '<h2>'.__('Module component management').'</h2>';
echo '<h4>'.__('Plugin component').'</h4>';
echo "<h2>".__('Module management')." &raquo; ";
echo __('Module component management')."</h2>";
echo "<h3>".__('Plugin component').'</h3>';
$data = array ();
$data[0] = __('Plugin');

View File

@ -26,8 +26,9 @@ if (! give_acl ($config['id_user'], 0, "PM")) {
return;
}
echo '<h2>'.__('Module component management').'</h2>';
echo '<h4>'.__('WMI component management').'</h4>';
echo "<h2>".__('Module management')." &raquo; ";
echo __('Module component management')."</h2>";
echo "<h3>".__('WMI component management').'</h3>';
$data = array ();
$data[0] = __('WMI query');

View File

@ -22,7 +22,7 @@
/**
* Pandora build version and version
*/
$build_version = 'PC090829';
$build_version = 'PC090904';
$pandora_version = 'v3.0-dev';
$config['start_time'] = microtime (true);